Salome HOME
Initial version
[modules/gui.git] / src / CAF / CAF_Tools.h
1 //  File   : CAF_Tools.h
2 //  Author : UI team
3
4 #ifndef CAF_TOOLS_H
5 #define CAF_TOOLS_H
6
7 #include <CAF.h>
8
9 #include <qt.h>
10 #include <qstring.h>
11 #include <TCollection_ExtendedString.hxx>
12
13 class CAF_EXPORT CAF_Tools : public Qt
14 {
15 public:
16   /* converting strings */
17   static QString                    toQString ( const TCollection_ExtendedString& );
18   static TCollection_ExtendedString toExtString ( const QString& );
19 };
20
21 #endif // CAF_TOOLS_H
22
23
24