00001 00020 // 00021 // @author Stefano Fornari @ Funambol 00022 // @version $Id: Email.h,v 1.3 2007/03/06 20:51:05 pohly Exp $ 00023 // 00024 00025 00026 #ifndef INCL_PIM_EMAIL 00027 #define INCL_PIM_EMAIL 00028 00030 #include "base/util/ArrayElement.h" 00031 #include "vocl/vCard/TypedProperty.h" 00032 00038 class Email : public TypedProperty { 00039 // ------------------------------------------------------------ Private data 00040 00041 // -------------------------------------------- Constructors and Destructors 00042 public: 00043 00047 Email(); 00048 ~Email(); 00049 00050 // ---------------------------------------------------------- Public methods 00051 00057 vCardProperty* getEmailAddress(); 00058 00063 void setEmailAddress(vCardProperty& p); 00064 00070 ArrayElement* clone() ; 00071 }; 00072 00074 #endif