root/trunk/Source/System/GraphOp/OSGGeometryMergeGraphOp.h

Revision 1521, 5.9 kB (checked in by cneumann, 1 month ago)

fixed: missing include for OSG_UTIL_DLLMAPPING

Line 
1 /*---------------------------------------------------------------------------*\
2  *                                OpenSG                                     *
3  *                                                                           *
4  *                                                                           *
5  *                   Copyright (C) 2008 by the OpenSG Forum                  *
6  *                                                                           *
7  *                            www.opensg.org                                 *
8  *                                                                           *
9  *   contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de          *
10  *                                                                           *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13  *                                License                                    *
14  *                                                                           *
15  * This library is free software; you can redistribute it and/or modify it   *
16  * under the terms of the GNU Library General Public License as published    *
17  * by the Free Software Foundation, version 2.                               *
18  *                                                                           *
19  * This library is distributed in the hope that it will be useful, but       *
20  * WITHOUT ANY WARRANTY; without even the implied warranty of                *
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
22  * Library General Public License for more details.                          *
23  *                                                                           *
24  * You should have received a copy of the GNU Library General Public         *
25  * License along with this library; if not, write to the Free Software       *
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                 *
27  *                                                                           *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30  *                                Changes                                    *
31  *                                                                           *
32  *                                                                           *
33  *                                                                           *
34  *                                                                           *
35  *                                                                           *
36  *                                                                           *
37 \*---------------------------------------------------------------------------*/
38
39 #ifndef _OSGGEOMETRYMERGEGRAPHOP_H_
40 #define _OSGGEOMETRYMERGEGRAPHOP_H_
41 #ifdef __sgi
42 #pragma once
43 #endif
44
45 #include "OSGConfig.h"
46 #include "OSGUtilDef.h"
47 #include "OSGGraphOp.h"
48
49 OSG_BEGIN_NAMESPACE
50
51 class OSG_UTIL_DLLMAPPING GeometryMergeGraphOp : public GraphOp
52 {
53     /*==========================  PUBLIC  =================================*/
54   public:
55     /*---------------------------------------------------------------------*/
56     /*! \name Types                                                        */
57     /*! \{                                                                 */
58    
59     typedef GraphOp                                 Inherited;
60     typedef GeometryMergeGraphOp                    Self;
61    
62     typedef TransitPtr <Self                      > ObjTransitPtr;
63     typedef RefCountPtr<Self, MemObjRefCountPolicy> ObjRefPtr;
64    
65     /*! \}                                                                 */
66     /*---------------------------------------------------------------------*/
67     /*! \name Classname                                                    */
68     /*! \{                                                                 */
69    
70     static const char *getClassname(void);
71    
72     /*! \}                                                                 */
73     /*---------------------------------------------------------------------*/
74     /*! \name Constructors                                                 */
75     /*! \{                                                                 */
76    
77     GeometryMergeGraphOp(const char* name = "GeometryMerge");
78
79     virtual GraphOpTransitPtr create(void);
80
81     /*! \}                                                                 */
82     /*---------------------------------------------------------------------*/
83     /*! \name                    Parameters                                */
84     /*! \{                                                                 */
85
86     void        setParams(const std::string params);
87
88     std::string usage    (void                    );
89
90     /*! \}                                                                 */
91     /*=========================  PROTECTED  ===============================*/
92   protected:
93     /*---------------------------------------------------------------------*/
94     /*! \name                   Destructors                                */
95     /*! \{                                                                 */
96
97     virtual ~GeometryMergeGraphOp(void);
98
99     /*! \}                                                                 */
100     /*==========================  PRIVATE  ================================*/
101   private:
102
103     UInt32 _mergeThreshold;
104    
105     Action::ResultE traverseEnter(Node * const node                     );
106     Action::ResultE traverseLeave(Node * const node, Action::ResultE res);
107 };
108
109 typedef GeometryMergeGraphOp::ObjTransitPtr GeometryMergeGraphOpTransitPtr;
110 typedef GeometryMergeGraphOp::ObjRefPtr     GeometryMergeGraphOpRefPtr;
111
112 OSG_END_NAMESPACE
113
114 #endif // _OSGGEOMETRYMERGEGRAPHOP_H_
Note: See TracBrowser for help on using the browser.