~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/libnr/nr-types.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __NR_TYPES_H__
 
2
#define __NR_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/nr-coord.h>
 
19
#include <libnr/nr-dim2.h>
 
20
#include <libnr/nr-i-coord.h>
 
21
#include <libnr/nr-matrix.h>
 
22
#include <libnr/nr-point.h>
 
23
#include <libnr/nr-point-l.h>
 
24
#include <libnr/nr-point-ops.h>
 
25
#include <libnr/nr-rect.h>
 
26
#include <libnr/nr-rect-l.h>
 
27
#include <libnr/nr-forward.h>
 
28
 
 
29
#endif /* !__NR_TYPES_H__ */
 
30
 
 
31
/*
 
32
  Local Variables:
 
33
  mode:c++
 
34
  c-file-style:"stroustrup"
 
35
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
36
  indent-tabs-mode:nil
 
37
  fill-column:99
 
38
  End:
 
39
*/
 
40
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :