summaryrefslogtreecommitdiff
path: root/src/PSEditor.H
diff options
context:
space:
mode:
Diffstat (limited to 'src/PSEditor.H')
-rw-r--r--src/PSEditor.H24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/PSEditor.H b/src/PSEditor.H
index abcf3a3..ece78a8 100644
--- a/src/PSEditor.H
+++ b/src/PSEditor.H
@@ -10,27 +10,25 @@
#include "PSEditWidget.H"
class PSEditor : public PSEditWidget {
- private:
- int tmp_fd;
+ private:
+ int tmp_fd;
- int ps_level;
+ int ps_level;
- int handle(int event);
+ int handle(int event);
-public:
- PSEditor(int X,int Y,int W, int H);
+ public:
+ PSEditor(int X,int Y,int W, int H);
- int open_file(FILE *fp);
+ int open_file(FILE *fp);
- int open_file(const char *f);
+ int open_file(const char *f);
- int save(FILE *fp);
+ int save(FILE *fp);
- int save(const char* savefile);
+ int save(const char* savefile);
- int import(char *f);
+ int import(char *f);
};
-
-
#endif