ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/MakeStamps.hpp
(Generate patch)

Comparing trunk/OOPSE/libBASS/MakeStamps.hpp (file contents):
Revision 747 by gezelter, Fri Sep 5 21:28:52 2003 UTC vs.
Revision 988 by gezelter, Tue Jan 27 19:37:48 2004 UTC

# Line 1 | Line 1
1   #ifndef __MAKESTAMPS_H__
2   #define __MAKESTAMPS_H__
3  
4 < #include <cstdlib>
5 < #include <cstring>
4 > #include <stdlib.h>
5 > #include <string.h>
6  
7   #include "BASS_interface.h"
8   #include "MoleculeStamp.hpp"
# Line 10 | Line 10
10   #include "BondStamp.hpp"
11   #include "BendStamp.hpp"
12   #include "TorsionStamp.hpp"
13 + #include "MemberStamp.hpp"
14 + #include "RigidBodyStamp.hpp"
15  
16   class LinkedMolStamp{
17  
# Line 48 | Line 50 | class MakeStamps{ (public)
50    int atomAssign( event* the_event );
51    int atomEnd( event* the_event );
52  
53 +  int newRigidBody( event* the_event );
54 +  int rigidBodyAssign( event* the_event );
55 +  int rigidBodyMember( event* the_event );
56 +  int rigidBodyEnd( event* the_event );
57 +
58    int newBond( event* the_event );
59    int bondAssign( event* the_event );
60 <  int bondMember( event* the_event );
60 >  int bondMembers( event* the_event );
61    int bondConstraint( event* the_event );
62    int bondEnd( event* the_event );
63    
64    int newBend( event* the_event );
65    int bendAssign( event* the_event );
66 <  int bendMember( event* the_event );
66 >  int bendMembers( event* the_event );
67    int bendConstraint( event* the_event );
68    int bendEnd( event* the_event );
69  
70    int newTorsion( event* the_event );
71    int torsionAssign( event* the_event );
72 <  int torsionMember( event* the_event );
72 >  int torsionMembers( event* the_event );
73    int torsionConstraint( event* the_event );
74    int torsionEnd( event* the_event );
75  
76 +  int newMember( event* the_event );
77 +  int memberAssign( event* the_event );
78 +  int memberEnd( event* the_event );
79 +
80    LinkedMolStamp* extractMolStamp( char* the_id );
81  
82   private:
# Line 81 | Line 92 | class MakeStamps{ (public)
92    BondStamp* current_bond;
93    BendStamp* current_bend;
94    TorsionStamp* current_torsion;
95 +  RigidBodyStamp* current_rigidbody;
96 +  MemberStamp* current_member;
97  
85  
86  
87  
88
98   };
99  
100  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines