Skip to content

Commit

Permalink
style(src): .hpp unified to .hh (google style)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mairon1206 committed Aug 10, 2024
1 parent 764b74c commit 35aad9a
Show file tree
Hide file tree
Showing 19 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/Controller/Core/AccountManager.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>
#include <Infrastructure/Network/ResponseStruct.h>
#include <chrono>
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Core/BasicView.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Controller/Core/ViewManager.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>
#include <set>
#include <stack>
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/UiBridge.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

// #include <Controller/Core/ViewManager.h>
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/AboutPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/DetailPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/DiscoveryPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/HistoryPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/MenuOverlay.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/MyEventPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/SearchPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/View/SettingPage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Controller/Core/BasicView.h>
#include <Controller/Core/GlobalAgent.hpp>
#include <Controller/Core/GlobalAgent.hh>
#include <Controller/Core/UiBase.h>

EVENTO_UI_START
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/Infrastructure/Network/NetworkClient.cc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "NetworkClient.h"
#include "Infrastructure/Network/Api/Evento.hpp"
#include "Infrastructure/Utils/Error.h"
#include <Infrastructure/Network/Api/Evento.hh>
#include <Infrastructure/Utils/Debug.h>
#include <Infrastructure/Utils/Error.h>
#include <boost/url/param.hpp>
#include <boost/url/params_view.hpp>
#include <cassert>
Expand Down
4 changes: 2 additions & 2 deletions src/Infrastructure/Network/NetworkClient.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once

#include "ResponseStruct.h"
#include <Infrastructure/Network/Api/Evento.hpp>
#include <Infrastructure/Network/Api/Github.hpp>
#include <Infrastructure/Network/Api/Evento.hh>
#include <Infrastructure/Network/Api/Github.hh>
#include <Infrastructure/Network/HttpsAccessManager.h>
#include <Infrastructure/Network/ResponseStruct.h>
#include <Infrastructure/Utils/Debug.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <Controller/UiBridge.h>
#include <Infrastructure/Utils/Config.h>
#include <Infrastructure/Utils/Logger.h>
#include <Infrastructure/Utils/Logger.hh>
#include <Version.h>
#include <filesystem>
#include <slint.h>
Expand Down

0 comments on commit 35aad9a

Please sign in to comment.