00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : Ludovic PEINE (May 2007) 00022 **=======================================================================*/ 00023 00024 00025 00026 #ifndef SC_GET_PRIMITIVE_COUNT_ACTION 00027 #define SC_GET_PRIMITIVE_COUNT_ACTION 00028 00029 #include <Inventor/actions/SoGetPrimitiveCountAction.h> 00030 00031 class ScGetPrimitiveCountAction; 00032 00033 typedef void ScGetPrimitiveCountCallback( void*, ScGetPrimitiveCountAction* ); 00034 00062 class ScGetPrimitiveCountAction : public SoGetPrimitiveCountAction 00063 { 00064 SO_ACTION_HEADER(ScGetPrimitiveCountAction); 00065 00066 public: 00067 00068 00076 ScGetPrimitiveCountAction( 00077 SoAction::DistribMode distribMode = SoAction::LOCAL_ONLY, 00078 ScGetPrimitiveCountCallback* callback = NULL, 00079 void* userData = NULL 00080 ); 00081 00085 #ifndef HIDDEN_FROM_DOC 00086 ~ScGetPrimitiveCountAction(); 00087 #endif //HIDDEN_FROM_DOC 00088 00092 virtual void apply( SoNode* node ); 00093 00094 00095 private: 00096 static void initClass(); 00097 static void exitClass(); 00098 virtual bool mustTraverseDepth() { return true; } 00099 00100 private: 00101 // Callback used to get action result 00102 ScGetPrimitiveCountCallback* m_getPrimCountCallback; 00103 00104 // Pointer to user data 00105 void* m_data; 00106 }; 00107 00108 #endif // SC_GET_PRIMITIVE_COUNT_ACTION 00109 00110 00111 00112 00113