X-Git-Url: https://ruin.nu/git/?p=adress.git;a=blobdiff_plain;f=searchresult.h;fp=searchresult.h;h=128d4dc8b341e45c51d746f047a825ef63f911e6;hp=0000000000000000000000000000000000000000;hb=0cfee943b887afbb4841daf233274b04de7e57e0;hpb=d5ab42bc1239fdd6ae46c17a4c698935e19eb745 diff --git a/searchresult.h b/searchresult.h new file mode 100644 index 0000000..128d4dc --- /dev/null +++ b/searchresult.h @@ -0,0 +1,28 @@ +#ifndef SEARCHRESULT_H +#define SEARCHRESULT_H +#include "ui/searchresultbase.h" + +//QT includes +#include + +class SearchResult : public SearchResultBase +{ + Q_OBJECT + +public: + SearchResult(QString searchword, int cat, QWidget* parent = 0, const char* name = 0, bool modal = true, WFlags fl = 0 ); + ~SearchResult(); + +public slots: + void slotDel(); + void slotModify(); + +protected: //Attributes + QString m_searchword; + int m_cat; + +protected: //FUnktions + void Find(); +}; + +#endif // SEARCHRESULT_H