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