1
0
Fork 0

Change constructor parameter order.

This commit is contained in:
curt 2002-04-11 05:39:56 +00:00
parent 42a5ee93d7
commit bef1e770bb
2 changed files with 3 additions and 3 deletions

View file

@ -233,8 +233,7 @@ static void net2global( FGNetFDM *net ) {
}
FGExternalNet::FGExternalNet( double dt, int dop, int dip, int cp,
string host )
FGExternalNet::FGExternalNet( double dt, string host, int dop, int dip, int cp )
{
set_delta_t( dt );

View file

@ -77,7 +77,8 @@ private:
public:
// Constructor
FGExternalNet::FGExternalNet( double dt, int dop, int dip, int cp, string host );
FGExternalNet::FGExternalNet( double dt,
string host, int dop, int dip, int cp );
// Destructor
FGExternalNet::~FGExternalNet();