blob: ef8d86d2fe5cead6d2a049e1f8ce5103fc5c5572 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
#include "gf_includes.hpp"
#include "CacheStatisticsM.hpp"
namespace GemStone
{
namespace GemFire
{
namespace Cache
{
uint32_t CacheStatistics::LastModifiedTime::get( )
{
return NativePtr->getLastModifiedTime( );
}
uint32_t CacheStatistics::LastAccessedTime::get( )
{
return NativePtr->getLastAccessedTime( );
}
}
}
}