BsFwdDeclUtil.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 RectI;
  34. class RectF;
  35. class Color;
  36. class DynLib;
  37. class DynLibManager;
  38. class DataStream;
  39. class MemoryDataStream;
  40. class FileDataStream;
  41. class MeshData;
  42. class FileSystem;
  43. class Timer;
  44. class Task;
  45. class GpuResourceData;
  46. class PixelData;
  47. class HString;
  48. class StringTable;
  49. struct LocalizedStringData;
  50. class Path;
  51. class HThread;
  52. class TestSuite;
  53. class TestOutput;
  54. // Reflection
  55. class IReflectable;
  56. class RTTITypeBase;
  57. // Serialization
  58. class ISerializable;
  59. class SerializableType;
  60. typedef std::shared_ptr<DataStream> DataStreamPtr;
  61. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  62. typedef std::shared_ptr<FileDataStream> FileDataStreamPtr;
  63. typedef std::shared_ptr<MeshData> MeshDataPtr;
  64. typedef std::shared_ptr<PixelData> PixelDataPtr;
  65. typedef std::shared_ptr<GpuResourceData> GpuResourceDataPtr;
  66. typedef std::shared_ptr<DataStream> DataStreamPtr;
  67. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  68. typedef std::shared_ptr<Task> TaskPtr;
  69. typedef std::shared_ptr<TestSuite> TestSuitePtr;
  70. typedef List<DataStreamPtr> DataStreamList;
  71. typedef std::shared_ptr<DataStreamList> DataStreamListPtr;
  72. enum TypeID_Utility
  73. {
  74. TID_Abstract = 50, // Special type ID used for Abstract classes. Only type ID that may be used by more than one class.
  75. TID_WString = 51,
  76. TID_Path = 52,
  77. TID_Vector = 53,
  78. TID_Map = 54,
  79. TID_UnorderedMap = 55,
  80. TID_Pair = 56
  81. };
  82. }