#include <skeleton_weight.h>
Definition at line 55 of file skeleton_weight.h.
Public Member Functions | |
| void | serial (NLMISC::IStream &f) |
| Serial the node. | |
Data Fields | |
| std::string | Name |
| Name of the node. | |
| float | Weight |
| Weight of the node. | |
|
|
Serial the node.
Definition at line 83 of file skeleton_weight.cpp. References NLMISC::IStream::serial(), and NLMISC::IStream::serialVersion().
00084 {
00085 // Serial a version number
00086 (void)f.serialVersion (0);
00087
00088 // Serial the name
00089 f.serial (Name);
00090
00091 // Serial the weight
00092 f.serial (Weight);
00093 }
|
|
|
Name of the node.
Definition at line 59 of file skeleton_weight.h. |
|
|
Weight of the node.
Definition at line 62 of file skeleton_weight.h. |
1.3.6