EnumCopy.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HKSERIALIZE_ENUM_COPY_HKCLASS_H
  9. #define HKSERIALIZE_ENUM_COPY_HKCLASS_H
  10. extern const class hkClass OriginalClass;
  11. class Original
  12. {
  13. public:
  14. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, Original );
  15. HK_DECLARE_REFLECTION();
  16. enum Value
  17. {
  18. VALUE_FIRST=1,
  19. VALUE_SECOND=2,
  20. VALUE_THIRD=3,
  21. VALUE_ONLY_IN_ORIGINAL=4
  22. };
  23. Original() { }
  24. public:
  25. hkEnum<Value, hkInt8> m_value8;
  26. hkEnum<Value, hkInt16> m_value16;
  27. hkEnum<Value, hkInt32> m_value32;
  28. hkEnum<Value, hkInt32> m_valueBad0;
  29. hkEnum<Value, hkInt32> m_valueBad1;
  30. };
  31. extern const class hkClass ModifiedClass;
  32. class Modified
  33. {
  34. public:
  35. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_SERIALIZE, Modified );
  36. HK_DECLARE_REFLECTION();
  37. enum Value
  38. {
  39. VALUE_FIRST=111,
  40. VALUE_SECOND=156,
  41. VALUE_THIRD=123,
  42. VALUE_ONLY_IN_MODIFIED=99
  43. };
  44. Modified() { }
  45. public:
  46. int m_padpad[10];
  47. hkEnum<Value, hkInt8> m_value8;
  48. hkEnum<Value, hkInt16> m_value16;
  49. hkEnum<Value, hkInt32> m_value32;
  50. hkEnum<Value, hkInt32> m_valueBad0;
  51. hkEnum<Value, hkInt32> m_valueBad1;
  52. };
  53. #endif // HKSERIALIZE_ENUM_COPY_HKCLASS_H
  54. /*
  55. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  56. * Confidential Information of Havok.  (C) Copyright 1999-2009
  57. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  58. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  59. * rights, and intellectual property rights in the Havok software remain in
  60. * Havok and/or its suppliers.
  61. * Use of this software for evaluation purposes is subject to and indicates
  62. * acceptance of the End User licence Agreement for this product. A copy of
  63. * the license is included with this software and is also available at www.havok.com/tryhavok.
  64. */