provide Command base class in command.h for deriving command styles from
This commit is contained in:
@ -20,13 +20,13 @@ CommandStyle(write_coeff,WriteCoeff)
|
||||
#ifndef LMP_WRITE_COEFF_H
|
||||
#define LMP_WRITE_COEFF_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include "command.h"
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class WriteCoeff : protected Pointers {
|
||||
class WriteCoeff : protected Command {
|
||||
public:
|
||||
WriteCoeff(class LAMMPS *lmp) : Pointers(lmp) {};
|
||||
WriteCoeff(class LAMMPS *lmp) : Command(lmp) {};
|
||||
void command(int, char **);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user