| 1 | /**************************************************************************************** |
| 2 | |
| 3 | Copyright (C) 2015 Autodesk, Inc. |
| 4 | All rights reserved. |
| 5 | |
| 6 | Use of this software is subject to the terms of the Autodesk license agreement |
| 7 | provided at the time of installation or download, or which otherwise accompanies |
| 8 | this software in either electronic or hard copy form. |
| 9 | |
| 10 | ****************************************************************************************/ |
| 11 | |
| 12 | //! \file fbxgenericnode.h |
| 13 | #ifndef _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_ |
| 14 | #define _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_ |
| 15 | |
| 16 | #include <fbxsdk/fbxsdk_def.h> |
| 17 | #include <fbxsdk/core/fbxobject.h> |
| 18 | |
| 19 | #include <fbxsdk/fbxsdk_nsbegin.h> |
| 20 | |
| 21 | /** Empty node containing properties. |
| 22 | * \nosubgrouping |
| 23 | */ |
| 24 | class FBXSDK_DLL FbxGenericNode : public FbxObject |
| 25 | { |
| 26 | FBXSDK_OBJECT_DECLARE(FbxGenericNode, FbxObject); |
| 27 | |
| 28 | /***************************************************************************************************************************** |
| 29 | ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! ** |
| 30 | *****************************************************************************************************************************/ |
| 31 | #ifndef DOXYGEN_SHOULD_SKIP_THIS |
| 32 | protected: |
| 33 | virtual void Construct(const FbxObject* pFrom); |
| 34 | virtual FbxStringList GetTypeFlags() const; |
| 35 | |
| 36 | #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/ |
| 37 | }; |
| 38 | |
| 39 | #include <fbxsdk/fbxsdk_nsend.h> |
| 40 | |
| 41 | #endif /* _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_ */ |
| 42 | |