Skip to content

Commit d403c24

Browse files
Use relative paths
1 parent f66a310 commit d403c24

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

CSAPI/DataModels/Component/Boolean.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#include <nlohmann/json_fwd.hpp>
99

1010
#include "ScalarComponent.h"
11-
#include "Util/JsonUtils.h"
1211
#include "DataComponent.h"
1312
#include "SimpleComponent.h"
13+
#include "../../Util/JsonUtils.h"
1414

1515
namespace ConnectedSystemsAPI::DataModels::Component {
1616
class Boolean;

CSAPI/DataModels/Component/DataComponent.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
#include <ostream>
66
#include <stdexcept>
77
#include <utility>
8+
#include <memory>
89
#include <nlohmann/json.hpp>
910
#include <nlohmann/json_fwd.hpp>
1011

11-
#include "Util/JsonUtils.h"
12+
#include "../../Util/JsonUtils.h"
1213
#include "DataComponentRegistry.h"
1314

1415
namespace ConnectedSystemsAPI::DataModels::Component {

CSAPI/DataModels/Component/DataRecord.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
#include "DataComponent.h"
1414
#include "DataComponentRegistry.h"
15-
#include "DataModels/Data/DataBlockMixed.h"
16-
#include "DataModels/Data/DataValue.h"
15+
#include "../Data/DataBlockMixed.h"
16+
#include "../Data/DataValue.h"
1717

1818
namespace ConnectedSystemsAPI::DataModels::Component {
1919
class DataRecord;

CSAPI/DataModels/Component/SimpleComponent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include "DataComponent.h"
1212
#include "NilValue.h"
13-
#include "Util/JsonUtils.h"
13+
#include "../../Util/JsonUtils.h"
1414

1515
namespace ConnectedSystemsAPI::DataModels::Component {
1616
class SimpleComponent : public DataComponent {

CSAPI/DataModels/Data/DataBlock.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "DataModels/Data/DataType.h"
3+
#include "../Data/DataType.h"
44

55
namespace ConnectedSystemsAPI::DataModels::Data {
66
class DataBlock {

0 commit comments

Comments
 (0)