git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@399 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
14
src/force.h
14
src/force.h
@ -58,21 +58,21 @@ class Force : protected Pointers {
|
||||
void init();
|
||||
|
||||
void create_pair(char *);
|
||||
Pair *new_pair(char *);
|
||||
Pair *pair_match(char *);
|
||||
class Pair *new_pair(char *);
|
||||
class Pair *pair_match(char *);
|
||||
|
||||
void create_bond(char *);
|
||||
Bond *new_bond(char *);
|
||||
Bond *bond_match(char *);
|
||||
class Bond *new_bond(char *);
|
||||
class Bond *bond_match(char *);
|
||||
|
||||
void create_angle(char *);
|
||||
Angle *new_angle(char *);
|
||||
class Angle *new_angle(char *);
|
||||
|
||||
void create_dihedral(char *);
|
||||
Dihedral *new_dihedral(char *);
|
||||
class Dihedral *new_dihedral(char *);
|
||||
|
||||
void create_improper(char *);
|
||||
Improper *new_improper(char *);
|
||||
class Improper *new_improper(char *);
|
||||
|
||||
void create_kspace(int, char **);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user