From b78ea37a6f8d289b9adb2b5bc565716168a00060 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 22 Aug 2006 05:04:16 +0000 Subject: The basic outline for all of the initial functions and rules has been set. The parser and scanner are using the new system so they actually match functions and whatnot and pass that data to the parser, it's very cool. --- src/performfactory.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/performfactory.h (limited to 'src/performfactory.h') diff --git a/src/performfactory.h b/src/performfactory.h new file mode 100644 index 0000000..f5ce5c0 --- /dev/null +++ b/src/performfactory.h @@ -0,0 +1,20 @@ +#ifndef PERFORM_FACTORY_H +#define PERFORM_FACTORY_H + +#include + +#include "perform.h" +#include "plugger.h" +#include "singleton.h" + +class PerformFactory : public Plugger, public Singleton +{ +public: + PerformFactory(); + virtual ~PerformFactory(); + +private: + +}; + +#endif -- cgit v1.2.3