filecreate_typechoosersig.h
Go to the documentation of this file.00001 #ifndef __FILECREATE_TYPECHOOSERSIG_H__
00002 #define __FILECREATE_TYPECHOOSERSIG_H__
00003
00004 #include <qobject.h>
00005
00006 namespace FileCreate {
00007
00008 class FileType;
00009
00010 class Signaller : public QObject {
00011 Q_OBJECT
00012
00013 public:
00014 Signaller() : QObject() { }
00015 virtual ~Signaller() { }
00016
00017 virtual void signal(const FileType * filetype ) {
00018 emit filetypeSelected(filetype);
00019 }
00020
00021
00022 signals:
00023 void filetypeSelected(const FileType * filetype);
00024 };
00025
00026 }
00027
00028 #endif
This file is part of the documentation for KDevelop Version 3.1.2.