You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/parts/filecreate/filecreate_typechoosersig.h

30 lines
442 B

#ifndef __FILECREATE_TYPECHOOSERSIG_H__
#define __FILECREATE_TYPECHOOSERSIG_H__
#include <tqobject.h>
namespace FileCreate {
class FileType;
class Signaller : public TQObject {
TQ_OBJECT
public:
Signaller() : TQObject() { }
virtual ~Signaller() { }
virtual void signal(const FileType * filetype ) {
emit filetypeSelected(filetype);
}
signals:
void filetypeSelected(const FileType * filetype);
};
}
#endif