File tree Expand file tree Collapse file tree 10 files changed +24
-37
lines changed Expand file tree Collapse file tree 10 files changed +24
-37
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 17
17
18
18
namespace clang {
19
19
namespace mrdox {
20
+ namespace adoc {
20
21
21
22
// ------------------------------------------------
22
23
//
@@ -873,12 +874,15 @@ toString(TagTypeKind k) noexcept
873
874
}
874
875
}
875
876
877
+ } // adoc
878
+
879
+
876
880
// ------------------------------------------------
877
881
878
882
std::unique_ptr<Generator>
879
883
makeAsciidocGenerator ()
880
884
{
881
- return std::make_unique<AsciidocGenerator>();
885
+ return std::make_unique<adoc:: AsciidocGenerator>();
882
886
}
883
887
884
888
} // mrdox
Original file line number Diff line number Diff line change 9
9
// Official repository: https://github.com/cppalliance/mrdox
10
10
//
11
11
12
- #ifndef MRDOX_SOURCE_FORMAT_ASCIIDOC_HPP
13
- #define MRDOX_SOURCE_FORMAT_ASCIIDOC_HPP
12
+ #ifndef MRDOX_SOURCE_ADOC_ASCIIDOC_HPP
13
+ #define MRDOX_SOURCE_ADOC_ASCIIDOC_HPP
14
14
15
15
#include < mrdox/Config.hpp>
16
16
#include < mrdox/Corpus.hpp>
25
25
26
26
namespace clang {
27
27
namespace mrdox {
28
-
29
- struct OverloadSet ;
28
+ namespace adoc {
30
29
31
30
class AsciidocGenerator
32
31
: public Generator
@@ -141,6 +140,7 @@ class AsciidocGenerator::Writer
141
140
static llvm::StringRef toString (TagTypeKind k) noexcept ;
142
141
};
143
142
143
+ } // adoc
144
144
} // mrdox
145
145
} // clang
146
146
Original file line number Diff line number Diff line change 17
17
18
18
namespace clang {
19
19
namespace mrdox {
20
+ namespace adoc {
20
21
21
22
/*
22
23
Pages are as follows:
@@ -143,5 +144,6 @@ visit(
143
144
return true ;
144
145
}
145
146
147
+ } // adoc
146
148
} // mrdox
147
149
} // clang
Original file line number Diff line number Diff line change 8
8
// Official repository: https://github.com/cppalliance/mrdox
9
9
//
10
10
11
- #ifndef MRDOX_SOURCE_FORMAT_ASCIIDOC_PAGESBUILDER_HPP
12
- #define MRDOX_SOURCE_FORMAT_ASCIIDOC_PAGESBUILDER_HPP
11
+ #ifndef MRDOX_SOURCE_ADOC_PAGESBUILDER_HPP
12
+ #define MRDOX_SOURCE_ADOC_PAGESBUILDER_HPP
13
13
14
14
#include < mrdox/Corpus.hpp>
15
15
#include < mrdox/MetadataFwd.hpp>
16
16
#include < llvm/ADT/SmallString.h>
17
17
18
18
namespace clang {
19
19
namespace mrdox {
20
+ namespace adoc {
20
21
21
22
class PagesBuilder : Corpus::Visitor
22
23
{
@@ -56,6 +57,7 @@ class PagesBuilder : Corpus::Visitor
56
57
llvm::SmallString<0 > filePrefix_;
57
58
};
58
59
60
+ } // adoc
59
61
} // mrdox
60
62
} // clang
61
63
Original file line number Diff line number Diff line change 10
10
//
11
11
12
12
#include " XML.hpp"
13
- #include " format/ radix.hpp"
13
+ #include " radix.hpp"
14
14
#include < mrdox/Error.hpp>
15
15
#include < mrdox/Metadata.hpp>
16
16
17
17
namespace clang {
18
18
namespace mrdox {
19
-
20
- namespace {
19
+ namespace xml {
21
20
22
21
// ------------------------------------------------
23
22
//
98
97
}
99
98
}
100
99
101
- } // (anon)
102
-
103
100
// ------------------------------------------------
104
101
//
105
102
// XMLGenerator
@@ -968,12 +965,14 @@ toString(
968
965
}
969
966
}
970
967
968
+ } // xml
969
+
971
970
// ------------------------------------------------
972
971
973
972
std::unique_ptr<Generator>
974
973
makeXMLGenerator ()
975
974
{
976
- return std::make_unique<XMLGenerator>();
975
+ return std::make_unique<xml:: XMLGenerator>();
977
976
}
978
977
979
978
} // mrdox
Original file line number Diff line number Diff line change 9
9
// Official repository: https://github.com/cppalliance/mrdox
10
10
//
11
11
12
- #ifndef MRDOX_SOURCE_FORMAT_XML_HPP
13
- #define MRDOX_SOURCE_FORMAT_XML_HPP
12
+ #ifndef MRDOX_SOURCE_XML_XML_HPP
13
+ #define MRDOX_SOURCE_XML_XML_HPP
14
14
15
15
#include < mrdox/Generator.hpp>
16
16
#include < mrdox/MetadataFwd.hpp>
17
17
#include < mrdox/meta/Javadoc.hpp>
18
18
19
19
namespace clang {
20
20
namespace mrdox {
21
+ namespace xml {
21
22
22
23
// ------------------------------------------------
23
24
@@ -150,6 +151,7 @@ class XMLGenerator::Writer
150
151
151
152
// ------------------------------------------------
152
153
154
+ } // xml
153
155
} // mrdox
154
156
} // clang
155
157
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments