123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * 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
- );
- QString removePath(
- const QString &aFilename
- );
- QString getPathFromFilename(
- const QString &aFilename
- );
- #endif /* __FUNCTIONS_H__ */
- /*
- *
- */
|