blob: f810e07be51c8cc7f10a7a4861806c0af6a6c2f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* The World -- fitz resources and trees
*/
#ifdef _FITZ_WORLD_H_
#error "fitz-world.h must only be included once"
#endif
#define _FITZ_WORLD_H_
#ifndef _FITZ_BASE_H_
#error "fitz-base.h must be included before fitz-world.h"
#endif
#include "fitz/wld_font.h"
#include "fitz/wld_color.h"
#include "fitz/wld_image.h"
#include "fitz/wld_shade.h"
#include "fitz/wld_tree.h"
#include "fitz/wld_path.h"
#include "fitz/wld_text.h"
|