delete plugins
authorweiyu <weiyuluo1232@gmail.com>
Fri, 26 Oct 2018 01:15:57 +0000 (18:15 -0700)
committerweiyu <weiyuluo1232@gmail.com>
Fri, 26 Oct 2018 01:15:57 +0000 (18:15 -0700)
plugins.cc [deleted file]
plugins.h [deleted file]

diff --git a/plugins.cc b/plugins.cc
deleted file mode 100644 (file)
index c98cb5d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "plugins.h"
-
-ModelVector<TraceAnalysis *> * registered_analysis;
-ModelVector<TraceAnalysis *> * installed_analysis;
-
-void register_plugins() {
-       registered_analysis=new ModelVector<TraceAnalysis *>();
-       installed_analysis=new ModelVector<TraceAnalysis *>();
-}
-
-ModelVector<TraceAnalysis *> * getRegisteredTraceAnalysis() {
-       return registered_analysis;
-}
-
-ModelVector<TraceAnalysis *> * getInstalledTraceAnalysis() {
-       return installed_analysis;
-}
diff --git a/plugins.h b/plugins.h
deleted file mode 100644 (file)
index ce0f529..0000000
--- a/plugins.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef PLUGINS_H
-#define PLUGINS_H
-#include "traceanalysis.h"
-#include "stl-model.h"
-
-void register_plugins();
-ModelVector<TraceAnalysis *> * getRegisteredTraceAnalysis();
-ModelVector<TraceAnalysis *> * getInstalledTraceAnalysis();
-
-#endif