You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
15 lines
435 B
C++
15 lines
435 B
C++
#pragma once
|
|
|
|
class FileIcon;
|
|
|
|
class IThemeFileIconFactory
|
|
{
|
|
public:
|
|
virtual ~IThemeFileIconFactory() = 0;
|
|
virtual std::unique_ptr<FileIcon> CreateFolderIcon(const TCHAR* name) const = 0;
|
|
virtual std::unique_ptr<FileIcon> CreateGenericFileIcon(const TCHAR* name) const = 0;
|
|
virtual std::unique_ptr<FileIcon> CreateNdsFileIcon(const TCHAR* name) const = 0;
|
|
};
|
|
|
|
inline IThemeFileIconFactory::~IThemeFileIconFactory() { }
|