refactor code to make better use of std::string and simplify using changes to Variable class API
This commit is contained in:
@ -24,10 +24,10 @@ class Variable : protected Pointers {
|
||||
public:
|
||||
Variable(class LAMMPS *);
|
||||
~Variable();
|
||||
void set(const std::string &);
|
||||
void set(int, char **);
|
||||
void set(const std::string &);
|
||||
void set(char *, int, char **);
|
||||
int set_string(char *, char *);
|
||||
int set_string(const char *, const char *);
|
||||
int next(int, char **);
|
||||
|
||||
int find(const char *);
|
||||
|
||||
Reference in New Issue
Block a user