Sha256: 1ffdc184e47e4d1ac6e53708df2ef74c7c4c8c9c7a9cf9fe59f298d51b053031
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
//======================================================================== // // SplashFontFile.h // //======================================================================== #ifndef SPLASHFONTFILE_H #define SPLASHFONTFILE_H #include <aconf.h> #ifdef USE_GCC_PRAGMAS #pragma interface #endif #include "gtypes.h" #include "SplashTypes.h" class GString; class SplashFontEngine; class SplashFont; class SplashFontFileID; //------------------------------------------------------------------------ // SplashFontFile //------------------------------------------------------------------------ class SplashFontFile { public: virtual ~SplashFontFile(); // Create a new SplashFont, i.e., a scaled instance of this font // file. virtual SplashFont *makeFont(SplashCoord *mat, SplashCoord *textMat) = 0; // Get the font file ID. SplashFontFileID *getID() { return id; } // Increment the reference count. void incRefCnt(); // Decrement the reference count. If the new value is zero, delete // the SplashFontFile object. void decRefCnt(); protected: SplashFontFile(SplashFontFileID *idA, char *fileNameA, GBool deleteFileA); SplashFontFileID *id; GString *fileName; GBool deleteFile; int refCnt; friend class SplashFontEngine; }; #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pdf2json-0.2.0 | pdf2json-0.52-source/splash/SplashFontFile.h |
pdf2json-0.1.0 | pdf2json-0.52-source/splash/SplashFontFile.h |