mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Portability: Updated to make main re-entrant()
- New INSTALL instructions to emscripten, and AUTHORS for contribution.
This commit is contained in:
parent
cae3f06b7d
commit
7af6db4c17
112 changed files with 960 additions and 1147 deletions
|
@ -47,6 +47,9 @@ public:
|
|||
Context (const Context&);
|
||||
Context& operator= (const Context&);
|
||||
|
||||
static Context& getContext ();
|
||||
static void setContext (Context*);
|
||||
|
||||
int initialize (int, const char**); // all startup
|
||||
int run ();
|
||||
int dispatch (std::string&); // command handler dispatch
|
||||
|
@ -76,6 +79,8 @@ private:
|
|||
void loadAliases ();
|
||||
void propagateDebug ();
|
||||
|
||||
static Context* context;
|
||||
|
||||
public:
|
||||
CLI2 cli2 {};
|
||||
std::string home_dir {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue