File tree Expand file tree Collapse file tree 12 files changed +19
-19
lines changed
Expand file tree Collapse file tree 12 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 66// Revision $DateTime: 2009/05/13 01:46:17 $
77// ! \file rapidxml.hpp This file contains rapidxml parser and DOM implementation
88
9- #include " flxml/wrappers.h"
10- #include " flxml/tables.h"
9+ #include < flxml/wrappers.h>
10+ #include < flxml/tables.h>
1111
1212#include < cstdint> // For std::size_t
1313#include < cassert> // For assert
Original file line number Diff line number Diff line change 66// Revision $DateTime: 2009/05/13 01:46:17 $
77// ! \file rapidxml_iterators.hpp This file contains rapidxml iterators
88
9- #include " flxml.h"
9+ #include < flxml.h>
1010
1111namespace flxml
1212{
Original file line number Diff line number Diff line change 77
88#include < string_view>
99#include < list>
10- #include " flxml/generator.h"
11- #include " flxml.h"
10+ #include < flxml/generator.h>
11+ #include < flxml.h>
1212
1313namespace flxml {
1414 template <typename Ch> class xpath ;
Original file line number Diff line number Diff line change 66// Revision $DateTime: 2009/05/13 01:46:17 $
77// ! \file rapidxml_print.hpp This file contains rapidxml printer implementation
88
9- #include " flxml.h"
9+ #include < flxml.h>
1010
1111// Only include streams if not disabled
1212#ifndef FLXML_NO_STREAMS
Original file line number Diff line number Diff line change 77// ! \file rapidxml_utils.hpp This file contains high-level rapidxml utilities that can be useful
88// ! in certain simple scenarios. They should probably not be used if maximizing performance is the main objective.
99
10- #include " flxml.hpp "
10+ #include < flxml.h >
1111#include < vector>
1212#include < string>
1313#include < fstream>
Original file line number Diff line number Diff line change 66#include < list>
77#include < algorithm>
88#include < ranges>
9- #include " flxml.hpp "
9+ #include < flxml.h >
1010
1111TEST (Iterators, Nodes) {
1212 std::string xml = " <children><one/><two/><three/></children>" ;
Original file line number Diff line number Diff line change 33//
44
55#include < gtest/gtest.h>
6- #include " flxml.hpp "
6+ #include < flxml.h >
77
88TEST (Constants, Empty) {
99 flxml::xml_document<> doc;
Original file line number Diff line number Diff line change 44
55#include < gtest/gtest.h>
66
7- #include " flxml.hpp "
8- #include " flxml/print.hpp "
7+ #include < flxml.h >
8+ #include < flxml/print.h >
99
1010namespace {
1111 auto print (flxml::xml_document<> & doc) {
Original file line number Diff line number Diff line change 33//
44
55#include < gtest/gtest.h>
6- #include < flxml.hpp >
6+ #include < flxml.h >
77
88TEST (Parser, SingleElement) {
99 char doc_text[] = " <single-element/>" ;
Original file line number Diff line number Diff line change 22// Created by dave on 07/07/2024.
33//
44
5- #include < flxml.hpp >
6- #include < flxml/utils.hpp >
5+ #include < flxml.h >
6+ #include < flxml/utils.h >
77
88#include < gtest/gtest.h>
99#include < numeric>
10- #include " flxml/print.hpp "
11- #include " flxml/iterators.hpp "
10+ #include " flxml/print.h "
11+ #include " flxml/iterators.h "
1212
1313const auto xml_sample_file = " REC-xml-20081126.xml" ;
1414
You can’t perform that action at this time.
0 commit comments