Skip to content

Commit

Permalink
Fixed includes.
Browse files Browse the repository at this point in the history
  • Loading branch information
qoala101 committed Aug 20, 2023
1 parent aa865ac commit 60a522b
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 13 deletions.
2 changes: 0 additions & 2 deletions include/app/app_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
#include <imgui.h>
#include <imgui_internal.h>

#include <memory>
#include <string>
#include <unordered_map>
#include <variant>

#include "cpp_static_api.h"
Expand Down
1 change: 0 additions & 1 deletion include/app/app_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#define VH_PONC_APP_IMPL_H_

#include "coreui_project.h"
#include "cpp_safe_ptr.h"
#include "draw_main_window.h"

namespace vh::ponc {
Expand Down
2 changes: 0 additions & 2 deletions include/coreui/coreui_node_mover.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
#include <imgui_internal.h>
#include <imgui_node_editor.h>

#include <optional>
#include <unordered_map>
#include <unordered_set>
#include <vector>

#include "core_area.h"
#include "core_i_node.h"
#include "core_id_value.h"
#include "core_settings.h"
#include "coreui_linker.h"
Expand Down
1 change: 0 additions & 1 deletion include/coreui/coreui_project.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include <string>
#include <vector>

#include "app_globals.h"
#include "core_connection.h"
#include "core_diagram.h"
#include "core_i_family_group.h"
Expand Down
1 change: 1 addition & 0 deletions include/draw/draw_main_menu_bar.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#ifndef VH_PONC_DRAW_MAIN_MENU_BAR_H_
#define VH_PONC_DRAW_MAIN_MENU_BAR_H_

#include "app_globals.h"
#include "coreui_project.h"
#include "draw_about_dialog.h"
#include "draw_calculator_view.h"
Expand Down
3 changes: 3 additions & 0 deletions include/json/json_global_serializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

#include <crude_json.h>

#include <string>
#include <utility>

#include "app_globals.h"
#include "cpp_static_api.h"

Expand Down
2 changes: 0 additions & 2 deletions src/app/app_app.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
#include "app_app.h"

#include <application.h>
#include <crude_json.h>
#include <imgui.h>

#include <iostream>
#include <string>
#include <utility>

Expand Down
3 changes: 1 addition & 2 deletions src/app/app_globals.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
#include <imgui.h>
#include <imgui_internal.h>

#include <iostream>
#include <map>
#include <memory>

#include "cpp_assert.h"
#include "json_global_serializer.h"

namespace vh::ponc {
namespace {
Expand Down
1 change: 1 addition & 0 deletions src/coreui/coreui_node_mover.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <map>
#include <memory>
#include <numeric>
#include <optional>
#include <unordered_map>
#include <utility>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion src/draw/diagram/draw_links.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

#include <imgui.h>
#include <imgui_bezier_math.h>
#include <imgui_internal.h>
#include <imgui_node_editor.h>
#include <imgui_node_editor_internal.h>

#include "core_link.h"
#include "coreui_link.h"
Expand Down
3 changes: 1 addition & 2 deletions src/json/json_global_serializer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
#include "json_global_serializer.h"

#include <crude_json.h>
#include <imgui.h>

#include <memory>
#include <variant>

#include "app_globals.h"

Expand Down

0 comments on commit 60a522b

Please sign in to comment.