AppleWin/source/frontends/common2/commonframe.h
Andrea Odetti 3b917e93be common2: add namespace and reformat everything with space over tabs.
This makes it "possible" to use other editors (than emacs).

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-25 16:04:50 +00:00

26 lines
449 B
C++

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