Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
dynamic-graph
Commits
ec98d1ca
Unverified
Commit
ec98d1ca
authored
Jul 01, 2021
by
Florent Lamiraux
Committed by
GitHub
Jul 01, 2021
Browse files
Merge pull request #87 from florent-lamiraux/devel
Make switch to std::shared_ptr easier
parents
b9281ddb
c47bd24f
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/dynamic-graph/fwd.hh
View file @
ec98d1ca
...
...
@@ -5,7 +5,18 @@
#ifndef DYNAMIC_GRAPH_FWD_HH
#define DYNAMIC_GRAPH_FWD_HH
#include
<boost/smart_ptr.hpp>
namespace
dynamicgraph
{
// to be replace by std:: when we switch to C++11 and later
using
boost
::
shared_ptr
;
using
boost
::
weak_ptr
;
using
boost
::
static_pointer_cast
;
using
boost
::
dynamic_pointer_cast
;
using
boost
::
const_pointer_cast
;
using
boost
::
make_shared
;
class
DebugTrace
;
class
PluginRefMap
;
...
...
@@ -17,6 +28,7 @@ class ExceptionSignal;
class
ExceptionTraces
;
class
FactoryStorage
;
class
Interpreter
;
typedef
shared_ptr
<
Interpreter
>
InterpreterShPtr_t
;
class
InterpreterHelper
;
class
Logger
;
class
OutStringStream
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment