summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-08-07 06:33:09 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-08-07 06:33:09 +0200
commit69f37968ab29e963d9163a7e72eca81bff17e3b7 (patch)
treeb9b610ba3602435e5c0c5bb74bc618b1a5a59f26 /src
parent18379e15998e96ca604c10adc6295cc4b89ae8e4 (diff)
Adding LuaHandle support.
Diffstat (limited to 'src')
-rw-r--r--src/Dalos-cli.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Dalos-cli.cc b/src/Dalos-cli.cc
index 5c7cc8a..887d7d1 100644
--- a/src/Dalos-cli.cc
+++ b/src/Dalos-cli.cc
@@ -4,6 +4,7 @@
#include <LuaTask.h>
#include <Input.h>
#include <BStdIO.h>
+#include <LuaHandle.h>
#include "BReadline.h"
#include "LuaLoad.h"
@@ -42,6 +43,7 @@ namespace {
class DalosInit : public LuaExecCell {
virtual void run(Lua & L) override {
registerLuaLoad(L);
+ registerLuaHandle(L);
}
};