Skip to content

Commit 28a8568

Browse files
committed
Move headers to src directory
Signed-off-by: Stephen Brawner <[email protected]>
1 parent 57d49ca commit 28a8568

File tree

13 files changed

+37
-38
lines changed

13 files changed

+37
-38
lines changed

rcl_yaml_param_parser/QUALITY_DECLARATION.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ The current version can be found in its [package.xml](package.xml), and its chan
2222
All symbols in the installed headers are considered part of the public API.
2323

2424
All installed headers are in the `include` directory of the package, headers in any other folders are not installed and considered private.
25-
Headers in the `include/rcl_yaml_param_parser/impl` directory should also be considered private.
2625

2726
### API Stability Within a Released ROS Distribution [1.iv]/[1.vi]
2827

rcl_yaml_param_parser/src/add_to_arrays.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "rcl_yaml_param_parser/impl/add_to_arrays.h"
15+
#include "./impl/add_to_arrays.h"
1616

1717
#define ADD_VALUE_TO_SIMPLE_ARRAY(val_array, value, value_type, allocator) \
1818
do { \
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__ADD_TO_ARRAYS_H_
16-
#define RCL_YAML_PARAM_PARSER__IMPL__ADD_TO_ARRAYS_H_
15+
#ifndef IMPL__ADD_TO_ARRAYS_H_
16+
#define IMPL__ADD_TO_ARRAYS_H_
1717

1818
#include <yaml.h>
1919

2020
#include "rcutils/types.h"
2121

22-
#include "rcl_yaml_param_parser/impl/types.h"
22+
#include "./types.h"
2323
#include "rcl_yaml_param_parser/types.h"
2424
#include "rcl_yaml_param_parser/visibility_control.h"
2525

@@ -76,4 +76,4 @@ rcutils_ret_t add_val_to_string_arr(
7676
}
7777
#endif
7878

79-
#endif // RCL_YAML_PARAM_PARSER__IMPL__ADD_TO_ARRAYS_H_
79+
#endif // IMPL__ADD_TO_ARRAYS_H_
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__NAMESPACE_H_
16-
#define RCL_YAML_PARAM_PARSER__IMPL__NAMESPACE_H_
15+
#ifndef IMPL__NAMESPACE_H_
16+
#define IMPL__NAMESPACE_H_
1717

1818
#include <yaml.h>
1919

2020
#include "rcutils/types.h"
2121

22-
#include "rcl_yaml_param_parser/impl/types.h"
22+
#include "./types.h"
2323
#include "rcl_yaml_param_parser/types.h"
2424
#include "rcl_yaml_param_parser/visibility_control.h"
2525

@@ -65,4 +65,4 @@ rcutils_ret_t replace_ns(
6565
}
6666
#endif
6767

68-
#endif // RCL_YAML_PARAM_PARSER__IMPL__NAMESPACE_H_
68+
#endif // IMPL__NAMESPACE_H_
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__NODE_PARAMS_H_
16-
#define RCL_YAML_PARAM_PARSER__IMPL__NODE_PARAMS_H_
15+
#ifndef IMPL__NODE_PARAMS_H_
16+
#define IMPL__NODE_PARAMS_H_
1717

1818
#include "rcl_yaml_param_parser/types.h"
1919
#include "rcl_yaml_param_parser/visibility_control.h"
@@ -44,4 +44,4 @@ void rcl_yaml_node_params_fini(
4444
}
4545
#endif
4646

47-
#endif // RCL_YAML_PARAM_PARSER__IMPL__NODE_PARAMS_H_
47+
#endif // IMPL__NODE_PARAMS_H_
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__PARSE_H_
16-
#define RCL_YAML_PARAM_PARSER__IMPL__PARSE_H_
15+
#ifndef IMPL__PARSE_H_
16+
#define IMPL__PARSE_H_
1717

1818
#include <yaml.h>
1919

2020
#include "rcutils/types.h"
2121

22-
#include "rcl_yaml_param_parser/impl/types.h"
22+
#include "./types.h"
2323
#include "rcl_yaml_param_parser/types.h"
2424
#include "rcl_yaml_param_parser/visibility_control.h"
2525

@@ -91,4 +91,4 @@ rcutils_ret_t find_parameter(
9191
}
9292
#endif
9393

94-
#endif // RCL_YAML_PARAM_PARSER__IMPL__PARSE_H_
94+
#endif // IMPL__PARSE_H_
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
/// map level 1 : Node name mapping
1717
/// map level 2 : Params mapping
1818

19-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__TYPES_H_
20-
#define RCL_YAML_PARAM_PARSER__IMPL__TYPES_H_
19+
#ifndef IMPL__TYPES_H_
20+
#define IMPL__TYPES_H_
2121

2222
#include <inttypes.h>
2323
#include <stdint.h>
@@ -69,4 +69,4 @@ typedef struct namespace_tracker_s
6969
}
7070
#endif
7171

72-
#endif // RCL_YAML_PARAM_PARSER__IMPL__TYPES_H_
72+
#endif // IMPL__TYPES_H_
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#ifndef RCL_YAML_PARAM_PARSER__IMPL__YAML_VARIANT_H_
16-
#define RCL_YAML_PARAM_PARSER__IMPL__YAML_VARIANT_H_
15+
#ifndef IMPL__YAML_VARIANT_H_
16+
#define IMPL__YAML_VARIANT_H_
1717

1818
#include "rcutils/allocator.h"
1919

20-
#include "rcl_yaml_param_parser/impl/types.h"
20+
#include "./types.h"
2121
#include "rcl_yaml_param_parser/types.h"
2222
#include "rcl_yaml_param_parser/visibility_control.h"
2323

@@ -46,4 +46,4 @@ bool rcl_yaml_variant_copy(
4646
}
4747
#endif
4848

49-
#endif // RCL_YAML_PARAM_PARSER__IMPL__YAML_VARIANT_H_
49+
#endif // IMPL__YAML_VARIANT_H_

rcl_yaml_param_parser/src/namespace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "rcl_yaml_param_parser/impl/namespace.h"
15+
#include "./impl/namespace.h"
1616

1717
#include "rcutils/strdup.h"
1818

rcl_yaml_param_parser/src/node_params.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "rcl_yaml_param_parser/impl/node_params.h"
16-
#include "rcl_yaml_param_parser/impl/types.h"
17-
#include "rcl_yaml_param_parser/impl/yaml_variant.h"
15+
#include "./impl/node_params.h"
16+
#include "./impl/types.h"
17+
#include "./impl/yaml_variant.h"
1818

1919
rcutils_ret_t node_params_init(
2020
rcl_node_params_t * node_params,

0 commit comments

Comments
 (0)