--- trunk/mdtools/headers/MoleculeStamp.hpp 2002/11/05 22:04:46 164 +++ trunk/mdtools/headers/MoleculeStamp.hpp 2002/12/16 21:42:11 213 @@ -13,9 +13,9 @@ class MoleculeStamp{ (public) MoleculeStamp(); ~MoleculeStamp(); - int assignString( char* lhs, char* rhs ); - int assignDouble( char* lhs, double rhs ); - int assignInt( char* lhs, int rhs ); + char* assignString( char* lhs, char* rhs ); + char* assignDouble( char* lhs, double rhs ); + char* assignInt( char* lhs, int rhs ); char* checkMe( void ); char* addAtom( AtomStamp* the_atom, int atomIndex ); @@ -34,8 +34,10 @@ class MoleculeStamp{ (public) BendStamp* getBend( int index ) { return bends[index]; } TorsionStamp* getTorsion( int index ) { return torsions[index]; } + static char errMsg[500]; private: - + + char name[100]; int n_atoms; int n_bonds;