Skip to content

Commit 57dadb9

Browse files
committed
fix
1 parent 0ef0a5d commit 57dadb9

7 files changed

Lines changed: 25 additions & 24 deletions

File tree

src/odr/internal/html/document.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class Logger;
1212

1313
namespace odr::internal::html {
1414

15-
HtmlService create_document_service(const Document &document,
16-
const std::string &cache_path,
17-
HtmlConfig config,
18-
std::shared_ptr<Logger> logger);
15+
odr::HtmlService create_document_service(const Document &document,
16+
const std::string &cache_path,
17+
HtmlConfig config,
18+
std::shared_ptr<Logger> logger);
1919

2020
} // namespace odr::internal::html

src/odr/internal/html/filesystem.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ class Logger;
1313

1414
namespace odr::internal::html {
1515

16-
HtmlService create_filesystem_service(const Filesystem &filesystem,
17-
const std::string &cache_path,
18-
HtmlConfig config,
19-
std::shared_ptr<Logger> logger);
16+
odr::HtmlService create_filesystem_service(const Filesystem &filesystem,
17+
const std::string &cache_path,
18+
HtmlConfig config,
19+
std::shared_ptr<Logger> logger);
2020

2121
}

src/odr/internal/html/image_file.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ void translate_image_src(const File &file, std::ostream &out,
1818
void translate_image_src(const ImageFile &image_file, std::ostream &out,
1919
const HtmlConfig &config);
2020

21-
HtmlService create_image_service(const ImageFile &image_file,
22-
const std::string &cache_path,
23-
HtmlConfig config,
24-
std::shared_ptr<Logger> logger);
21+
odr::HtmlService create_image_service(const ImageFile &image_file,
22+
const std::string &cache_path,
23+
HtmlConfig config,
24+
std::shared_ptr<Logger> logger);
2525

2626
} // namespace odr::internal::html

src/odr/internal/html/pdf2htmlex_wrapper.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ class PopplerPdfFile;
1616

1717
namespace odr::internal::html {
1818

19-
HtmlService create_poppler_pdf_service(const PopplerPdfFile &pdf_file,
20-
const std::string &cache_path,
21-
HtmlConfig config,
22-
std::shared_ptr<Logger> logger);
19+
odr::HtmlService create_poppler_pdf_service(const PopplerPdfFile &pdf_file,
20+
const std::string &cache_path,
21+
HtmlConfig config,
22+
std::shared_ptr<Logger> logger);
2323

2424
} // namespace odr::internal::html

src/odr/internal/html/pdf_file.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ class Logger;
1212

1313
namespace odr::internal::html {
1414

15-
HtmlService create_pdf_service(const PdfFile &pdf_file,
16-
const std::string &cache_path, HtmlConfig config,
17-
std::shared_ptr<Logger> logger);
15+
odr::HtmlService create_pdf_service(const PdfFile &pdf_file,
16+
const std::string &cache_path,
17+
HtmlConfig config,
18+
std::shared_ptr<Logger> logger);
1819

1920
}

src/odr/internal/html/text_file.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class Logger;
1212

1313
namespace odr::internal::html {
1414

15-
HtmlService create_text_service(const TextFile &text_file,
16-
const std::string &cache_path,
17-
HtmlConfig config,
18-
std::shared_ptr<Logger> logger);
15+
odr::HtmlService create_text_service(const TextFile &text_file,
16+
const std::string &cache_path,
17+
HtmlConfig config,
18+
std::shared_ptr<Logger> logger);
1919

2020
}

src/odr/internal/html/wvware_wrapper.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class WvWareLegacyMicrosoftFile;
1515

1616
namespace odr::internal::html {
1717

18-
HtmlService
18+
odr::HtmlService
1919
create_wvware_oldms_service(const WvWareLegacyMicrosoftFile &oldms_file,
2020
const std::string &cache_path, HtmlConfig config,
2121
std::shared_ptr<Logger> logger);

0 commit comments

Comments
 (0)