27 #include <tqstrlist.h> 28 #include <VCardValue.h> 33 class KVCARD_EXPORT AdrValue :
public Value
36 #include "AdrValue-generated.h" 40 void setPOBox(
const TQCString & s)
41 { poBox_ = s; assembled_ =
false; }
43 void setExtAddress(
const TQCString & s)
44 { extAddress_ = s; assembled_ =
false; }
46 void setStreet(
const TQCString & s)
47 { street_ = s; assembled_ =
false; }
49 void setLocality(
const TQCString & s)
50 { locality_ = s; assembled_ =
false; }
52 void setRegion(
const TQCString & s)
53 { region_ = s; assembled_ =
false; }
55 void setPostCode(
const TQCString & s)
56 { postCode_ = s; assembled_ =
false; }
58 void setCountryName(
const TQCString & s)
59 { countryName_ = s; assembled_ =
false; }
61 TQCString poBox() { parse();
return poBox_; }
62 TQCString extAddress() { parse();
return extAddress_; }
63 TQCString street() { parse();
return street_; }
64 TQCString locality() { parse();
return locality_; }
65 TQCString region() { parse();
return region_; }
66 TQCString postCode() { parse();
return postCode_; }
67 TQCString countryName() { parse();
return countryName_; }
72 TQCString extAddress_;
77 TQCString countryName_;