| 22 | #include "SampleDepth.h" |
| 23 | |
| 24 | void ExportedSampleDepth::GetDescription( XnProductionNodeDescription* pDescription ) |
| 25 | { |
| 26 | pDescription->Type = XN_NODE_TYPE_DEPTH; |
| 27 | strcpy(pDescription->strVendor, "OpenNI"); |
| 28 | strcpy(pDescription->strName, "SampleDepth"); |
| 29 | pDescription->Version.nMajor = XN_MAJOR_VERSION; |
| 30 | pDescription->Version.nMinor = XN_MINOR_VERSION; |
| 31 | pDescription->Version.nMaintenance = XN_MAINTENANCE_VERSION; |
| 32 | pDescription->Version.nBuild = XN_BUILD_VERSION; |
| 33 | } |
| 34 | |
| 35 | XnStatus ExportedSampleDepth::EnumerateProductionTrees( xn::Context& /*context*/, xn::NodeInfoList& TreesList, xn::EnumerationErrors* /*pErrors*/ ) |
| 36 | { |
no outgoing calls
no test coverage detected