#include <vector>
#include <algorithm>
-using namespace std;
-
+#include "stg/ibpp.h"
+#include "stg/plugin_creator.h"
#include "firebird_store.h"
-#include "ibpp.h"
-class FIREBIRD_STORE_CREATOR
-{
-public:
- FIREBIRD_STORE_CREATOR()
- : frb(new FIREBIRD_STORE())
- {
- };
- ~FIREBIRD_STORE_CREATOR()
- {
- delete frb;
- };
- FIREBIRD_STORE * GetStore() { return frb; };
-private:
- FIREBIRD_STORE * frb;
-} frsc;
+using namespace std;
+PLUGIN_CREATOR<FIREBIRD_STORE> frsc;
//-----------------------------------------------------------------------------
STORE * GetStore()
{