|
Revision 7375, 0.5 kB
(checked in by robert, 6 years ago)
|
|
From David Callu, warning fixes
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Rev | Line | |
|---|
| [2225] | 1 | #include <Inventor/nodes/SoGroup.h> |
|---|
| 2 | #include <Inventor/actions/SoCallbackAction.h> |
|---|
| 3 | |
|---|
| 4 | #include "GroupSoLOD.h" |
|---|
| 5 | |
|---|
| [7375] | 6 | SO_NODE_SOURCE(GroupSoLOD) |
|---|
| [2225] | 7 | |
|---|
| 8 | void GroupSoLOD::initClass() |
|---|
| 9 | { |
|---|
| 10 | classTypeId = SoType::overrideType(SoLOD::getClassTypeId(), |
|---|
| 11 | createInstance); |
|---|
| 12 | parentFieldData = SoLOD::getFieldDataPtr(); |
|---|
| 13 | } |
|---|
| 14 | |
|---|
| 15 | GroupSoLOD::GroupSoLOD() |
|---|
| 16 | { |
|---|
| 17 | SO_NODE_CONSTRUCTOR(GroupSoLOD); |
|---|
| 18 | } |
|---|
| 19 | |
|---|
| 20 | GroupSoLOD::~GroupSoLOD() |
|---|
| 21 | { |
|---|
| 22 | } |
|---|
| 23 | |
|---|
| 24 | void GroupSoLOD::callback(SoCallbackAction *action) |
|---|
| 25 | { |
|---|
| 26 | SoGroup::doAction(action); |
|---|
| 27 | } |
|---|