ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-2.0/src/applications/simpleBuilder/Lattice.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-2.0/src/applications/simpleBuilder/Lattice.hpp (file contents):
Revision 1824 by tim, Thu Dec 2 03:12:25 2004 UTC vs.
Revision 1825 by tim, Thu Dec 2 04:55:10 2004 UTC

# Line 5 | Line 5 | const string FCCLatticeType = "FCC";
5   #include <vector>
6  
7  
8 < const string FCCLatticeType = "FCC";
9 < const string BCCLatticeType = "BCC";
10 < const string HCPCLatticeType = "HCP";
11 < const string OrthorhombicLatticeType = "ORTHORHOMBIC";
8 > const  std::stringFCCLatticeType = "FCC";
9 > const  std::stringBCCLatticeType = "BCC";
10 > const  std::stringHCPCLatticeType = "HCP";
11 > const  std::stringOrthorhombicLatticeType = "ORTHORHOMBIC";
12  
13  
14   class CubicLattice : public BaseLattice{
# Line 28 | Line 28 | class FCCLattice : public CubicLattice{
28   class FCCLattice : public CubicLattice{
29    public:
30      FCCLattice();
31 <    virtual const string getLatticeType() {return FCCLatticeType;}    
31 >    virtual const  std::stringgetLatticeType() {return FCCLatticeType;}    
32      virtual void update();
33      
34   };
# Line 37 | Line 37 | class BCCLattice : public CubicLattice{
37   class BCCLattice : public CubicLattice{
38    public:
39      BCCLattice();
40 <    virtual const string getLatticeType() {return BCCLatticeType;}
40 >    virtual const  std::stringgetLatticeType() {return BCCLatticeType;}
41   };
42  
43  
44   class HCPLattice : public BaseLattice{
45    public:
46      HCPLattice();
47 <    virtual const string getLatticeType() {return HCPCLatticeType;}
47 >    virtual const  std::stringgetLatticeType() {return HCPCLatticeType;}
48   };
49  
50   class OrthorhombicLattice : public BaseLattice{
51    public:
52      OrthorhombicLattice();
53 <    virtual const string getLatticeType() {return OrthorhombicLatticeType;}
53 >    virtual const  std::stringgetLatticeType() {return OrthorhombicLatticeType;}
54   };
55   */
56  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines