fbxrenamingstrategyfbx7.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 fbxrenamingstrategyfbx7.h
  9. #ifndef _FBXSDK_UTILS_RENAMINGSTRATEGY_FBX7_H_
  10. #define _FBXSDK_UTILS_RENAMINGSTRATEGY_FBX7_H_
  11. #include <fbxsdk/fbxsdk_def.h>
  12. #include <fbxsdk/utils/fbxrenamingstrategybase.h>
  13. #include <fbxsdk/fbxsdk_nsbegin.h>
  14. class FBXSDK_DLL FbxRenamingStrategyFbx7 : public FbxRenamingStrategyBase
  15. {
  16. public:
  17. FbxRenamingStrategyFbx7();
  18. virtual ~FbxRenamingStrategyFbx7();
  19. virtual void CleanUp();
  20. virtual bool DecodeScene(FbxScene* pScene);
  21. virtual bool EncodeScene(FbxScene* pScene);
  22. virtual bool DecodeString(FbxNameHandler& pName);
  23. virtual bool EncodeString(FbxNameHandler& pName, bool pIsPropertyName=false);
  24. };
  25. #include <fbxsdk/fbxsdk_nsend.h>
  26. #endif /* _FBXSDK_UTILS_RENAMINGSTRATEGY_FBX7_H_ */