BsFwdDeclUtil.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #pragma once
  2. // Contains forward declares used as a convenience
  3. namespace BansheeEngine
  4. {
  5. /**
  6. * @brief Values that represent in which order are euler
  7. * angles applied when used in transformations.
  8. */
  9. enum class EulerAngleOrder
  10. {
  11. XYZ,
  12. XZY,
  13. YXZ,
  14. YZX,
  15. ZXY,
  16. ZYX
  17. };
  18. class Angle;
  19. class AABox;
  20. class Degree;
  21. class Math;
  22. class Matrix3;
  23. class Matrix4;
  24. class Plane;
  25. class Quaternion;
  26. class Radian;
  27. class Ray;
  28. class Sphere;
  29. class Vector2;
  30. class Vector3;
  31. class Vector4;
  32. struct Vector2I;
  33. class Rect2I;
  34. class Rect2;
  35. class Rect3;
  36. class Color;
  37. class DynLib;
  38. class DynLibManager;
  39. class DataStream;
  40. class MemoryDataStream;
  41. class FileDataStream;
  42. class MeshData;
  43. class FileSystem;
  44. class Timer;
  45. class Task;
  46. class GpuResourceData;
  47. class PixelData;
  48. class HString;
  49. class StringTable;
  50. struct LocalizedStringData;
  51. class Path;
  52. class HThread;
  53. class TestSuite;
  54. class TestOutput;
  55. class AsyncOpSyncData;
  56. struct RTTIField;
  57. struct RTTIReflectablePtrFieldBase;
  58. struct SerializedObject;
  59. struct SerializedInstance;
  60. class FrameAlloc;
  61. class LogEntry;
  62. // Reflection
  63. class IReflectable;
  64. class RTTITypeBase;
  65. // Serialization
  66. class ISerializable;
  67. class SerializableType;
  68. typedef std::shared_ptr<DataStream> DataStreamPtr;
  69. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  70. typedef std::shared_ptr<FileDataStream> FileDataStreamPtr;
  71. typedef std::shared_ptr<MeshData> MeshDataPtr;
  72. typedef std::shared_ptr<PixelData> PixelDataPtr;
  73. typedef std::shared_ptr<GpuResourceData> GpuResourceDataPtr;
  74. typedef std::shared_ptr<DataStream> DataStreamPtr;
  75. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  76. typedef std::shared_ptr<Task> TaskPtr;
  77. typedef std::shared_ptr<TestSuite> TestSuitePtr;
  78. typedef std::shared_ptr<AsyncOpSyncData> AsyncOpSyncDataPtr;
  79. typedef List<DataStreamPtr> DataStreamList;
  80. typedef std::shared_ptr<DataStreamList> DataStreamListPtr;
  81. enum TypeID_Utility
  82. {
  83. TID_Abstract = 50, // Special type ID used for Abstract classes. Only type ID that may be used by more than one class.
  84. TID_WString = 51,
  85. TID_Path = 52,
  86. TID_Vector = 53,
  87. TID_Map = 54,
  88. TID_UnorderedMap = 55,
  89. TID_Pair = 56,
  90. TID_Set = 57,
  91. TID_StringID = 58,
  92. TID_SerializedInstance = 59,
  93. TID_SerializedField = 60,
  94. TID_SerializedObject = 61,
  95. TID_SerializedArray = 62,
  96. TID_SerializedEntry = 63,
  97. TID_SerializedArrayEntry = 64,
  98. TID_SerializedSubObject = 65,
  99. TID_UnorderedSet = 66,
  100. };
  101. }