fbxconstraintcustom.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /****************************************************************************************
  2. Copyright (C) 2015 Autodesk, Inc.
  3. All rights reserved.
  4. Use of this software is subject to the terms of the Autodesk license agreement
  5. provided at the time of installation or download, or which otherwise accompanies
  6. this software in either electronic or hard copy form.
  7. ****************************************************************************************/
  8. //! \file fbxconstraintcustom.h
  9. #ifndef _FBXSDK_SCENE_CONSTRAINT_CUSTOM_H_
  10. #define _FBXSDK_SCENE_CONSTRAINT_CUSTOM_H_
  11. #include <fbxsdk/fbxsdk_def.h>
  12. #include <fbxsdk/scene/constraint/fbxconstraint.h>
  13. #include <fbxsdk/fbxsdk_nsbegin.h>
  14. /** \brief This constraint class contains methods for custom constraint.
  15. * \nosubgrouping
  16. */
  17. class FBXSDK_DLL FbxConstraintCustom : public FbxConstraint
  18. {
  19. FBXSDK_OBJECT_DECLARE(FbxConstraintCustom, FbxConstraint);
  20. /*****************************************************************************************************************************
  21. ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
  22. *****************************************************************************************************************************/
  23. #ifndef DOXYGEN_SHOULD_SKIP_THIS
  24. protected:
  25. virtual EType GetConstraintType() const;
  26. #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
  27. };
  28. #include <fbxsdk/fbxsdk_nsend.h>
  29. #endif /* _FBXSDK_SCENE_CONSTRAINT_CUSTOM_H_ */