Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Özgür Ozan Sen
ogs
Commits
581bea22
Commit
581bea22
authored
9 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[BL] removed unneeded functions
parent
5be0ef79
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
BaseLib/ConfigTree.cpp
+0
-30
0 additions, 30 deletions
BaseLib/ConfigTree.cpp
BaseLib/ConfigTree.h
+0
-11
0 additions, 11 deletions
BaseLib/ConfigTree.h
with
0 additions
and
41 deletions
BaseLib/ConfigTree.cpp
+
0
−
30
View file @
581bea22
...
@@ -9,37 +9,7 @@
...
@@ -9,37 +9,7 @@
#include
"ConfigTree.h"
#include
"ConfigTree.h"
#include
<boost/property_tree/xml_parser.hpp>
#include
<boost/property_tree/json_parser.hpp>
#include
<logog/include/logog.hpp>
// Explicitly instantiate the boost::property_tree::ptree which is a typedef to
// Explicitly instantiate the boost::property_tree::ptree which is a typedef to
// the following basic_ptree.
// the following basic_ptree.
template
class
boost
::
property_tree
::
basic_ptree
<
std
::
string
,
std
::
string
,
template
class
boost
::
property_tree
::
basic_ptree
<
std
::
string
,
std
::
string
,
std
::
less
<
std
::
string
>
>
;
std
::
less
<
std
::
string
>
>
;
namespace
BaseLib
{
ConfigTree
read_xml_config
(
std
::
string
const
&
path
)
{
ConfigTree
ptree
;
read_xml
(
path
,
ptree
,
boost
::
property_tree
::
xml_parser
::
no_comments
|
boost
::
property_tree
::
xml_parser
::
trim_whitespace
);
DBUG
(
"Project configuration from file
\'
%s
\'
read."
,
path
.
c_str
());
return
ptree
;
}
std
::
string
propertyTreeToString
(
ConfigTree
const
&
tree
)
{
std
::
ostringstream
ss
;
boost
::
property_tree
::
write_json
(
ss
,
tree
);
return
ss
.
str
();
}
}
This diff is collapsed.
Click to expand it.
BaseLib/ConfigTree.h
+
0
−
11
View file @
581bea22
...
@@ -10,20 +10,9 @@
...
@@ -10,20 +10,9 @@
#ifndef BASELIB_CONFIGTREE_H_
#ifndef BASELIB_CONFIGTREE_H_
#define BASELIB_CONFIGTREE_H_
#define BASELIB_CONFIGTREE_H_
#include
<string>
#include
<boost/property_tree/ptree.hpp>
#include
<boost/property_tree/ptree.hpp>
extern
template
class
boost
::
property_tree
::
basic_ptree
<
extern
template
class
boost
::
property_tree
::
basic_ptree
<
std
::
string
,
std
::
string
,
std
::
less
<
std
::
string
>>
;
std
::
string
,
std
::
string
,
std
::
less
<
std
::
string
>>
;
namespace
BaseLib
{
using
ConfigTree
=
boost
::
property_tree
::
ptree
;
boost
::
property_tree
::
ptree
read_xml_config
(
std
::
string
const
&
path
);
/// Returns the JSON-representation of the given boost::property_tree.
std
::
string
propertyTreeToString
(
boost
::
property_tree
::
ptree
const
&
tree
);
}
#endif // BASELIB_CONFIGTREE_H_
#endif // BASELIB_CONFIGTREE_H_
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment