sync with GH
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15561 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -149,13 +149,16 @@ class Modify : protected Pointers {
|
||||
void list_init_dofflag(int &, int *&);
|
||||
void list_init_compute();
|
||||
|
||||
protected:
|
||||
public:
|
||||
typedef Compute *(*ComputeCreator)(LAMMPS *, int, char **);
|
||||
std::map<std::string,ComputeCreator> *compute_map;
|
||||
typedef std::map<std::string,ComputeCreator> ComputeCreatorMap;
|
||||
ComputeCreatorMap *compute_map;
|
||||
|
||||
typedef Fix *(*FixCreator)(LAMMPS *, int, char **);
|
||||
std::map<std::string,FixCreator> *fix_map;
|
||||
typedef std::map<std::string,FixCreator> FixCreatorMap;
|
||||
FixCreatorMap *fix_map;
|
||||
|
||||
protected:
|
||||
template <typename T> static Compute *compute_creator(LAMMPS *, int, char **);
|
||||
template <typename T> static Fix *fix_creator(LAMMPS *, int, char **);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user