InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SchemaBasedIterator.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Steve Pellegrin
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 // Adobe patent application tracking # P409, entitled 'Schema-based file Conversion',
24 // inventors: Robin Briggs, Steve Pellegrin
25 //
26 //========================================================================================
27 
28 #if !defined(__SchemaBasedIterator__)
29 #define __SchemaBasedIterator__
30 
31 // ----- Includes -----
32 
33 #include "CContentIterator.h"
34 
35 
36 class IPMStream;
37 namespace Schemas
38 {
39  class Schema;
40 }
41 class SchemaBasedIterator;
42 
43 
44 #ifdef PUBLIC_BUILD
45 #endif
46 
47 
48 //________________________________________________________________________________________
49 // SchemaBasedReadIterator
50 //________________________________________________________________________________________
51 
52 
59 {
60 public:
67 
70  virtual ~SchemaBasedReadIterator();
71 
72 private:
73  SchemaBasedIterator *fIterator;
74 };
75 
76 
77 //________________________________________________________________________________________
78 // SchemaBasedWriteIterator
79 //________________________________________________________________________________________
80 
87 {
88 public:
93 
96  virtual ~SchemaBasedWriteIterator();
97 
98 private:
99  SchemaBasedIterator *fIterator;
100 };
101 
102 
103 #ifdef PUBLIC_BUILD
104 #endif
105 
106 
107 #endif // __SchemaBasedIterator__