summaryrefslogtreecommitdiffstats
path: root/languages/cpp/doxydoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/doxydoc.h')
-rw-r--r--languages/cpp/doxydoc.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/languages/cpp/doxydoc.h b/languages/cpp/doxydoc.h
index aca424b2..c36d6ada 100644
--- a/languages/cpp/doxydoc.h
+++ b/languages/cpp/doxydoc.h
@@ -10,10 +10,10 @@
#ifndef DOXYDOC_H
#define DOXYDOC_H
-#include <qstring.h>
-#include <qdom.h>
-#include <qdir.h>
-#include <qfile.h>
+#include <tqstring.h>
+#include <tqdom.h>
+#include <tqdir.h>
+#include <tqfile.h>
#include <list>
/**
@@ -28,7 +28,7 @@ public:
Constructs a new DoxyDoc object.
@param dir all directories, which should be searched for files containing the Doxygen-documentation.
*/
- DoxyDoc( const QStringList& dir );
+ DoxyDoc( const TQStringList& dir );
~DoxyDoc()
{}
;
@@ -39,19 +39,19 @@ public:
@param type Return-type of the function
@param arguments String containing the arguments of the function, separated by commas and _without_ the argument names
*/
- QString functionDescription( const QString& scope, const QString& name, const QString& type, const QString& arguments );
+ TQString functionDescription( const TQString& scope, const TQString& name, const TQString& type, const TQString& arguments );
/*not implemented yet, maybe later, if they are useful
- QString classDescription();
- QString enumDescription();
- QString namespaceDescription();
- QString memberVarDescription();
+ TQString classDescription();
+ TQString enumDescription();
+ TQString namespaceDescription();
+ TQString memberVarDescription();
*/
private:
- static void formatType( QString& type );
- std::list<QDir> m_dirs;
+ static void formatType( TQString& type );
+ std::list<TQDir> m_dirs;
//used for temporary storing/performance reasons
- QFile m_file;
- QDomNodeList m_list;
+ TQFile m_file;
+ TQDomNodeList m_list;
};
#endif