mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
20 lines
279 B
C++
20 lines
279 B
C++
#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
|