doxydoc.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef DOXYDOC_H
00011 #define DOXYDOC_H
00012
00013 #include <qstring.h>
00014 #include <qdom.h>
00015 #include <qdir.h>
00016 #include <qfile.h>
00017 #include <list>
00018
00024 class DoxyDoc
00025 {
00026 public:
00031 DoxyDoc(const QStringList& dir);
00032 ~DoxyDoc(){};
00040 QString functionDescription(const QString& scope, const QString& name, const QString& type, const QString& arguments);
00041
00042
00043
00044
00045
00046
00047 private:
00048 static void formatType(QString& type);
00049 std::list<QDir> m_dirs;
00050
00051 QFile m_file;
00052 QDomNodeList m_list;
00053 };
00054
00055 #endif
This file is part of the documentation for KDevelop Version 3.1.2.