Skip to content

Commit 395a256

Browse files
author
Matthieu Longo
committed
Refactoring: fix includes to match new headers paths
1 parent 04dea15 commit 395a256

23 files changed

+34
-34
lines changed

jsonld-cpp/include/jsonld-cpp/Context.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#ifndef LIBJSONLD_CPP_CONTEXT_H
22
#define LIBJSONLD_CPP_CONTEXT_H
33

4-
#include "jsonld-cpp/jsoninc.h"
5-
#include "jsonld-cpp/JsonLdConsts.h"
6-
#include "jsonld-cpp/JsonLdOptions.h"
4+
#include <nlohmann/json.hpp>
5+
#include <jsonld-cpp/JsonLdConsts.h>
6+
#include <jsonld-cpp/JsonLdOptions.h>
77
#include <string>
88
#include <memory>
99

jsonld-cpp/include/jsonld-cpp/ContextProcessor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#ifndef JSONLD_CPP_LIBRARY_CONTEXTPROCESSOR_H
22
#define JSONLD_CPP_LIBRARY_CONTEXTPROCESSOR_H
33

4-
#include "jsonld-cpp/Context.h"
5-
#include "jsonld-cpp/jsoninc.h"
4+
#include <jsonld-cpp/Context.h>
5+
#include <nlohmann/json.hpp>
66
#include <string>
77

88
struct ContextProcessor {

jsonld-cpp/include/jsonld-cpp/ExpansionProcessor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef JSONLD_CPP_LIBRARY_EXPANSIONPROCESSOR_H
22
#define JSONLD_CPP_LIBRARY_EXPANSIONPROCESSOR_H
33

4-
#include "jsonld-cpp/jsoninc.h"
4+
#include <nlohmann/json.hpp>
55

66
class Context;
77

jsonld-cpp/include/jsonld-cpp/FileLoader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef LIBJSONLD_CPP_FILELOADER_H
22
#define LIBJSONLD_CPP_FILELOADER_H
33

4-
#include "jsonld-cpp/DocumentLoader.h"
4+
#include <jsonld-cpp/DocumentLoader.h>
55

66
class RemoteDocument;
77

jsonld-cpp/include/jsonld-cpp/JSONDocument.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef LIBJSONLD_CPP_JSONDOCUMENT_H
22
#define LIBJSONLD_CPP_JSONDOCUMENT_H
33

4-
#include "jsonld-cpp/RemoteDocument.h"
4+
#include <jsonld-cpp/RemoteDocument.h>
55

66
namespace RDF {
77
class RDFDataset;

jsonld-cpp/include/jsonld-cpp/JsonLdError.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef LIBJSONLD_CPP_JSONLDERROR_H
22
#define LIBJSONLD_CPP_JSONLDERROR_H
33

4-
#include "jsonld-cpp/jsoninc.h"
4+
#include <nlohmann/json.hpp>
55

66
class JsonLdError : public std::runtime_error {
77
public:

jsonld-cpp/include/jsonld-cpp/JsonLdOptions.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// The JsonLdOptions type as specified in "JSON-LD-API specification":
55
// https://www.w3.org/TR/json-ld-api/#the-jsonldoptions-type
66

7-
#include "jsonld-cpp/jsoninc.h"
8-
#include "jsonld-cpp/DocumentLoader.h"
9-
#include "jsonld-cpp/JsonLdConsts.h"
7+
#include <nlohmann/json.hpp>
8+
#include <jsonld-cpp/DocumentLoader.h>
9+
#include <jsonld-cpp/JsonLdConsts.h>
1010
#include <string>
1111
#include <sstream>
1212

jsonld-cpp/include/jsonld-cpp/JsonLdProcessor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#ifndef LIBJSONLD_CPP_JSONLDPROCESSOR_H
22
#define LIBJSONLD_CPP_JSONLDPROCESSOR_H
33

4-
#include "jsonld-cpp/jsoninc.h"
5-
#include "jsonld-cpp/JsonLdOptions.h"
4+
#include <nlohmann/json.hpp>
5+
#include <jsonld-cpp/JsonLdOptions.h>
66

77
namespace RDF {
88
class RDFDataset;

jsonld-cpp/include/jsonld-cpp/JsonLdUtils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef LIBJSONLD_CPP_JSONLDUTILS_H
22
#define LIBJSONLD_CPP_JSONLDUTILS_H
33

4-
#include "jsonld-cpp/jsoninc.h"
4+
#include <nlohmann/json.hpp>
55

66
namespace JsonLdUtils {
77

jsonld-cpp/include/jsonld-cpp/RDFDataset.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#ifndef LIBJSONLD_CPP_RDFDATASET_H
22
#define LIBJSONLD_CPP_RDFDATASET_H
33

4-
#include "jsonld-cpp/RDFTriple.h"
5-
#include "jsonld-cpp/RDFQuad.h"
6-
#include "jsonld-cpp/JsonLdOptions.h"
4+
#include <jsonld-cpp/RDFTriple.h>
5+
#include <jsonld-cpp/RDFQuad.h>
6+
#include <jsonld-cpp/JsonLdOptions.h>
77
#include <vector>
88
#include <map>
99
#include <string>

0 commit comments

Comments
 (0)