From c70fb3ed5e90d6987a4ebaa16dae3abf9790788f Mon Sep 17 00:00:00 2001 From: Daniel James Date: Tue, 12 Nov 2013 09:16:18 +0000 Subject: [PATCH] Rename input_path.?pp to native_text. [SVN r86645] --- src/Jamfile.v2 | 2 +- src/actions.cpp | 2 +- src/code_snippet.cpp | 2 +- src/dependency_tracker.cpp | 2 +- src/doc_info_actions.cpp | 2 +- src/include_paths.cpp | 2 +- src/main_grammar.cpp | 2 +- src/{input_path.cpp => native_text.cpp} | 2 +- src/{input_path.hpp => native_text.hpp} | 2 ++ src/quickbook.cpp | 2 +- src/state.cpp | 2 +- src/syntax_highlight.cpp | 2 +- 12 files changed, 13 insertions(+), 11 deletions(-) rename src/{input_path.cpp => native_text.cpp} (99%) rename src/{input_path.hpp => native_text.hpp} (99%) diff --git a/src/Jamfile.v2 b/src/Jamfile.v2 index 5bed011..7e9761f 100644 --- a/src/Jamfile.v2 +++ b/src/Jamfile.v2 @@ -30,7 +30,7 @@ exe quickbook dependency_tracker.cpp utils.cpp files.cpp - input_path.cpp + native_text.cpp include_paths.cpp values.cpp document_state.cpp diff --git a/src/actions.cpp b/src/actions.cpp index 2e3c06f..8fa4b9e 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -29,7 +29,7 @@ #include "state.hpp" #include "state_save.hpp" #include "grammar.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include "block_tags.hpp" #include "phrase_tags.hpp" #include "document_state.hpp" diff --git a/src/code_snippet.cpp b/src/code_snippet.cpp index e8334dd..fe54f46 100644 --- a/src/code_snippet.cpp +++ b/src/code_snippet.cpp @@ -18,7 +18,7 @@ #include "state.hpp" #include "values.hpp" #include "files.hpp" -#include "input_path.hpp" +#include "native_text.hpp" namespace quickbook { diff --git a/src/dependency_tracker.cpp b/src/dependency_tracker.cpp index 2af8c01..ef83379 100644 --- a/src/dependency_tracker.cpp +++ b/src/dependency_tracker.cpp @@ -7,7 +7,7 @@ =============================================================================*/ #include "dependency_tracker.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include #include #include diff --git a/src/doc_info_actions.cpp b/src/doc_info_actions.cpp index 207ddcc..4e60f51 100644 --- a/src/doc_info_actions.cpp +++ b/src/doc_info_actions.cpp @@ -16,7 +16,7 @@ #include "quickbook.hpp" #include "utils.hpp" #include "files.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include "state.hpp" #include "actions.hpp" #include "doc_info_tags.hpp" diff --git a/src/include_paths.cpp b/src/include_paths.cpp index f2ab366..8f4e402 100644 --- a/src/include_paths.cpp +++ b/src/include_paths.cpp @@ -9,7 +9,7 @@ http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ -#include "input_path.hpp" +#include "native_text.hpp" #include "include_paths.hpp" #include "state.hpp" #include "utils.hpp" diff --git a/src/main_grammar.cpp b/src/main_grammar.cpp index 496f351..d5ad10e 100644 --- a/src/main_grammar.cpp +++ b/src/main_grammar.cpp @@ -17,7 +17,7 @@ #include "phrase_tags.hpp" #include "parsers.hpp" #include "scoped.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include #include #include diff --git a/src/input_path.cpp b/src/native_text.cpp similarity index 99% rename from src/input_path.cpp rename to src/native_text.cpp index 3fa8717..59beadf 100644 --- a/src/input_path.cpp +++ b/src/native_text.cpp @@ -8,7 +8,7 @@ #include #include -#include "input_path.hpp" +#include "native_text.hpp" #include "utils.hpp" #include "files.hpp" diff --git a/src/input_path.hpp b/src/native_text.hpp similarity index 99% rename from src/input_path.hpp rename to src/native_text.hpp index 6529514..eccde80 100644 --- a/src/input_path.hpp +++ b/src/native_text.hpp @@ -6,6 +6,8 @@ http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ +// For handling native strings and streams. + #if !defined(BOOST_QUICKBOOK_DETAIL_INPUT_PATH_HPP) #define BOOST_QUICKBOOK_DETAIL_INPUT_PATH_HPP diff --git a/src/quickbook.cpp b/src/quickbook.cpp index 9d57121..ff1ba86 100644 --- a/src/quickbook.cpp +++ b/src/quickbook.cpp @@ -14,7 +14,7 @@ #include "post_process.hpp" #include "utils.hpp" #include "files.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include "document_state.hpp" #include #include diff --git a/src/state.cpp b/src/state.cpp index 75e76f5..77a36a7 100644 --- a/src/state.cpp +++ b/src/state.cpp @@ -12,7 +12,7 @@ #include "state_save.hpp" #include "quickbook.hpp" #include "grammar.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include "utils.hpp" #include "phrase_tags.hpp" diff --git a/src/syntax_highlight.cpp b/src/syntax_highlight.cpp index 0ee0b60..1bb2ffd 100644 --- a/src/syntax_highlight.cpp +++ b/src/syntax_highlight.cpp @@ -17,7 +17,7 @@ #include "actions.hpp" #include "utils.hpp" #include "files.hpp" -#include "input_path.hpp" +#include "native_text.hpp" #include "phrase_tags.hpp" namespace quickbook