Skip to content

Commit

Permalink
Chaning setResponse signature
Browse files Browse the repository at this point in the history
  • Loading branch information
mhscott committed Jul 1, 2021
1 parent 3a4ddab commit 8530959
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SRC/material/yieldSurface/evolution/NullEvolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int NullEvolution::getResponse(int responseID, Information & info)
}

/** No descriptions */
Response * NullEvolution::setResponse(char * * argv, int argc, Information & info)
Response * NullEvolution::setResponse(char * * argv, int argc, OPS_Stream &output)
{
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion SRC/material/yieldSurface/evolution/NullEvolution.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class NullEvolution : public YS_Evolution {
YS_Evolution* getCopy();

int getResponse(int responseID, Information & info);
Response* setResponse(char **argv, int argc, Information & info);
Response* setResponse(char **argv, int argc, OPS_Stream &output);

int displaySelf(Renderer &theViewer, int displayMode, float fact) { return 0;}

Expand Down
2 changes: 1 addition & 1 deletion SRC/material/yieldSurface/evolution/YS_Evolution.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class YS_Evolution : public TaggedObject, public MovableObject
virtual int revertToLastCommit(void);
virtual YS_Evolution *getCopy(void) = 0;

virtual Response *setResponse(char **argv, int argc, Information &info)=0;
virtual Response *setResponse(char **argv, int argc, OPS_Stream &output)=0;
virtual int getResponse(int responseID, Information &info)=0;
virtual int displaySelf(Renderer &theViewer, int displayMode, float fact)=0;

Expand Down
2 changes: 1 addition & 1 deletion SRC/material/yieldSurface/evolution/YS_Evolution2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ int YS_Evolution2D::displaySelf(Renderer &theViewer, int displayMode, float fact
return -1;
}

Response* YS_Evolution2D::setResponse(char **argv, int argc, Information &matInfo)
Response* YS_Evolution2D::setResponse(char **argv, int argc, OPS_Stream &output)
{
return 0;
/*
Expand Down
2 changes: 1 addition & 1 deletion SRC/material/yieldSurface/evolution/YS_Evolution2D.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class YS_Evolution2D : public YS_Evolution
// Methods inherited
virtual void Print(OPS_Stream &s, int flag =0) =0;
virtual YS_Evolution *getCopy(void) = 0;
virtual Response *setResponse(char **argv, int argc, Information &info);
virtual Response *setResponse(char **argv, int argc, OPS_Stream &output);
virtual int getResponse(int responseID, Information &info);
virtual int displaySelf(Renderer &theViewer, int displayMode, float fact);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int PlasticHardeningMaterial::revertToStart (void)
}


Response *PlasticHardeningMaterial::setResponse (char **argv, int argc, Information &matInformation)
Response *PlasticHardeningMaterial::setResponse (char **argv, int argc, OPS_Stream &output)
{
return 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PlasticHardeningMaterial : public Material
double getTrialValue(void);
virtual PlasticHardeningMaterial *getCopy (void) = 0;

virtual Response *setResponse (char **argv, int argc, Information &matInformation);
virtual Response *setResponse (char **argv, int argc, OPS_Stream &output);
virtual int getResponse (int responseID, Information &matInformation);
virtual void Print(OPS_Stream &s, int flag =0);

Expand Down

0 comments on commit 8530959

Please sign in to comment.