Wt examples
3.3.0
|
00001 // This may look like C code, but it's really -*- C++ -*- 00002 /* 00003 * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium. 00004 * 00005 * See the LICENSE file for terms of use. 00006 */ 00007 #ifndef CONTACT_SUGGESTIONS_H_ 00008 #define CONTACT_SUGGESTIONS_H_ 00009 00010 #include <Wt/WSuggestionPopup> 00011 00012 class AddresseeEdit; 00013 struct Contact; 00014 00015 using namespace Wt; 00016 00021 00032 class ContactSuggestions : public WSuggestionPopup 00033 { 00034 public: 00037 ContactSuggestions(WContainerWidget *parent = 0); 00038 00041 void setAddressBook(const std::vector<Contact>& contacts); 00042 00043 private: 00044 }; 00045 00048 #endif // CONTACT_SUGGESTIONS_H_