Apply override to Fix classes

This commit is contained in:
Richard Berger
2022-01-21 14:45:53 -05:00
parent f83271aa40
commit ff3f762499
316 changed files with 2246 additions and 2314 deletions

View File

@ -27,10 +27,10 @@ namespace LAMMPS_NS {
class FixWidom : public Fix {
public:
FixWidom(class LAMMPS *, int, char **);
~FixWidom();
int setmask();
void init();
void pre_exchange();
~FixWidom() override;
int setmask() override;
void init() override;
void pre_exchange() override;
void attempt_atomic_insertion();
void attempt_molecule_insertion();
@ -41,10 +41,10 @@ class FixWidom : public Fix {
double molecule_energy(tagint);
double energy_full();
void update_gas_atoms_list();
double compute_vector(int);
double memory_usage();
void write_restart(FILE *);
void restart(char *);
double compute_vector(int) override;
double memory_usage() override;
void write_restart(FILE *) override;
void restart(char *) override;
void grow_molecule_arrays(int);
private: