1234567891011121314151617181920212223242526272829 |
- /*
- * functions.h
- *
- * Created on: Oct 6, 2011
- * Author: Gapchich Vladislav
- */
- #ifndef FUNCTIONS_H_
- #define FUNCTIONS_H_
- class QString;
- class QChar;
- class QDomDocument;
- QString getDirFromPath(
- const QString *aPath
- );
- QString getFilenameFromPath(
- const QString *aPath
- );
- int getNumFromString(
- QString *aString,
- const QString &aFirstStr,
- const QString &aSecondStr,
- bool *anOkFlag
- );
- QString alterFileName(const QString &aFilename, const QString &aSuffix);
- #endif /* __FUNCTIONS_H__ */
|