ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/primitives/Bend.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/primitives/Bend.hpp (file contents):
Revision 1694 by tim, Mon Nov 1 21:40:42 2004 UTC vs.
Revision 1782 by tim, Wed Nov 24 20:55:03 2004 UTC

# Line 33 | Line 33
33  
34   #ifndef PRIMITIVES_BEND_HPP
35   #define PRIMITIVES_BEND_HPP
36 <
36 > #include "primitives/Atom.hpp"
37 > #include "types/BendType.hpp"
38   namespace oopse {
39  
40   class Bend {
# Line 43 | Line 44 | class Bend {
44          void calcForce();
45          
46          double getPotential() {
47 <            return potential;
47 >            return potential_;
48          }
49  
50 <    private:
50 >    protected:
51 >        //virtual BendType* getBendType() {
52 >        //    return bendType_;
53 >        //}
54 >
55          BendType* bendType_; /**< bend type */
56 <        Atom* atom1;
57 <        Atom* atom2;
58 <        Atom* atom3;
59 <        double potential;
56 >        Atom* atom1_;
57 >        Atom* atom2_;
58 >        Atom* atom3_;
59 >        double potential_;
60   };    
61  
62  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines