mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 04:42:06 -05:00
7 lines
215 B
C++
7 lines
215 B
C++
#include <api/service/svcs/svc_font.h>
|
|
template <class T>
|
|
class FontCreator : public waServiceFactoryT<svc_font, T>
|
|
{
|
|
public:
|
|
FontCreator(GUID myGuid = INVALID_GUID) : waServiceFactoryT<svc_font, T>(myGuid) {}
|
|
};
|