object/i/icontainer.h Source File

icontainer.h
Go to the documentation of this file.
1 /**************************************************************************************
2 
3 Copyright � 2011 Autodesk, Inc. and/or its licensors.
4 All Rights Reserved.
5 
6 The coded instructions, statements, computer programs, and/or related material
7 (collectively the "Data") in these files contain unpublished information
8 proprietary to Autodesk, Inc. and/or its licensors, which is protected by
9 Canada and United States of America federal copyright law and by international
10 treaties.
11 
12 The Data may not be disclosed or distributed to third parties, in whole or in
13 part, without the prior written consent of Autodesk, Inc. ("Autodesk").
14 
15 THE DATA IS PROVIDED "AS IS" AND WITHOUT WARRANTY.
16 ALL WARRANTIES ARE EXPRESSLY EXCLUDED AND DISCLAIMED. AUTODESK MAKES NO
17 WARRANTY OF ANY KIND WITH RESPECT TO THE DATA, EXPRESS, IMPLIED OR ARISING
18 BY CUSTOM OR TRADE USAGE, AND DISCLAIMS ANY IMPLIED WARRANTIES OF TITLE,
19 NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR USE.
20 WITHOUT LIMITING THE FOREGOING, AUTODESK DOES NOT WARRANT THAT THE OPERATION
21 OF THE DATA WILL BE UNINTERRUPTED OR ERROR FREE.
22 
23 IN NO EVENT SHALL AUTODESK, ITS AFFILIATES, PARENT COMPANIES, LICENSORS
24 OR SUPPLIERS ("AUTODESK GROUP") BE LIABLE FOR ANY LOSSES, DAMAGES OR EXPENSES
25 OF ANY KIND (INCLUDING WITHOUT LIMITATION PUNITIVE OR MULTIPLE DAMAGES OR OTHER
26 SPECIAL, DIRECT, INDIRECT, EXEMPLARY, INCIDENTAL, LOSS OF PROFITS, REVENUE
27 OR DATA, COST OF COVER OR CONSEQUENTIAL LOSSES OR DAMAGES OF ANY KIND),
28 HOWEVER CAUSED, AND REGARDLESS OF THE THEORY OF LIABILITY, WHETHER DERIVED
29 FROM CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE), OR OTHERWISE,
30 ARISING OUT OF OR RELATING TO THE DATA OR ITS USE OR ANY OTHER PERFORMANCE,
31 WHETHER OR NOT AUTODESK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS
32 OR DAMAGE.
33 
34 **************************************************************************************/
35 
36 #ifndef __ICONTAINER_H__
37 #define __ICONTAINER_H__
38 
39 #include <object/i/iobject.h>
40 
41 K_FORWARD( KObject );
42 
43 #define IContainer_Declare(IsPure)\
44  public:\
45  virtual const char* GetNameSpace() IsPure;\
46  virtual void SelectObjects ( bool pSelect ) IsPure;\
47 
48 K_INTERFACE( IContainer, 1002401 );
49 
50 #endif
#define K_INTERFACE(Name, Id)
Definition: iobject.h:98
K_FORWARD(KStringList)