comparison OrthancFramework/Sources/Images/FontRegistry.h @ 4298:db3932f9660d

abi continued
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Nov 2020 18:21:03 +0100
parents bf7b9edf6b81
children d9473bd5ed43
comparison
equal deleted inserted replaced
4297:785a2713323e 4298:db3932f9660d
40 40
41 #if ORTHANC_SANDBOXED == 0 41 #if ORTHANC_SANDBOXED == 0
42 void AddFromFile(const std::string& path); 42 void AddFromFile(const std::string& path);
43 #endif 43 #endif
44 44
45 size_t GetSize() const 45 size_t GetSize() const;
46 {
47 return fonts_.size();
48 }
49 46
50 const Font& GetFont(size_t i) const; 47 const Font& GetFont(size_t i) const;
51 48
52 const Font* FindFont(const std::string& fontName) const; 49 const Font* FindFont(const std::string& fontName) const;
53 }; 50 };