AppleWin/source/frontends/common2/commonframe.h
Andrea Odetti cc55d9e681 Modern syntax: virtual -> override.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-01-31 13:55:43 +00:00

21 lines
403 B
C++

#pragma once
#include "linux/linuxframe.h"
#include <vector>
#include <string>
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<BYTE> myResource;
};