diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-07 06:33:09 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2013-08-07 06:33:09 +0200 |
commit | 69f37968ab29e963d9163a7e72eca81bff17e3b7 (patch) | |
tree | b9b610ba3602435e5c0c5bb74bc618b1a5a59f26 /src/Dalos-cli.cc | |
parent | 18379e15998e96ca604c10adc6295cc4b89ae8e4 (diff) |
Adding LuaHandle support.
Diffstat (limited to 'src/Dalos-cli.cc')
-rw-r--r-- | src/Dalos-cli.cc | 2 |
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); } }; |