Răsfoiți Sursa

Add missing headers

Michael Ragazzon 5 ani în urmă
părinte
comite
5d7f4fc931

+ 1 - 0
Source/Core/DataController.cpp

@@ -28,6 +28,7 @@
 
 #include "../../Include/RmlUi/Core/DataController.h"
 #include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/Element.h"
 #include "DataParser.h"
 #include "EventSpecification.h"
 

+ 1 - 0
Source/Core/DataControllerDefault.cpp

@@ -29,6 +29,7 @@
 #include "DataControllerDefault.h"
 #include "../../Include/RmlUi/Core/DataController.h"
 #include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/Element.h"
 #include "DataParser.h"
 #include "EventSpecification.h"
 

+ 1 - 0
Source/Core/DataModel.cpp

@@ -27,6 +27,7 @@
  */
 
 #include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/Element.h"
 
 namespace Rml {
 namespace Core {

+ 1 - 0
Source/Core/DataParser.cpp

@@ -27,6 +27,7 @@
  */
 
 #include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/Event.h"
 #include "DataParser.h"
 #include <stack>
 

+ 4 - 1
Source/Core/DataViewDefault.cpp

@@ -28,8 +28,11 @@
 
 #include "DataViewDefault.h"
 #include "DataParser.h"
-#include "../../Include/RmlUi/Core/Variant.h"
 #include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/Element.h"
+#include "../../Include/RmlUi/Core/ElementText.h"
+#include "../../Include/RmlUi/Core/Factory.h"
+#include "../../Include/RmlUi/Core/Variant.h"
 
 namespace Rml {
 namespace Core {

+ 9 - 6
Source/Core/ElementUtilities.cpp

@@ -27,18 +27,21 @@
  */
 
 #include "../../Include/RmlUi/Core/ElementUtilities.h"
-#include "../../Include/RmlUi/Core/TransformState.h"
+#include "../../Include/RmlUi/Core/Context.h"
+#include "../../Include/RmlUi/Core/Core.h"
+#include "../../Include/RmlUi/Core/DataController.h"
+#include "../../Include/RmlUi/Core/DataModel.h"
+#include "../../Include/RmlUi/Core/DataView.h"
 #include "../../Include/RmlUi/Core/Element.h"
 #include "../../Include/RmlUi/Core/ElementScroll.h"
-#include "../../Include/RmlUi/Core/Context.h"
+#include "../../Include/RmlUi/Core/Factory.h"
 #include "../../Include/RmlUi/Core/FontEngineInterface.h"
 #include "../../Include/RmlUi/Core/RenderInterface.h"
-#include "../../Include/RmlUi/Core/Core.h"
-#include "../../Include/RmlUi/Core/Factory.h"
+#include "../../Include/RmlUi/Core/TransformState.h"
+#include "ElementStyle.h"
+#include "LayoutEngine.h"
 #include <queue>
 #include <limits>
-#include "LayoutEngine.h"
-#include "ElementStyle.h"
 
 namespace Rml {
 namespace Core {