summaryrefslogtreecommitdiff
path: root/src/PostscriptDSC.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-07-17 18:56:42 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-07-17 18:56:42 +0200
commit3f0ff82397288f0216fdd367d778a7757cc9355c (patch)
treeb83145bf29da2b8fdf8eca4cdcf6f289a91abdff /src/PostscriptDSC.H
parentc6a87e3c65772e729b01caefd7f849b7dcbd1855 (diff)
reindent using vim
Diffstat (limited to 'src/PostscriptDSC.H')
-rw-r--r--src/PostscriptDSC.H36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/PostscriptDSC.H b/src/PostscriptDSC.H
index 20bc07e..7b4a45d 100644
--- a/src/PostscriptDSC.H
+++ b/src/PostscriptDSC.H
@@ -8,25 +8,25 @@
#define POSTSCRIPTDSC_H
class PostscriptDSC {
- private:
- int bb_x, bb_y, bb_w, bb_h;
- size_t setup_len;
- int pages;
-
- size_t *page_off;
- size_t *page_len;
+ private:
+ int bb_x, bb_y, bb_w, bb_h;
+ size_t setup_len;
+ int pages;
- public:
- PostscriptDSC();
- ~PostscriptDSC();
-
- int parse(int fd);
- int get_pages();
- void get_bounding_box(int *x, int *y, int *w, int *h);
- size_t get_setup_len();
- size_t get_page_off(int p);
- size_t get_page_len(int p);
- void print();
+ size_t *page_off;
+ size_t *page_len;
+
+ public:
+ PostscriptDSC();
+ ~PostscriptDSC();
+
+ int parse(int fd);
+ int get_pages();
+ void get_bounding_box(int *x, int *y, int *w, int *h);
+ size_t get_setup_len();
+ size_t get_page_off(int p);
+ size_t get_page_len(int p);
+ void print();
};
#endif