Open Inventor Release 2024.2.0
 
Loading...
Searching...
No Matches
SoSubDetail.h
1/*=======================================================================
2 * Copyright 1991-1996, Silicon Graphics, Inc.
3 * ALL RIGHTS RESERVED
4 *
5 * UNPUBLISHED -- Rights reserved under the copyright laws of the United
6 * States. Use of a copyright notice is precautionary only and does not
7 * imply publication or disclosure.
8 *
9 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
10 * Use, duplication or disclosure by the Government is subject to restrictions
11 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
12 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
13 * in similar or successor clauses in the FAR, or the DOD or NASA FAR
14 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
15 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
16 *
17 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
18 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
19 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
20 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
21 * GRAPHICS, INC.
22**=======================================================================*/
23/*=======================================================================
24** Author : Paul S. Strauss (MMM yyyy)
25**=======================================================================*/
26/*=======================================================================
27 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
28 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
29 *** ***
30 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
31 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
32 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
33 *** ***
34 *** RESTRICTED RIGHTS LEGEND ***
35 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
36 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
37 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
38 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
39 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
40 *** ***
41 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, ***
42 *** BORDEAUX, FRANCE ***
43 *** ALL RIGHTS RESERVED ***
44**=======================================================================*/
45/*=======================================================================
46** Modified by : VSG (MMM YYYY)
47**=======================================================================*/
48
49
50#ifndef _SO_SUB_DETAIL_
51#define _SO_SUB_DETAIL_
52
53#include <Inventor/details/SoDetail.h>
54#include <Inventor/errors/SoDebugError.h>
55
57//
58// Macros to be called within the class definition header for a detail
59// subclass:
60//
61
63//
64// This defines type-identifier variables and methods that all
65// subclasses must support.
66//
67
68#define SO_DETAIL_HEADER(className) \
69 public: \
70 \
71 virtual SoType getTypeId() const; \
72 \
73 static SoType getClassTypeId() ; \
74 private: \
75 static SoType classTypeId
76
78//
79// Macros to be called within the source file for a detail subclass:
80//
81
83//
84// This declares the static variables defined in SO_DETAIL_HEADER.
85//
86
87#define SO__DETAIL_ID_VARS(className) \
88 SoType className::classTypeId;
89
91//
92// This implements the methods defined in SO_DETAIL_HEADER.
93//
94
95#define SO__DETAIL_ID_METHODS(className) \
96 \
97SoType \
98className::getClassTypeId() \
99{ \
100 return classTypeId; \
101} \
102SoType \
103className::getTypeId() const \
104{ \
105 return classTypeId; \
106}
107
109//
110// This contains the definitions necessary at file scope
111//
112#define SO_DETAIL_SOURCE(className) \
113 SO__DETAIL_ID_VARS(className); \
114 SO__DETAIL_ID_METHODS(className)
115
116
117#if defined(_DEBUG)
118#define SO_DETAIL_INIT_CLASS_CHECK_PARENT(className, parentClass) \
119 if (parentClass::getClassTypeId().isBad()) { \
120 SoDebugError::post( SO__QUOTE(className)"::initClass", \
121 SO__QUOTE(className)" initialized before parent class " \
122 SO__QUOTE(parentClass)"\n"); \
123 parentClass::initClass(); \
124 }
125#else
126#define SO_DETAIL_INIT_CLASS_CHECK_PARENT(className, parentClass) \
127 if (parentClass::getClassTypeId().isBad()) \
128 parentClass::initClass()
129#endif
130
132//
133// This initializes the type identifer variables defined in
134// SO_DETAIL_HEADER. This macro should be called from within
135// initClass().
136//
137#define SO_DETAIL_INIT_CLASS_INTERNAL(className, parentClass) \
138 SO_DETAIL_INIT_CLASS_CHECK_PARENT(className, parentClass); \
139 classTypeId = SoType::createType(parentClass::getClassTypeId(), SO__QUOTE(className), NULL);
140
141#define SO_DETAIL_INIT_CLASS(className, parentClass) \
142 SO_DETAIL_INIT_CLASS_INTERNAL(className, parentClass)
143
144#if defined(_DEBUG)
145#define SO_DETAIL_EXIT_CLASS(className) \
146 if (! SoType::removeType(classTypeId.getName())) { \
147 SoDebugError::post(SO__QUOTE(className)"::exitClass", \
148 "Unable to remove type (%s) for this class. Check exitClass() " \
149 "method is implemented and is called only once.\n", \
150 classTypeId.getName().getString() ); \
151 } \
152 else \
153 classTypeId = SoType::badType()
154#else
155#define SO_DETAIL_EXIT_CLASS(className) \
156 SoType::removeType(classTypeId.getName()); \
157 classTypeId = SoType::badType()
158#endif
159
160#endif /* _SO_SUB_DETAIL_ */
161
162