#pragma once #include "linux/linuxframe.h" #include #include class CommonFrame : public LinuxFrame { public: CommonFrame(); void Destroy() override; BYTE* GetResource(WORD id, LPCSTR lpType, DWORD expectedSize) override; protected: static std::string getBitmapFilename(const std::string & resource); const std::string myResourcePath; std::vector myResource; };