#ifndef DEFAULTHEPREPACTION_H #define DEFAULTHEPREPACTION_H 1 #include "FreeHepTypes.h" #include #include "HEPREP/HepRepAction.h" /** * * @author M.Donszelmann */ class DefaultHepRepAction : public virtual HEPREP::HepRepAction { private: std::string name; std::string expression; public: DefaultHepRepAction(std::string name, std::string expression); ~DefaultHepRepAction(); std::string getName(); std::string getExpression(); HEPREP::HepRepAction* copy(); }; #endif