00001 00020 // 00021 // @author Stefano Fornari @ Funambol 00022 // @version $Id: Phone.h,v 1.3 2007/03/06 20:51:05 pohly Exp $ 00023 // 00024 00025 00026 #ifndef INCL_PIM_PHONE 00027 #define INCL_PIM_PHONE 00028 00030 #include "TypedProperty.h" 00031 00035 class Phone : public TypedProperty { 00036 // ------------------------------------------------------------ Private data 00037 00038 // -------------------------------------------- Constructors and Destructors 00039 public: 00040 00044 Phone(); 00045 ~Phone(); 00046 00047 // -------------------------------------------- Constructors and Destructors 00048 00054 vCardProperty* getPhoneNumber(); 00055 00060 void setPhoneNumber(vCardProperty& p); 00061 00067 ArrayElement* clone() ; //FIXME 00068 }; 00069 00071 #endif