Files
Aerofoil/PortabilityLayer/IconLoader.h

21 lines
367 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
template<class T>
class THandle;
namespace PortabilityLayer
{
class PixMapImpl;
class SimpleImage;
2021-06-06 01:12:21 -04:00
class IconLoader
{
public:
virtual bool LoadColorIcon(const int16_t id, THandle<PixMapImpl> &outColorImage, THandle<PixMapImpl> &outBWImage, THandle<PixMapImpl> &outMaskImage) = 0;
static IconLoader *GetInstance();
};
}