InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IQRvCardData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: kaubansa
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // ADOBE CONFIDENTIAL
16 //
17 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
18 //
19 // NOTICE: All information contained herein is, and remains
20 // the property of Adobe Systems Incorporated and its suppliers,
21 // if any. The intellectual and technical concepts contained
22 // herein are proprietary to Adobe Systems Incorporated and its
23 // suppliers and may be covered by U.S. and Foreign Patents,
24 // patents in process, and are protected by trade secret or copyright law.
25 // Dissemination of this information or reproduction of this material
26 // is strictly forbidden unless prior written permission is obtained
27 // from Adobe Systems Incorporated.
28 //
29 //========================================================================================
30 
31 
32 #ifndef __IQRVCARDDATA__
33 #define __IQRVCARDDATA__
34 
35 #include "IPMUnknown.h"
36 #include "EPSID.h"
37 
38 #include "IQRCodeStringData.h"
39 
44 {
45 public:
46  enum { kDefaultIID = IID_IQRVCARDDATA };
47 
51  virtual void SetFirstName(const PMString &firstName) = 0;
52 
56  virtual PMString GetFirstName() const = 0;
57 
61  virtual void SetLastName(const PMString &lastName) = 0;
62 
66  virtual PMString GetLastName() const = 0;
67 
71  virtual void SetJobTitle(const PMString &jobTitle) = 0;
72 
76  virtual PMString GetJobTitle() const = 0;
77 
81  virtual void SetTelNo(const PMString &telNo) = 0;
82 
86  virtual PMString GetTelNo() const = 0;
87 
91  virtual void SetCellNo(const PMString &cellNo) = 0;
92 
96  virtual PMString GetCellNo() const = 0;
97 
101  virtual void SetEmail(const PMString &email) = 0;
102 
106  virtual PMString GetEmail() const = 0;
107 
111  virtual void SetWebsite(const PMString &website) = 0;
112 
116  virtual PMString GetWebsite() const = 0;
117 
121  virtual void SetOrganization(const PMString &org) = 0;
122 
126  virtual PMString GetOrganization() const = 0;
127 
131  virtual void SetStreetAddress(const PMString &street) = 0;
132 
136  virtual PMString GetStreetAddress() const = 0;
137 
141  virtual void SetCity(const PMString &city) = 0;
142 
146  virtual PMString GetCity() const = 0;
147 
151  virtual void SetZip(const PMString &zip) = 0;
152 
156  virtual PMString GetZip() const = 0;
157 
161  virtual void SetCountry(const PMString &country) = 0;
162 
166  virtual PMString GetCountry() const = 0;
167 
171  virtual void CopyFromVCard(const IQRvCardData* source ) = 0;
172 
176  virtual void SetState(const PMString &state) = 0;
177 
181  virtual PMString GetState() const = 0;
182 };
183 
184 #endif