]> git.tdb.fi Git - builder.git/blob - source/misc.h
Better encapsulation of config inside Package
[builder.git] / source / misc.h
1 #ifndef MISC_H_
2 #define MISC_H_
3
4 #include <list>
5 #include <map>
6 #include <string>
7 #include <msp/path/path.h>
8
9 enum LibMode
10 {
11         ALL_STATIC,
12         LOCAL_STATIC,
13         DYNAMIC
14 };
15
16 typedef std::list<std::string>     StringList;
17 typedef std::list<Msp::Path::Path> PathList;
18 typedef std::map<std::string, std::string> StringMap;
19
20 std::string run_command(const StringList &);
21
22 #endif