Scribus
Open source desktop publishing at your fingertips
scslainforeader.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef SCSLAINFOREADER_H
8 #define SCSLAINFOREADER_H
9 
10 #include <QString>
11 
13 {
14 protected:
15  QString m_title;
16  QString m_author;
17  QString m_format;
18 
19  void resetFileInfos(void);
20 
21 public:
22  ScSlaInfoReader(void) {};
23 
24  const QString& title(void) { return m_title; }
25  const QString& author(void) { return m_author; }
26  const QString& format(void) { return m_format; }
27 
28  bool readInfos(const QString& fileName);
29 };
30 
31 #endif
Definition: scslainforeader.h:12