Missing files

This commit is contained in:
Meeh 2014-01-30 04:28:07 +01:00
parent fb16e50c4d
commit 3b3f5d0188
2 changed files with 64 additions and 0 deletions

19
util.h Normal file
View file

@ -0,0 +1,19 @@
#ifndef UTIL_H
#define UTIL_H
#include <map>
#include <string>
namespace i2p
{
namespace util
{
extern std::map<std::string, std::string> mapArgs;
void ParseArguments(int argc, const char* const argv[]);
int GetIntArg(const std::string& strArg, int nDefault);
}
}
#endif