mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
29 lines
735 B
C++
Executable File
29 lines
735 B
C++
Executable File
//CustomerServiceServerMetricsData.cpp
|
|
//Copyright 2002 Sony Online Entertainment
|
|
|
|
#include "FirstCustomerServiceServer.h"
|
|
#include "CustomerServiceServerMetricsData.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
CustomerServiceServerMetricsData::CustomerServiceServerMetricsData() :
|
|
MetricsData()
|
|
{
|
|
MetricsPair p;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
CustomerServiceServerMetricsData::~CustomerServiceServerMetricsData()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
void CustomerServiceServerMetricsData::updateData()
|
|
{
|
|
MetricsData::updateData();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|