From 7f0898e76f915c7ece3c29dd0b468b7c772a8d0b Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Mon, 18 Jun 2007 13:45:33 +0000 Subject: [PATCH] bye bye ClientFontList.h git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21458 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/interface/ClientFontList.h | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 headers/private/interface/ClientFontList.h diff --git a/headers/private/interface/ClientFontList.h b/headers/private/interface/ClientFontList.h deleted file mode 100644 index 4274e6a8a1..0000000000 --- a/headers/private/interface/ClientFontList.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef CLIENT_FONT_LIST_H -#define CLIENT_FONT_LIST_H - -#include // for BFont-related definitions - -#include -#include -#include - -class ClientFontList -{ -public: - ClientFontList(void); - ~ClientFontList(void); - bool Update(bool check_only); - int32 CountFamilies(void); - status_t GetFamily(int32 index, font_family *name, uint32 *flags=NULL); - int32 CountStyles(font_family f); - status_t GetStyle(font_family family, int32 index, font_style *name,uint32 *flags=NULL, uint16 *face=NULL); -private: - BList *familylist; - sem_id fontlock; -}; - -#endif