diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-04T15·42+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-04T15·42+0000 |
commit | f826e432aa442e569faaf3cb04d83bfa28bcf260 (patch) | |
tree | 94e09e1fc7399949d8a5fb94f7d0abd995665d9e /src/shared.hh | |
parent | 01b34fe5843df9888737699ee9f9fe2f161a1fa3 (diff) |
* Refactoring: move initialisation and argument parsing into a shared
file.
Diffstat (limited to 'src/shared.hh')
-rw-r--r-- | src/shared.hh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/shared.hh b/src/shared.hh new file mode 100644 index 000000000000..8ea637fd21ac --- /dev/null +++ b/src/shared.hh @@ -0,0 +1,15 @@ +#ifndef __SHARED_H +#define __SHARED_H + +#include <string> + +#include "util.hh" + + +void run(Strings args); + + +extern string programId; + + +#endif /* !__SHARED_H */ |