summaryrefslogtreecommitdiff
path: root/project2/lib/scopeObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/lib/scopeObject.h')
-rw-r--r--project2/lib/scopeObject.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/project2/lib/scopeObject.h b/project2/lib/scopeObject.h
deleted file mode 100644
index 6fc323d..0000000
--- a/project2/lib/scopeObject.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef SCOPE_OBJECT_H
-#define SCOPE_OBJECT_H
-
-#include <boost/function.hpp>
-
-class ScopeObject {
- public:
- typedef boost::function<void()> Event;
- ScopeObject(const Event &, const Event & = Event(), const Event & = Event(), const Event & = Event());
- ~ScopeObject();
-
- private:
- const Event onExitPre;
- const Event onSuccess;
- const Event onFailure;
- const Event onExitPost;
-};
-
-#endif
-