diff options
Diffstat (limited to 'languages/cpp/pcsimporter/qtimporter/tdevqtimporter.h')
-rw-r--r-- | languages/cpp/pcsimporter/qtimporter/tdevqtimporter.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/languages/cpp/pcsimporter/qtimporter/tdevqtimporter.h b/languages/cpp/pcsimporter/qtimporter/tdevqtimporter.h new file mode 100644 index 00000000..3f7d1ac8 --- /dev/null +++ b/languages/cpp/pcsimporter/qtimporter/tdevqtimporter.h @@ -0,0 +1,38 @@ +/*************************************************************************** + * Copyright (C) 2003 by Roberto Raggi * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef TDEVTQTIMPORTER_H +#define TDEVTQTIMPORTER_H + +#include <tdevpcsimporter.h> +#include <tqguardedptr.h> + +class SettingsDialog; + +class TDevQtImporter : public TDevPCSImporter +{ + Q_OBJECT + +public: + TDevQtImporter( TQObject* parent=0, const char* name=0, const TQStringList& args=TQStringList() ); + virtual ~TDevQtImporter(); + + virtual TQString dbName() const { return TQString::fromLatin1("TQt"); } + virtual TQStringList fileList(); + virtual TQStringList includePaths(); + + virtual TQWidget* createSettingsPage( TQWidget* parent, const char* name=0 ); + +private: + TQGuardedPtr<SettingsDialog> m_settings; +}; + +#endif |