InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IInCopyXMLValue.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Frank Rubino
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 // IInCopyXMLValue.h - an XML element with one attribute, named "value"
24 //
25 // ADOBE CONFIDENTIAL
26 //
27 //========================================================================================
28 
29 #ifndef __IInCopyXMLValue__
30 #define __IInCopyXMLValue__
31 
32 #include "InCopyWorkflowID.h"
33 
34 #include "IPMUnknown.h"
35 #include "WideString.h"
36 
38 {
39 public:
40  enum { kDefaultIID = IID_IINCOPYXMLVALUE };
41 
49  virtual void GetName(WideString *localName, WideString *qName, WideString *uri) = 0;
50 
54  virtual void SetStoryVersion(const UIDRef& storyRef, const PMReal& version) = 0;
55 
59  virtual void SetVal(const WideString& value) = 0;
63  virtual void GetVal(WideString *value) = 0;
64 
69  virtual void SetLocalName(const WideString& name) = 0;
70 };
71 
72 #endif