1#pragma once 2using namespace std; 3 4class StatFormatter 5{ 6public: 7 virtual wstring format(int value) = 0; 8};