Skip to content
Snippets Groups Projects
Commit c5513c4f authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

provide an accessor for names of LAMMPS variables

parent d11363c7
No related branches found
No related tags found
No related merge requests found
......@@ -1079,3 +1079,10 @@ bool Info::has_exceptions() const {
return false;
#endif
}
/* ---------------------------------------------------------------------- */
char **Info::get_variable_names(int &num) {
num = input->variable->nvar;
return input->variable->names;
}
......@@ -39,6 +39,8 @@ class Info : protected Pointers {
bool has_ffmpeg_support() const;
bool has_exceptions() const;
char **get_variable_names(int &num);
private:
void available_styles(FILE * out, int flags);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment