~lib2geom-hackers/lib2geom/trunk

« back to all changes in this revision

Viewing changes to types.h

  • Committer: njh
  • Date: 2006-05-22 11:50:24 UTC
  • Revision ID: svn-v4:4601daaa-0314-0410-9a8b-c964a3c23b6b:trunk/lib2geom:1
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __Geom_TYPES_H__
 
2
#define __Geom_TYPES_H__
 
3
 
 
4
/*
 
5
 * Pixel buffer rendering library
 
6
 *
 
7
 * Authors:
 
8
 *   Lauris Kaplinski <lauris@kaplinski.com>
 
9
 *   Class-ifying NRPoint, Nathan Hurst <njh@mail.csse.monash.edu.au>
 
10
 *
 
11
 * This code is in public domain
 
12
 */
 
13
 
 
14
#if HAVE_CONFIG_H
 
15
#include "config.h"
 
16
#endif
 
17
 
 
18
#include <libnr/coord.h>
 
19
#include <libnr/dim2.h>
 
20
#include <libnr/i-coord.h>
 
21
#include <libnr/matrix.h>
 
22
#include <libnr/point.h>
 
23
#include <libnr/point-l.h>
 
24
#include <libnr/point-ops.h>
 
25
#include <libnr/rect.h>
 
26
#include <libnr/rect-l.h>
 
27
 
 
28
namespace Geom {
 
29
 
 
30
class Rect;
 
31
class Matrix;
 
32
 
 
33
} /* namespace Geom */
 
34
 
 
35
 
 
36
#endif /* !__Geom_TYPES_H__ */
 
37
 
 
38
/*
 
39
  Local Variables:
 
40
  mode:c++
 
41
  c-file-style:"stroustrup"
 
42
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
43
  indent-tabs-mode:nil
 
44
  fill-column:99
 
45
  End:
 
46
*/
 
47
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :