Rev 10136 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
10124 | cbradney | 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 | |||
8 | //Added by Craig Bradney in July 2007 |
||
9 | //To be used for basic format detection and checking |
||
10 | //One central place for storing all our extensions we support, etc |
||
11 | |||
12 | #ifndef FORMAT_UTILS_H |
||
13 | #define FORMAT_UTILS_H |
||
14 | |||
15 | #include <QString> |
||
16 | |||
17 | bool extensionIndicatesPDF(const QString &ext); |
||
18 | bool extensionIndicatesEPS(const QString &ext); |
||
19 | |||
20 | #endif |