Skip to content

Commit

Permalink
fdt: moved fdt headers/impl to separate directory.
Browse files Browse the repository at this point in the history
Signed-off-by: Bartłomiej Burdukiewicz <bartlomiej.burdukiewicz@gmail.com>
  • Loading branch information
dev-0x7C6 committed Mar 28, 2022
1 parent cfbb197 commit 086c65f
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ add_executable(fdt-viewer
dialogs.cpp
dialogs.hpp
endian-conversions.hpp
fdt-header.hpp
fdt-parser.cpp
fdt-parser.hpp
fdt-property-types.hpp
fdt-view.cpp
fdt-view.hpp
fdt/fdt-header.hpp
fdt/fdt-parser.cpp
fdt/fdt-parser.hpp
fdt/fdt-property-types.hpp
fdt/fdt-view.cpp
fdt/fdt-view.hpp
main-window.cpp
main-window.hpp
main-window.ui
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/fdt-parser.hpp → src/fdt/fdt-parser.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <fdt-header.hpp>
#include <fdt/fdt-header.hpp>

#include <functional>
#include <optional>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/fdt-view.cpp → src/fdt/fdt-view.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "fdt-view.hpp"

#include <endian-conversions.hpp>
#include <fdt-parser.hpp>
#include <fdt/fdt-parser.hpp>

#include <QTreeWidget>
#include <QTreeWidgetItem>
Expand Down
4 changes: 2 additions & 2 deletions src/fdt-view.hpp → src/fdt/fdt-view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#include <QMetaType>
#include <QHash>

#include <fdt-property-types.hpp>
#include <fdt/fdt-property-types.hpp>
#include <fdt/fdt-parser.hpp>
#include <types.hpp>
#include <fdt-parser.hpp>

template <typename... types>
using hash_map = QHash<types...>;
Expand Down
4 changes: 2 additions & 2 deletions src/main-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include <dialogs.hpp>
#include <endian-conversions.hpp>
#include <fdt-parser.hpp>
#include <fdt-view.hpp>
#include <fdt/fdt-parser.hpp>
#include <fdt/fdt-view.hpp>
#include <menu-manager.hpp>
#include <viewer-settings.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/main-window.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <QMainWindow>
#include <memory>

#include <fdt-view.hpp>
#include <fdt/fdt-view.hpp>

class QHexView;
class QTreeWidgetItem;
Expand Down

0 comments on commit 086c65f

Please sign in to comment.