1#pragma once 2using namespace std; 3 4#include "Stat.h" 5 6class GeneralStat : public Stat 7{ 8public: 9 GeneralStat(int id, const wstring& name, StatFormatter *formatter); 10 GeneralStat(int id, const wstring& name); 11 Stat *postConstruct(); 12};