本文整理汇总了C++中ConVar::getInt32方法的典型用法代码示例。如果您正苦于以下问题:C++ ConVar::getInt32方法的具体用法?C++ ConVar::getInt32怎么用?C++ ConVar::getInt32使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConVar
的用法示例。
在下文中一共展示了ConVar::getInt32方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: zog
void Zogger::zog(const string &msg, int level, int dest)
{
if (level >= zotLogLevel.getInt32())
{
if (isRunning())
{
ZmsgPtr ptr(new ZmLog(msg, level, dest));
push(ptr);
}
else
{
#ifdef _WIN32
if (dest & ZOG_STDOUT || dest & ZOG_STDERR)
{
// yes, this is redundant but the only way to get the log message
// into VS's output window
wstring wmsg(msg.begin(), msg.end());
OutputDebugString(wmsg.c_str());
}
#else
if (dest & ZOG_STDOUT)
cout << msg;
if (dest & ZOG_STDERR)
cerr << msg;
#endif
}
}
}