Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/dvi/dvilib/dl-dvi-fontdefinition.hh
blob: e6bb0d636758f8c18d175851ff6d4ec6ae138d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef DL_FONT_DEFINITION_HH__
#define DL_FONT_DEFINITION_HH__

#include <string>

#include "dl-refcounted.hh"

namespace DviLib {
    
    class DviFontdefinition : public RefCounted {
    public:
	uint fontnum;
	uint checksum;
	uint at_size;           /* if 300 dpi base, 
				 * load at at_size * 300 / 1000 */
	uint design_size;
	string directory;
	string name;
    };

}    
#endif // DL_FONT_DEFINITION_HH__