add convenience function to allow variable->set() command with a single string argument

This commit is contained in:
Axel Kohlmeyer
2020-07-17 00:46:31 -04:00
parent dd7bc1d34e
commit 63bebf58fd
2 changed files with 17 additions and 0 deletions

View File

@ -24,6 +24,7 @@ class Variable : protected Pointers {
public:
Variable(class LAMMPS *);
~Variable();
void set(const std::string &);
void set(int, char **);
void set(char *, int, char **);
int set_string(char *, char *);