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

其他游戏

开发平台:

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 HKBASE_HKBASE_H
  9. #define HKBASE_HKBASE_H
  10. #include <Common/Base/Types/hkBaseTypes.h>
  11. // C4100 'identifier' : unreferenced formal parameter
  12. // a function need not use all its arguments
  13. // C4127 conditional expression is constant
  14. // constant conditionals are often used inside asserts
  15. // C4505 'function' : unreferenced local function has been removed
  16. // lots of inline functions are not used in a compilation unit
  17. // C4510 'class' : default constructor could not be generated
  18. // C4511 'class' : copy constructor could not be generated
  19. // C4512 'class' : assignment operator could not be generated
  20. // many classes are not designed with value semantics
  21. // C4514 unreferenced inline/local function has been removed
  22. // lots of inline functions are not used in a compilation unit
  23. // C4714 force inlined function not inlined. This warning is only disabled in debug modes.
  24. # pragma warning(push)
  25. # pragma warning(disable: 4100 4127 4324 4505 4510 4511 4512 4514)
  26. //# pragma warning(disable: 1684 981 1419 1418 271 1572 128 ) // Intel compiler warnings
  27. # if defined(HK_DEBUG)
  28. # pragma warning(disable: 4714) 
  29. # endif
  30. # ifndef _CRT_SECURE_NO_DEPRECATE
  31. # define _CRT_SECURE_NO_DEPRECATE 1
  32. # endif
  33. # ifndef _CRT_NONSTDC_NO_DEPRECATE
  34. # define _CRT_NONSTDC_NO_DEPRECATE 1
  35. # endif
  36. #include <Common/Base/Memory/hkThreadMemory.h>
  37. #include <Common/Base/Object/hkBaseObject.h>
  38. #include <Common/Base/Object/hkReferencedObject.h>
  39. #include <Common/Base/Object/hkSingleton.h>
  40. #if !defined(HK_PLATFORM_PS3_SPU)
  41. #include <Common/Base/System/Io/OStream/hkOStream.h> /* <todo> remove */
  42. #endif
  43. #include <Common/Base/System/Error/hkError.h>
  44. #include <Common/Base/Container/Array/hkArray.h>
  45. #include <Common/Base/Container/Array/hkSmallArray.h>
  46. #include <Common/Base/Math/hkMath.h>
  47. #include <Common/Base/Container/String/hkString.h> /* <todo> remove, move static functions elsewhere */
  48. #include <Common/Base/Memory/hkThreadMemory.inl>
  49. #include <Common/Base/UnitTest/hkUnitTest.h>
  50. #endif // HKBASE_HKBASE_H
  51. /*
  52. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  53. * Confidential Information of Havok.  (C) Copyright 1999-2009
  54. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  55. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  56. * rights, and intellectual property rights in the Havok software remain in
  57. * Havok and/or its suppliers.
  58. * Use of this software for evaluation purposes is subject to and indicates
  59. * acceptance of the End User licence Agreement for this product. A copy of
  60. * the license is included with this software and is also available at www.havok.com/tryhavok.
  61. */