mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
14 lines
157 B
C++
14 lines
157 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#include "polstats.h"
|
|
namespace Pol
|
|
{
|
|
namespace Core
|
|
{
|
|
PolStats::PolStats() : bytes_received( 0 ), bytes_sent( 0 ) {}
|
|
}
|
|
}
|