git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
WaitPackets moved to common.lib
[stg.git]
/
projects
/
stargazer
/
plugins
/
store
/
firebird
/
firebird_store.cpp
diff --git
a/projects/stargazer/plugins/store/firebird/firebird_store.cpp
b/projects/stargazer/plugins/store/firebird/firebird_store.cpp
index 64306acf9d5957878864ce23190e21a74e2a807c..d0918716b2cb5d7feb9981448c04205706497f58 100644
(file)
--- a/
projects/stargazer/plugins/store/firebird/firebird_store.cpp
+++ b/
projects/stargazer/plugins/store/firebird/firebird_store.cpp
@@
-30,27
+30,13
@@
#include <vector>
#include <algorithm>
#include <vector>
#include <algorithm>
-using namespace std;
-
+#include "stg/ibpp.h"
+#include "stg/plugin_creator.h"
#include "firebird_store.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()
{
//-----------------------------------------------------------------------------
STORE * GetStore()
{