mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
23 lines
521 B
C++
23 lines
521 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
template<class T>
|
|
class THandle;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class PixMapImpl;
|
|
class SimpleImage;
|
|
|
|
class IconLoader
|
|
{
|
|
public:
|
|
virtual bool LoadColorIcon(const int16_t id, THandle<PixMapImpl> &outColorImage, THandle<PixMapImpl> &outBWImage, THandle<PixMapImpl> &outMaskImage) = 0;
|
|
virtual THandle<PixMapImpl> LoadSimpleColorIcon(const THandle<void> &hdl) = 0;
|
|
virtual THandle<PixMapImpl> LoadBWIcon(const THandle<void> &hdl) = 0;
|
|
|
|
static IconLoader *GetInstance();
|
|
};
|
|
}
|