InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISetAdobeCoreMDCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Michael Burbidge
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __ISetAdobeCoreMDCmdData_h__
25 #define __ISetAdobeCoreMDCmdData_h__
26 
27 // ----- Interfaces -----
28 
29 #include "IPMUnknown.h"
30 
31 // ----- Includes -----
32 
33 #include "MetaDataTypes.h"
34 #include "UnspecifiableOf.h"
35 
36 // ----- ID.h files -----
37 
38 #include "MetaDataID.h"
39 
40 //========================================================================================
41 // INTERFACE ISetAdobeCoreMDCmdData
42 //========================================================================================
43 
49 {
50 public:
51  enum { kDefaultIID = IID_ISETADOBECOREMDCMDDATA };
52 
53 
68  virtual void Set(IPMUnknown* targetObject,
69  const UnspecifiableOf<PMString>& title = kUnspecified,
70  const UnspecifiableOf< K2Vector<PMString> >& authors = kUnspecified,
71  const UnspecifiableOf<PMString>& description = kUnspecified,
72  const UnspecifiableOf< K2Vector<PMString> >& keywords = kUnspecified,
73  const UnspecifiableOf<XMP_DateTime>& metadataDate = kUnspecified,
74  const UnspecifiableOf<XMP_DateTime>& modifyDate = kUnspecified,
75  const UnspecifiableOf<XMP_DateTime>& createDate = kUnspecified,
76  const UnspecifiableOf<metadata::AgentName>& creatorTool = kUnspecified,
77  const UnspecifiableOf<metadata::URI>& baseURL = kUnspecified,
78  const UnspecifiableOf<PMString>& nickname = kUnspecified) = 0;
79 
84  virtual IPMUnknown* QueryTargetObject(const PMIID& iid) const = 0;
85 
89  virtual UnspecifiableOf<PMString> GetTitle() const = 0;
90 
94  virtual UnspecifiableOf< K2Vector<PMString> > GetAuthors() const = 0;
95 
99  virtual UnspecifiableOf<PMString> GetDescription() const = 0;
100 
105  virtual UnspecifiableOf< K2Vector<PMString> > GetKeywords() const = 0;
106 
112 
116  virtual UnspecifiableOf<XMP_DateTime> GetModifyDate() const = 0;
117 
121  virtual UnspecifiableOf<XMP_DateTime> GetCreateDate() const = 0;
122 
128 
132  virtual UnspecifiableOf<metadata::URI> GetBaseURL() const = 0;
133 
137  virtual UnspecifiableOf<PMString> GetNickname() const = 0;
138 };
139 
140 #endif // __ISetAdobeCoreMDCmdData_h__