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