Wt examples  4.9.0
Loading...
Searching...
No Matches
ContactSuggestions.h
Go to the documentation of this file.
1// This may look like C code, but it's really -*- C++ -*-
2/*
3 * Copyright (C) 2008 Emweb bv, Herent, Belgium.
4 *
5 * See the LICENSE file for terms of use.
6 */
7#ifndef CONTACT_SUGGESTIONS_H_
8#define CONTACT_SUGGESTIONS_H_
9
10#include <Wt/WSuggestionPopup.h>
11
12class AddresseeEdit;
13struct Contact;
14
15using namespace Wt;
16
21
32class ContactSuggestions : public WSuggestionPopup
33{
34public:
38
41 void setAddressBook(const std::vector<Contact>& contacts);
42
43private:
44};
45
48#endif // CONTACT_SUGGESTIONS_H_
An edit field for an email addressee.
Definition: AddresseeEdit.h:32
A suggestion popup suggesting contacts from an addressbook.
ContactSuggestions()
Create a new ContactSuggestions popup.
void setAddressBook(const std::vector< Contact > &contacts)
Set the address book.
An email contact.
Definition: Contact.h:20