Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
71e6f46b
Commit
71e6f46b
authored
Dec 24, 2018
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add outter namespace jlib for namespace dp
parent
21f0a88d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
observer.h
jlib/dp/observer.h
+3
-3
singleton.h
jlib/dp/singleton.h
+3
-2
No files found.
jlib/dp/observer.h
View file @
71e6f46b
...
...
@@ -5,6 +5,7 @@
#include <mutex>
#include <boost/noncopyable.hpp>
namespace
jlib
{
namespace
dp
{
template
<
typename
target
>
...
...
@@ -46,6 +47,5 @@ public:
}
};
};
}
// end of namespace dp
}
// end of namespace jlib
jlib/dp/singleton.h
View file @
71e6f46b
...
...
@@ -3,9 +3,9 @@
#include <mutex>
#include <boost/noncopyable.hpp>
namespace
jlib
{
namespace
dp
{
template
<
class
T
>
class
singleton
:
public
boost
::
noncopyable
{
...
...
@@ -52,4 +52,5 @@ template <class T>
std
::
shared_ptr
<
T
>
singleton
<
T
>::
instance_
=
nullptr
;
}
}
// end of namespace dp
}
// end of namespace jlib
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment