![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 00006 #pragma once 00007 00008 #include <vrvOsg/vrvOsg.h> 00009 #include <vrvCore/DtUniqueID.h> 00010 #include <osg/Referenced> 00011 00012 namespace makVrv 00013 { 00014 00017 class DT_DLL_VRVOSG DtOsgUniqueIDHolder : public osg::Referenced 00018 { 00019 public: 00020 00022 DtOsgUniqueIDHolder( DtUniqueID id ); 00023 00025 virtual ~DtOsgUniqueIDHolder(); 00026 00027 DtUniqueID uniqueID() const; 00028 00029 protected: 00030 DtOsgUniqueIDHolder(); 00031 DtUniqueID myId; 00032 }; 00033 00034 }