replace include guards with pragma once
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_ATLAS_HPP_
|
||||
#define GRAPHICS_CORE_ATLAS_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <set>
|
||||
#include <string>
|
||||
@@ -7,6 +6,7 @@
|
||||
#include <vector>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "maths/UVRegion.hpp"
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -59,5 +59,3 @@ public:
|
||||
/// @param maxResolution max atlas resolution
|
||||
std::unique_ptr<Atlas> build(uint extrusion, bool prepare=true, uint maxResolution=0);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_ATLAS_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_BATCH2D_HPP_
|
||||
#define GRAPHICS_CORE_BATCH2D_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <stdlib.h>
|
||||
@@ -93,5 +92,3 @@ public:
|
||||
|
||||
void lineWidth(float width);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_BATCH2D_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_BATCH3D_HPP_
|
||||
#define GRAPHICS_CORE_BATCH3D_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
#include "commons.hpp"
|
||||
@@ -58,5 +57,3 @@ public:
|
||||
void flush() override;
|
||||
void flushPoints();
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_BATCH3D_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_CUBEMAP_HPP_
|
||||
#define GRAPHICS_CORE_CUBEMAP_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "GLTexture.hpp"
|
||||
|
||||
@@ -11,5 +10,3 @@ public:
|
||||
virtual void bind() override;
|
||||
virtual void unbind() override;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_CUBEMAP_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_GFX_CONTEXT_HPP_
|
||||
#define GRAPHICS_CORE_GFX_CONTEXT_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "commons.hpp"
|
||||
#include "Viewport.hpp"
|
||||
@@ -38,5 +37,3 @@ public:
|
||||
void setScissors(glm::vec4 area);
|
||||
void setLineWidth(float width);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_GFX_CONTEXT_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_FONT_HPP_
|
||||
#define GRAPHICS_CORE_FONT_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
@@ -46,5 +45,3 @@ public:
|
||||
void draw(Batch2D* batch, const std::wstring& text, int x, int y, FontStyle style);
|
||||
void draw(Batch2D* batch, std::wstring_view text, int x, int y, FontStyle style);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_FONT_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_FRAMEBUFFER_HPP_
|
||||
#define GRAPHICS_CORE_FRAMEBUFFER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -38,5 +37,3 @@ public:
|
||||
/// @brief Get framebuffer height
|
||||
uint getHeight() const;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_FRAMEBUFFER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_GLTEXTURE_HPP_
|
||||
#define GRAPHICS_CORE_GLTEXTURE_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "Texture.hpp"
|
||||
|
||||
@@ -26,5 +25,3 @@ public:
|
||||
|
||||
static std::unique_ptr<GLTexture> from(const ImageData* image);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_GLTEXTURE_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_IMAGE_DATA_HPP_
|
||||
#define GRAPHICS_CORE_IMAGE_DATA_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -48,5 +47,3 @@ public:
|
||||
};
|
||||
|
||||
std::unique_ptr<ImageData> add_atlas_margins(ImageData* image, int grid_size);
|
||||
|
||||
#endif // GRAPHICS_CORE_IMAGE_DATA_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_LINEBATCH_HPP_
|
||||
#define GRAPHICS_CORE_LINEBATCH_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <stdlib.h>
|
||||
@@ -34,5 +33,3 @@ public:
|
||||
void flush() override;
|
||||
void lineWidth(float width);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_LINEBATCH_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_MESH_HPP_
|
||||
#define GRAPHICS_CORE_MESH_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "typedefs.hpp"
|
||||
@@ -39,5 +38,3 @@ public:
|
||||
static int meshesCount;
|
||||
static int drawCalls;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_MESH_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_MODEL_HPP_
|
||||
#define GRAPHICS_CORE_MODEL_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
@@ -34,5 +33,3 @@ namespace model {
|
||||
void clean();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_CORE_MODEL_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_POST_PROCESSING_HPP_
|
||||
#define GRAPHICS_CORE_POST_PROCESSING_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -37,5 +36,3 @@ public:
|
||||
|
||||
Framebuffer* getFramebuffer() const;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_POST_PROCESSING_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_SHADER_HPP_
|
||||
#define GRAPHICS_CORE_SHADER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -44,5 +43,3 @@ public:
|
||||
const std::string& fragmentSource
|
||||
);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_SHADER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_TEXTURE_HPP_
|
||||
#define GRAPHICS_CORE_TEXTURE_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
#include "maths/UVRegion.hpp"
|
||||
@@ -35,5 +34,3 @@ public:
|
||||
|
||||
static std::unique_ptr<Texture> from(const ImageData* image);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_TEXTURE_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_TEXTURE_ANIMATION_HPP_
|
||||
#define GRAPHICS_CORE_TEXTURE_ANIMATION_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -48,5 +47,3 @@ private:
|
||||
|
||||
std::vector<TextureAnimation> animations;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_TEXTURE_ANIMATION_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_VIEWPORT_HPP_
|
||||
#define GRAPHICS_CORE_VIEWPORT_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <glm/glm.hpp>
|
||||
|
||||
@@ -18,5 +17,3 @@ public:
|
||||
return glm::ivec2(width, height);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_VIEWPORT_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_COMMONS_HPP_
|
||||
#define GRAPHICS_CORE_COMMONS_HPP_
|
||||
#pragma once
|
||||
|
||||
enum class DrawPrimitive {
|
||||
point = 0,
|
||||
@@ -17,5 +16,3 @@ public:
|
||||
|
||||
virtual void flush() = 0;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_CORE_COMMONS_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_CORE_GL_UTIL_HPP_
|
||||
#define GRAPHICS_CORE_GL_UTIL_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "commons.hpp"
|
||||
#include "ImageData.hpp"
|
||||
@@ -25,5 +24,3 @@ namespace gl {
|
||||
return primitives[static_cast<int>(primitive)];
|
||||
}
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_CORE_GL_UTIL_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_BLOCKS_PREVIEW_HPP_
|
||||
#define GRAPHICS_RENDER_BLOCKS_PREVIEW_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "typedefs.hpp"
|
||||
|
||||
@@ -32,5 +31,3 @@ public:
|
||||
const Content* content
|
||||
);
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_RENDER_BLOCKS_PREVIEW_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_BLOCKS_RENDERER_HPP_
|
||||
#define GRAPHICS_RENDER_BLOCKS_RENDERER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
@@ -132,5 +131,3 @@ public:
|
||||
std::shared_ptr<Mesh> createMesh();
|
||||
VoxelsVolume* getVoxelsBuffer() const;
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_RENDER_BLOCKS_RENDERER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_CHUNKSRENDERER_HPP_
|
||||
#define GRAPHICS_RENDER_CHUNKSRENDERER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <queue>
|
||||
#include <memory>
|
||||
@@ -46,5 +45,3 @@ public:
|
||||
|
||||
void update();
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_RENDER_CHUNKSRENDERER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_MODEL_BATCH_HPP_
|
||||
#define GRAPHICS_RENDER_MODEL_BATCH_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "maths/UVRegion.hpp"
|
||||
|
||||
@@ -90,5 +89,3 @@ public:
|
||||
const texture_names_map* varTextures);
|
||||
void render();
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_RENDER_MODEL_BATCH_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_SKYBOX_HPP_
|
||||
#define GRAPHICS_RENDER_SKYBOX_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
@@ -54,5 +53,3 @@ public:
|
||||
return ready;
|
||||
}
|
||||
};
|
||||
|
||||
#endif // GRAPHICS_RENDER_SKYBOX_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_RENDER_WORLD_RENDERER_HPP_
|
||||
#define GRAPHICS_RENDER_WORLD_RENDERER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
@@ -98,6 +97,3 @@ public:
|
||||
bool pause
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
#endif // GRAPHICS_RENDER_WORLD_RENDERER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef FRONTEND_GUI_GUI_HPP_
|
||||
#define FRONTEND_GUI_GUI_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "delegates.hpp"
|
||||
|
||||
@@ -135,5 +134,3 @@ namespace gui {
|
||||
float getDoubleClickDelay() const;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // FRONTEND_GUI_GUI_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_BUTTON_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_BUTTON_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "Panel.hpp"
|
||||
|
||||
@@ -31,5 +30,3 @@ namespace gui {
|
||||
virtual void refresh() override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_BUTTON_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_CHECKBOX_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_CHECKBOX_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <utility>
|
||||
|
||||
@@ -59,5 +58,3 @@ namespace gui {
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_CHECKBOX_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_CONTAINER_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_CONTAINER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
#include "commons.hpp"
|
||||
@@ -38,5 +37,3 @@ namespace gui {
|
||||
const std::vector<std::shared_ptr<UINode>>& getNodes() const;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_CONTAINER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_IMAGE_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_IMAGE_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
|
||||
@@ -19,5 +18,3 @@ namespace gui {
|
||||
virtual void setTexture(const std::string& name);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_IMAGE_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_INPUTBINDBOX_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_INPUTBINDBOX_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "Panel.hpp"
|
||||
|
||||
@@ -21,5 +20,3 @@ namespace gui {
|
||||
virtual bool isFocuskeeper() const override {return true;}
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_INPUTBINDBOX_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef FRONTEND_INVENTORY_VIEW_HPP_
|
||||
#define FRONTEND_INVENTORY_VIEW_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
#include "Container.hpp"
|
||||
@@ -140,5 +139,3 @@ namespace gui {
|
||||
std::shared_ptr<InventoryView> build();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // FRONTEND_INVENTORY_VIEW_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_LABEL_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_LABEL_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
|
||||
@@ -110,5 +109,3 @@ namespace gui {
|
||||
virtual bool isTextWrapping() const;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_LABEL_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_MENU_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_MENU_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "Container.hpp"
|
||||
|
||||
@@ -56,5 +55,3 @@ namespace gui {
|
||||
Page& getCurrent();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_MENU_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_PANEL_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_PANEL_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "commons.hpp"
|
||||
#include "Container.hpp"
|
||||
@@ -36,5 +35,3 @@ namespace gui {
|
||||
glm::vec4 getPadding() const;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_PANEL_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_PLOTTER_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_PLOTTER_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
#include "typedefs.hpp"
|
||||
@@ -33,5 +32,3 @@ namespace gui {
|
||||
void draw(const DrawContext* pctx, Assets* assets) override;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_PLOTTER_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_TEXTBOX_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_TEXTBOX_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "Panel.hpp"
|
||||
#include "Label.hpp"
|
||||
@@ -173,5 +172,3 @@ namespace gui {
|
||||
virtual void setOnDownPressed(const runnable &callback);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_TEXTBOX_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_TRACKBAR_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_TRACKBAR_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "UINode.hpp"
|
||||
#include "data/dynamic_fwd.hpp"
|
||||
@@ -49,5 +48,3 @@ namespace gui {
|
||||
virtual void setChangeOnRelease(bool);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_TRACKBAR_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_UINODE_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_UINODE_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "delegates.hpp"
|
||||
#include "window/input.hpp"
|
||||
@@ -259,5 +258,3 @@ namespace gui {
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_UINODE_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef GRAPHICS_UI_ELEMENTS_COMMONS_HPP_
|
||||
#define GRAPHICS_UI_ELEMENTS_COMMONS_HPP_
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
|
||||
@@ -16,5 +15,3 @@ namespace gui {
|
||||
int repeat;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GRAPHICS_UI_ELEMENTS_COMMONS_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef FRONTEND_GUI_GUI_UTIL_HPP_
|
||||
#define FRONTEND_GUI_GUI_UTIL_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "GUI.hpp"
|
||||
#include "typedefs.hpp"
|
||||
@@ -26,5 +25,3 @@ namespace guiutil {
|
||||
std::wstring yestext=L"",
|
||||
std::wstring notext=L"");
|
||||
}
|
||||
|
||||
#endif // FRONTEND_GUI_GUI_UTIL_HPP_
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
#ifndef FRONTEND_GUI_GUI_XML_HPP_
|
||||
#define FRONTEND_GUI_GUI_XML_HPP_
|
||||
#pragma once
|
||||
|
||||
#include "GUI.hpp"
|
||||
#include "coders/xml.hpp"
|
||||
@@ -56,5 +55,3 @@ namespace gui {
|
||||
const std::string& getFilename() const;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // FRONTEND_GUI_GUI_XML_HPP_
|
||||
|
||||
Reference in New Issue
Block a user