summaryrefslogtreecommitdiff
path: root/p2pvr/lib/bindSiParserHandler.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-06-18 00:25:45 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-06-18 00:25:45 +0100
commit3d154e756d61d8617bb8023eb552b5e4faab2a74 (patch)
treea887a65f8699e7dbf46e8d50c25b575e50d498b2 /p2pvr/lib/bindSiParserHandler.h
parentMerge branch 'netfs-test-refactor' (diff)
parentCompatibility with AppInstance and ExecContext changes (diff)
downloadp2pvr-3d154e756d61d8617bb8023eb552b5e4faab2a74.tar.bz2
p2pvr-3d154e756d61d8617bb8023eb552b5e4faab2a74.tar.xz
p2pvr-3d154e756d61d8617bb8023eb552b5e4faab2a74.zip
Merge branch 'p2pvr'
Diffstat (limited to 'p2pvr/lib/bindSiParserHandler.h')
-rw-r--r--p2pvr/lib/bindSiParserHandler.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/p2pvr/lib/bindSiParserHandler.h b/p2pvr/lib/bindSiParserHandler.h
deleted file mode 100644
index a4813c2..0000000
--- a/p2pvr/lib/bindSiParserHandler.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef BINDSIPARSERHANDLER_H
-#define BINDSIPARSERHANDLER_H
-
-#include <boost/function.hpp>
-
-template <typename SIObject, typename Base>
-class BindSiParserHandler : public Base {
- public:
- typedef boost::function<bool(SIObject)> Callback;
- BindSiParserHandler(const Callback & cb) :
- callBack(cb)
- {
- }
-
- bool HandleTable(SIObject siObject)
- {
- return callBack(siObject);
- }
-
- private:
- const Callback callBack;
-};
-
-#endif
-