I was reading the files in LAMMPS
(An open source project),and come across this line of syntax
class FixPropertyGlobal* add_fix_property_global(int narg,char**arg,const char*);
in one of the .h
file( Modify.h
) for a class declaration. My question is: Why add the keyword class in front of a seem-like member function? What does this syntax mean?