Skip to content

Commit

Permalink
Fixed includes and formatting.
Browse files Browse the repository at this point in the history
Updated version to 0.6.0.
  • Loading branch information
qoala101 committed Jul 29, 2023
1 parent 21d302c commit 0327571
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

project(
"ponc"
VERSION 0.5.4
VERSION 0.6.0
LANGUAGES CXX
)

Expand Down
2 changes: 2 additions & 0 deletions include/draw/diagram/draw_links.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#ifndef VH_PONC_DRAW_LINKS_H_
#define VH_PONC_DRAW_LINKS_H_

#include <vector>

#include "coreui_link.h"
#include "draw_string_buffer.h"

Expand Down
1 change: 1 addition & 0 deletions src/core/core_link.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include <imgui_node_editor.h>

#include <type_traits>
#include <variant>

#include "core_project.h"
Expand Down
1 change: 1 addition & 0 deletions src/coreui/coreui_native_facade.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include "coreui_native_facade.h"

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

Expand Down
5 changes: 1 addition & 4 deletions src/draw/diagram/draw_links.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@
#include "draw_links.h"

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

#include <charconv>
#include <cstdlib>

#include "core_link.h"
#include "coreui_link.h"
#include "coreui_native_facade.h"
#include "cpp_assert.h"
#include "draw_colored_text.h"
#include "draw_string_buffer.h"

Expand Down
2 changes: 1 addition & 1 deletion src/draw/dialog/draw_about_dialog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void AboutDialog::Draw() {

if (ImGui::BeginPopupModal("About", &open_requested_,
ImGuiWindowFlags_AlwaysAutoResize)) {
ImGui::TextUnformatted("Passive Optical Network Calculator 0.5.4");
ImGui::TextUnformatted("Passive Optical Network Calculator 0.6.0");
ImGui::Separator();

if (ImGui::BeginTable("About", 2)) {
Expand Down
1 change: 1 addition & 0 deletions src/draw/view/draw_calculator_view.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include <imgui.h>

#include <algorithm>
#include <limits>
#include <memory>
#include <string_view>
Expand Down
1 change: 1 addition & 0 deletions src/json/json_versifier.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <crude_json.h>
#include <imgui.h>

#include <algorithm>
#include <type_traits>
#include <vector>

Expand Down

0 comments on commit 0327571

Please sign in to comment.