| version 1.4 | version 1.5 |
|---|
| |
| // -*- c++ -*- | // -*- c++ -*- |
| | |
| | // This file is part of the Collective Variables module (Colvars). |
| | // The original version of Colvars and its updates are located at: |
| | // https://github.com/colvars/colvars |
| | // Please update all Colvars source files before making any changes. |
| | // If you wish to distribute your changes, please submit them to the |
| | // Colvars repository at GitHub. |
| | |
| #ifndef COLVARSCRIPT_H | #ifndef COLVARSCRIPT_H |
| #define COLVARSCRIPT_H | #define COLVARSCRIPT_H |
| | |
| |
| /// Run subcommands on bias | /// Run subcommands on bias |
| int proc_bias(int argc, char const *argv[]); | int proc_bias(int argc, char const *argv[]); |
| | |
| | /// Run subcommands on base colvardeps object (colvar, bias, ...) |
| | int proc_features(colvardeps *obj, |
| | int argc, char const *argv[]); |
| | |
| /// Builds and return a short help | /// Builds and return a short help |
| std::string help_string(void); | std::string help_string(void); |
| }; | }; |