Skip to content

Commit 01bd0ff

Browse files
committed
move header files to include directory
1 parent 4e5619b commit 01bd0ff

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

src/BUILD

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ cc_library(
105105
name = "path_matcher",
106106
srcs = [
107107
"path_matcher_node.cc",
108-
"path_matcher_node.h",
108+
"include/grpc_transcoding/path_matcher_node.h",
109109
],
110110
hdrs = [
111111
"include/grpc_transcoding/path_matcher.h",
@@ -124,7 +124,10 @@ cc_library(
124124
"http_template.cc",
125125
],
126126
hdrs = [
127-
"http_template.h",
127+
"include/grpc_transcoding/http_template.h",
128+
],
129+
includes = [
130+
"include/"
128131
],
129132
)
130133

src/http_template.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <string>
1919
#include <vector>
2020

21-
#include "src/http_template.h"
21+
#include "grpc_transcoding/http_template.h"
2222

2323
namespace google {
2424
namespace grpc {
File renamed without changes.

src/include/grpc_transcoding/path_matcher.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#include <string>
2323
#include <unordered_map>
2424

25-
#include "src/http_template.h"
26-
#include "src/path_matcher_node.h"
25+
#include "http_template.h"
26+
#include "path_matcher_node.h"
2727

2828
namespace google {
2929
namespace grpc {

src/path_matcher_node.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
//
1515
////////////////////////////////////////////////////////////////////////////////
1616
//
17-
#include "src/path_matcher_node.h"
18-
#include "src/http_template.h"
17+
#include "grpc_transcoding/path_matcher_node.h"
18+
#include "grpc_transcoding/http_template.h"
1919

2020
namespace google {
2121
namespace grpc {

0 commit comments

Comments
 (0)