summaryrefslogtreecommitdiff
path: root/run.h
diff options
context:
space:
mode:
Diffstat (limited to 'run.h')
-rw-r--r--run.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/run.h b/run.h
index e6c035e..9366e65 100644
--- a/run.h
+++ b/run.h
@@ -11,15 +11,16 @@ private:
char *myCacheDirectory;
char *myResourceDirectory;
cKey myKey;
+ static const char *OrginToString(eOrgin Orgin);
public:
cRun() { };
~cRun();
void SetConfigDirectory(const char *Directory);
void SetCacheDirectory(const char *Directory);
void SetResourceDirectory(const char *Directory);
- void Call(eOrgin Orgin, bool Active=false);
- void Call(eKeys Key);
- void Call();
+ void Call(eOrgin Orgin, bool Active);
+ void Call(eOrgin Orgin, eKeys Key);
+ void Call(eOrgin Orgin);
};
extern cRun Run;