InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IIntList.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Ryan Gano
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 // An interface off the scrap document, contains a list of extra info needed for
24 // copying unnamed page destinations around
25 //
26 //========================================================================================
27 
28 #ifndef __IIntList__
29 #define __IIntList__
30 
31 #include "HyperlinkID.h"
32 
34 class IIntList : public IPMUnknown
35 {
36 public:
37  enum {kDefaultIID = IID_IINTLIST};
38 
39 public:
43  virtual void Append(int32 k) = 0;
44 
49  virtual int32 Get(int32 n) = 0;
50 
54  virtual int32 Length() = 0;
55 
58  virtual void Clear() = 0;
59 };
60 
61 
62 #endif // __IIntList__
63