File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,26 @@ class colvarbias_abmd
3030 std::ostream & write_traj_label (std::ostream &os) override ;
3131 std::ostream & write_traj (std::ostream &os) override ;
3232
33+ std::ostream & write_state_data (std::ostream &os) override {
34+ return colvarbias_ti::write_state_data (os);
35+ }
36+
37+ cvm::memory_stream & write_state_data (cvm::memory_stream &os) override {
38+ return colvarbias_ti::write_state_data (os);
39+ }
40+
41+ std::istream & read_state_data (std::istream &is) override {
42+ return colvarbias_ti::read_state_data (is);
43+ }
44+
45+ cvm::memory_stream & read_state_data (cvm::memory_stream &is) override {
46+ return colvarbias_ti::read_state_data (is);
47+ }
48+
49+ int write_output_files () override {
50+ return colvarbias_ti::write_output_files ();
51+ }
52+
3353protected:
3454
3555 // / \brief Location of the moving wall
You can’t perform that action at this time.
0 commit comments