Enhancement - Hooks

- Added bare bones autoconf changes to support Lua.
- Added API class from metatask.git.
- Added skeleton Hooks class.
- Added 'with_lua' helper script.
This commit is contained in:
Paul Beckingham 2010-01-17 01:12:28 -05:00
parent 31055360dc
commit c66d6b0500
8 changed files with 645 additions and 11 deletions

View file

@ -36,6 +36,7 @@
#include "Task.h"
#include "TDB.h"
#include "StringTable.h"
#include "Hooks.h"
class Context
{
@ -89,6 +90,7 @@ public:
std::map <std::string, std::string> aliases;
std::vector <std::string> tagAdditions;
std::vector <std::string> tagRemovals;
Hooks hooks;
private:
std::vector <std::string> headers;