2008-10-04 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Made getAsInt() return int32_t
	* src/Option.h
pull/1/head
Tatsuhiro Tsujikawa 2008-10-04 14:26:35 +00:00
parent 60b37d3367
commit 3da45c763b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-10-04 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Made getAsInt() return int32_t
* src/Option.h
2008-10-04 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Check the availability of winsock2.h and ws2tcpip.h only for mingw32

View File

@ -51,7 +51,7 @@ public:
void put(const std::string& name, const std::string& value);
bool defined(const std::string& name) const;
const std::string& get(const std::string& name) const;
int getAsInt(const std::string& name) const;
int32_t getAsInt(const std::string& name) const;
int64_t getAsLLInt(const std::string& name) const;
bool getAsBool(const std::string& name) const;
double getAsDouble(const std::string& name) const;