本文整理汇总了C++中Timestamp::epochTime方法的典型用法代码示例。如果您正苦于以下问题:C++ Timestamp::epochTime方法的具体用法?C++ Timestamp::epochTime怎么用?C++ Timestamp::epochTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Timestamp
的用法示例。
在下文中一共展示了Timestamp::epochTime方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: isDst
bool Timezone::isDst(const Timestamp& timestamp)
{
std::time_t time = timestamp.epochTime();
struct std::tm* tms = std::localtime(&time);
if (!tms) throw Poco::SystemException("cannot get local time DST flag");
return tms->tm_isdst > 0;
}
示例2: flushSessionCache
void SSLContext::flushSessionCache()
{
assert(_usage == SERVER_USE);
Timestamp now;
SSL_CTX_flush_sessions(_sslContext, static_cast<long>(now.epochTime()));
}
示例3: setLastModifiedImpl
void FileImpl::setLastModifiedImpl(const Timestamp& ts)
{
poco_assert (!_path.empty());
struct utimbuf tb;
tb.actime = ts.epochTime();
tb.modtime = ts.epochTime();
if (utime(const_cast<char*>(_path.c_str()), &tb) != 0)
handleLastErrorImpl(_path);
}
示例4: isDst
bool Timezone::isDst(const Timestamp& timestamp)
{
std::time_t time = timestamp.epochTime();
#if _WIN32_WCE >= 0x800
struct std::tm* tms = localtime(&time);
#else
struct std::tm* tms = wceex_localtime(&time);
#endif
if (!tms) throw SystemException("cannot get local time DST flag");
return tms->tm_isdst > 0;
}
示例5: isDst
bool Timezone::isDst(const Timestamp& timestamp)
{
std::time_t time = timestamp.epochTime();
struct std::tm* tms = std::localtime(&time);
return tms->tm_isdst > 0;
}