2003-07-04 15:42:03 +00:00
|
|
|
#ifndef __SHARED_H
|
|
|
|
#define __SHARED_H
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "types.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
|
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* These are not implemented here, but must be implemented by a
|
|
|
|
program linking against libmain. */
|
|
|
|
|
|
|
|
/* Main program. Called by main() after the ATerm library has been
|
|
|
|
initialised and some default arguments have been processed (and
|
|
|
|
removed from `args'). main() will catch all exceptions. */
|
2006-09-04 21:06:23 +00:00
|
|
|
void run(nix::Strings args);
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* Should print a help message to stdout and return. */
|
|
|
|
void printHelp();
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
extern std::string programId;
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
/* Ugh. No better place to put this. */
|
|
|
|
Path makeRootName(const Path & gcRoot, int & counter);
|
|
|
|
void printGCWarning();
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|
2003-07-04 15:42:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__SHARED_H */
|