ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-1.0/utils/sysbuilder/Lattice.hpp
(Generate patch)

Comparing trunk/OOPSE-1.0/utils/sysbuilder/Lattice.hpp (file contents):
Revision 1427 by tim, Wed Jul 28 18:42:59 2004 UTC vs.
Revision 1429 by tim, Wed Jul 28 20:29:49 2004 UTC

# Line 1 | Line 1
1   #ifndef _LATTICE_H_
2   #define _LATTICE_H_
3   #include "BaseLattice.hpp"
4 + #include <string>
5 + #include <vector>
6 + using namespace std;
7  
8   const string FCCLatticeType = "FCC";
9   const string BCCLatticeType = "BCC";
# Line 13 | Line 16 | class CubicLattice : public BaseLattice{
16      CubicLattice();
17    public:
18      //get lattice constant of unit cell
19 <    vector<double> getLatticeConstant();
19 >    virtual vector<double> getLatticeConstant();
20  
21      //set lattice constant of unit cell
22 <    void setLatticeConstant(const vector<double>& lc);
22 >    virtual void setLatticeConstant(const vector<double>& lc);
23    protected:
24      double latticeParam;
25   };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines