1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     gfx_ResSceneObject.cpp
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: $
16  *---------------------------------------------------------------------------*/
17 
18 #include "../precompiled.h"
19 
20 #include <nw/gfx/res/gfx_ResSceneObject.h>
21 
22 namespace nw {
23 namespace gfx {
24 namespace res {
25 
26 
27 #if 0 // クラスIDによるキャストのテスト用コード。
28 
29 NW_UT_RUNTIME_TYPEINFO_ROOT_DEFINITION( ResSceneObject );
30 NW_UT_RUNTIME_TYPEINFO_DEFINITION( ResSceneNode, ResSceneObject );
31 NW_UT_RUNTIME_TYPEINFO_DEFINITION( ResTransformNode, ResSceneNode );
32 
33 static const nw::ut::internal::RuntimeTypeInfo*
34 s_GfxTypeInfoTable[] =
35 {
36     &ResSceneObject::s_TypeInfo,
37     &ResSceneNode::s_TypeInfo,
38     &ResTransformNode::s_TypeInfo
39 };
40 #endif
41 
42 } /* namespace res */
43 } /* namespace gfx */
44 } /* namespace nw */
45 
46