File: IceMenuSave.h

package info (click to toggle)
icemc 0.2.4-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 247
  • sloc: cpp: 2,211; makefile: 44
file content (28 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * IceMC - a menu editor for IceWM
 * Copyright (c) 2000 Georg Mittendorfer
 */

#ifndef ICEMENUSAVE_H
#define ICEMENUSAVE_H

#include "IceMC.h"
#include "IceListView.h"

#include<qfile.h>
#include<qstring.h>

class IceMenuSave {
 public:
  IceMenuSave();
  ~IceMenuSave();
  void write(IceListView* iceList, const QString filePath);
 protected:
  void writeList(IceListView* iceList);
  // data //
  int step;
  QFile* dest;
  QTextStream* destStream;
};

#endif