Add missing virtual destructor in ILocalizationManager

This commit is contained in:
mogemimi 2016-03-30 10:55:50 +09:00
parent f488eabb8f
commit a184c88e9d
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ namespace cocostudio {
class ILocalizationManager
{
public:
virtual ~ILocalizationManager() = default;
virtual bool initLanguageData(std::string file) = 0;
virtual std::string getLocalizationString(std::string key) = 0;
};