mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
20 lines
487 B
C++
20 lines
487 B
C++
#ifndef _SFONT_FILE_ID_H
|
|
#define _SFONT_FILE_ID_H
|
|
|
|
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
// SFontFileID
|
|
//-------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
class SFontFileID
|
|
{
|
|
public:
|
|
|
|
SFontFileID();
|
|
virtual ~SFontFileID();
|
|
|
|
virtual BOOL Matches(SFontFileID *pFontFileID) = 0;
|
|
};
|
|
|
|
#endif /* _SFONT_FILE_ID_H */
|