home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / scslainforeader.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-02-24  |  758 b   |  32 lines

  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.  
  12. class ScSlaInfoReader
  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
  32.