summaryrefslogtreecommitdiff
path: root/include/pluginManager.h
diff options
context:
space:
mode:
authormethodus <methodus@web.de>2012-09-30 17:35:31 +0200
committermethodus <methodus@web.de>2012-09-30 17:35:31 +0200
commiteb75ac2a0b3608dcda454bfe4ac600663a2034ea (patch)
tree4454b86a4484c35d0b249d3d48217f3adf0c88c3 /include/pluginManager.h
parentc8e697daf68f1c545ee3962d2f2e9b411c56b4f2 (diff)
downloadvdr-plugin-upnp-eb75ac2a0b3608dcda454bfe4ac600663a2034ea.tar.gz
vdr-plugin-upnp-eb75ac2a0b3608dcda454bfe4ac600663a2034ea.tar.bz2
Working on plugin interface. Created initial structure and makefiles for primary profiler and provider plugins. They shall later handle DVB media streams for live TV and recordings.
Diffstat (limited to 'include/pluginManager.h')
-rw-r--r--include/pluginManager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/pluginManager.h b/include/pluginManager.h
index 5c38e34..a40308f 100644
--- a/include/pluginManager.h
+++ b/include/pluginManager.h
@@ -12,6 +12,7 @@
#include <string>
#include <map>
#include <list>
+#include <boost/shared_ptr.hpp>
namespace upnp {
@@ -41,7 +42,7 @@ private:
FunctionPtr profiler;
};
- typedef std::list<boost::shared_ptr<DLL>> DLLList;
+ typedef std::list< boost::shared_ptr<DLL> > DLLList;
DLLList dlls;
cMediaManager* manager;