Skip to content
Snippets Groups Projects

Remove deprecated plugins.

Merged Joseph Boudreau requested to merge RemoveDeprecatedPlugins into master
19 files
+ 6
869
Compare changes
  • Side-by-side
  • Inline
Files
19
#ifndef _FSLUSEREVENTACTIONPLUGIN_H_
#define _FSLUSEREVENTACTIONPLUGIN_H_
class G4UserEventAction;
class FSLUserEventActionPlugin {
public:
// Constructor
FSLUserEventActionPlugin()=default;
// Destructor
virtual ~FSLUserEventActionPlugin()=default;
virtual G4UserEventAction *getUserEventAction() const=0;
private:
FSLUserEventActionPlugin (const FSLUserEventActionPlugin &)=delete;
FSLUserEventActionPlugin & operator=(const FSLUserEventActionPlugin &)=delete;
};
#endif
Loading