summaryrefslogtreecommitdiff
path: root/src/LuaTask.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2012-04-03 19:38:13 -0700
committerPixel <pixel@nobis-crew.org>2012-04-03 19:38:13 -0700
commit8755eda4db1e738453d751ef20e24beec27d1820 (patch)
treeb5ba8f85e96a8c14c2e2142525a3644706d4b2d8 /src/LuaTask.cc
parenta252ec77684c43666923e5e49f57c48c10a9865d (diff)
Making a few classes anonymous.
Diffstat (limited to 'src/LuaTask.cc')
-rw-r--r--src/LuaTask.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LuaTask.cc b/src/LuaTask.cc
index e1c722d..2641682 100644
--- a/src/LuaTask.cc
+++ b/src/LuaTask.cc
@@ -3,10 +3,14 @@
#include "TaskMan.h"
#include "Printer.h"
+namespace {
+
class LuaTaskStopper : public Balau::LuaExecCell {
virtual void run(Balau::Lua &) { }
};
+};
+
Balau::LuaExecCell::LuaExecCell() : m_detached(false) {
Printer::elog(E_TASK, "LuaExecCell created at %p", this);
}