BsFwdDeclUtil.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. // Contains forward declares used as a convenience
  5. namespace BansheeEngine
  6. {
  7. /** @addtogroup Math
  8. * @{
  9. */
  10. /** Values that represent in which order are euler angles applied when used in transformations. */
  11. enum class EulerAngleOrder
  12. {
  13. XYZ,
  14. XZY,
  15. YXZ,
  16. YZX,
  17. ZXY,
  18. ZYX
  19. };
  20. /** Enum used for object construction specifying the object should be zero initializes. */
  21. enum BS_ZERO { BsZero };
  22. /** Enum used for matrix/quaternion constructor specifying it should be initialized with an identity value. */
  23. enum BS_IDENTITY { BsIdentity };
  24. /** @} */
  25. /** @addtogroup Platform-Utility
  26. * @{
  27. */
  28. /** Enum that defines possible window border styles. */
  29. enum class WindowBorder
  30. {
  31. Normal,
  32. None,
  33. Fixed
  34. };
  35. /** @} */
  36. class Angle;
  37. class AABox;
  38. class Degree;
  39. class Math;
  40. class Matrix3;
  41. class Matrix4;
  42. class Plane;
  43. class Quaternion;
  44. class Radian;
  45. class Ray;
  46. class Capsule;
  47. class Sphere;
  48. class Vector2;
  49. class Vector3;
  50. class Vector4;
  51. struct Vector2I;
  52. class Rect2I;
  53. class Rect2;
  54. class Rect3;
  55. class Color;
  56. class DynLib;
  57. class DynLibManager;
  58. class DataStream;
  59. class MemoryDataStream;
  60. class FileDataStream;
  61. class MeshData;
  62. class FileSystem;
  63. class Timer;
  64. class Task;
  65. class GpuResourceData;
  66. class PixelData;
  67. class HString;
  68. class StringTable;
  69. struct LocalizedStringData;
  70. class Path;
  71. class HThread;
  72. class TestSuite;
  73. class TestOutput;
  74. class AsyncOpSyncData;
  75. struct RTTIField;
  76. struct RTTIReflectablePtrFieldBase;
  77. struct SerializedObject;
  78. struct SerializedInstance;
  79. class FrameAlloc;
  80. class LogEntry;
  81. // Reflection
  82. class IReflectable;
  83. class RTTITypeBase;
  84. // Serialization
  85. class ISerializable;
  86. class SerializableType;
  87. typedef List<SPtr<DataStream>> DataStreamList;
  88. typedef SPtr<DataStreamList> DataStreamListPtr;
  89. enum TypeID_Utility
  90. {
  91. TID_Abstract = 50, // Special type ID used for Abstract classes. Only type ID that may be used by more than one class.
  92. TID_WString = 51,
  93. TID_Path = 52,
  94. TID_Vector = 53,
  95. TID_Map = 54,
  96. TID_UnorderedMap = 55,
  97. TID_Pair = 56,
  98. TID_Set = 57,
  99. TID_StringID = 58,
  100. TID_SerializedInstance = 59,
  101. TID_SerializedField = 60,
  102. TID_SerializedObject = 61,
  103. TID_SerializedArray = 62,
  104. TID_SerializedEntry = 63,
  105. TID_SerializedArrayEntry = 64,
  106. TID_SerializedSubObject = 65,
  107. TID_UnorderedSet = 66,
  108. TID_SerializedDataBlock = 67,
  109. TID_Flags = 68,
  110. TID_IReflectable = 69
  111. };
  112. }