hkClassMember.inl
上传用户: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. inline const char* hkClassMember::getName() const
  9. {
  10. return m_name;
  11. }
  12. inline hkClassMember::Type hkClassMember::getType() const
  13. {
  14. return static_cast<Type>(m_type);
  15. }
  16. inline void hkClassMember::setType(hkClassMember::Type type)
  17. {
  18. m_type = type;
  19. }
  20. inline hkClassMember::Type hkClassMember::getSubType() const
  21. {
  22. return static_cast<Type>(m_subtype);
  23. }
  24. inline void hkClassMember::setSubType(hkClassMember::Type subtype)
  25. {
  26. m_subtype = subtype;
  27. }
  28. inline int hkClassMember::getOffset() const
  29. {
  30. return m_offset;
  31. }
  32. inline void hkClassMember::setOffset(int offset)
  33. {
  34. m_offset = static_cast<hkUint16>(offset);
  35. }
  36. inline const hkClassMember::Flags& hkClassMember::getFlags() const
  37. {
  38. return m_flags;
  39. }
  40. inline hkClassMember::Flags& hkClassMember::getFlags()
  41. {
  42. return m_flags;
  43. }
  44. inline hkBool hkClassMember::hasClass() const
  45. {
  46. return m_class != HK_NULL;
  47. }
  48. inline hkBool hkClassMember::hasEnumClass() const
  49. {
  50. return m_enum != HK_NULL;
  51. }
  52. /*
  53. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  54. * Confidential Information of Havok.  (C) Copyright 1999-2009
  55. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  56. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  57. * rights, and intellectual property rights in the Havok software remain in
  58. * Havok and/or its suppliers.
  59. * Use of this software for evaluation purposes is subject to and indicates
  60. * acceptance of the End User licence Agreement for this product. A copy of
  61. * the license is included with this software and is also available at www.havok.com/tryhavok.
  62. */