// C++ Interface: $MODULE$ // // Description: // // // Author: Patrick S. Vogt , (C) 2003 // // Copyright: See COPYING file that comes with this distribution // // #ifndef ADRESSSEARCH_H #define ADRESSSEARCH_H #include "searchgroup.h" #include /** @author Patrick S. Vogt */ class AdressSearch : public SearchGroup { public: AdressSearch(QListView* parent, QString name); ~AdressSearch(); protected: virtual void load(); virtual int search(); virtual void insertItem( void* ); private: Opie::OPimContactAccess *_contacts; }; #endif