1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /****************************************************************************************
-
- Copyright (C) 2015 Autodesk, Inc.
- All rights reserved.
-
- Use of this software is subject to the terms of the Autodesk license agreement
- provided at the time of installation or download, or which otherwise accompanies
- this software in either electronic or hard copy form.
-
- ****************************************************************************************/
- //! \file fbxgenericnode.h
- #ifndef _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_
- #define _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_
- #include <fbxsdk/fbxsdk_def.h>
- #include <fbxsdk/core/fbxobject.h>
- #include <fbxsdk/fbxsdk_nsbegin.h>
- /** Empty node containing properties.
- * \nosubgrouping
- */
- class FBXSDK_DLL FbxGenericNode : public FbxObject
- {
- FBXSDK_OBJECT_DECLARE(FbxGenericNode, FbxObject);
- /*****************************************************************************************************************************
- ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
- *****************************************************************************************************************************/
- #ifndef DOXYGEN_SHOULD_SKIP_THIS
- protected:
- virtual void Construct(const FbxObject* pFrom);
- virtual FbxStringList GetTypeFlags() const;
- #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
- };
- #include <fbxsdk/fbxsdk_nsend.h>
- #endif /* _FBXSDK_SCENE_GEOMETRY_GENERIC_NODE_H_ */
|