Main Page   Class Hierarchy   Alphabetical List   Compound List   Examples  

MailboxList Struct Reference

List of Mailbox objects. More...

#include <mailboxlist.h>

Inheritance diagram for MailboxList:

FieldValue List of all members.

Public Member Functions

 MailboxList (const char *)
 MailboxList (const std::string &)
 MailboxList (const std::string &, const std::string &)
std::string str () const

Protected Member Functions

FieldValueclone () const

Detailed Description

List of Mailbox objects.

MailboxList class is a container class that holds Mailbox objects

    const char* str = "[email protected], friends: [email protected], "
                "[email protected];, [email protected]";
    MailboxList aList(str);
    MailboxList::const_iterator bit(aList.begin()), eit(aList.end());
    for(; bit != eit; ++bit)
    {
        cout << *bit;
    }

See also:
RFC822


The documentation for this struct was generated from the following file: