polserver/pol-core/pol/polstats.cpp
turleypol dbb25bdb62
Include and buildsystem cleanup (#45)
Include cleanup
Reworked buildsystem (Linux only)
Removed dynamic libs, Linux now again uses static linking (like windows)
2018-01-29 21:55:48 +01:00

14 lines
157 B
C++

/** @file
*
* @par History
*/
#include "polstats.h"
namespace Pol
{
namespace Core
{
PolStats::PolStats() : bytes_received( 0 ), bytes_sent( 0 ) {}
}
}