Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Timo Koch
dune-common
Commits
7b8b875c
Commit
7b8b875c
authored
18 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
documentation fixes
[[Imported from SVN: r4726]]
parent
3a801617
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/smartpointer.hh
+7
-2
7 additions, 2 deletions
common/smartpointer.hh
with
7 additions
and
2 deletions
common/smartpointer.hh
+
7
−
2
View file @
7b8b875c
...
...
@@ -45,21 +45,26 @@ namespace Dune
* @brief Copy constructor.
* @param pointer The object to copy.
*/
inline
SmartPointer
(
const
SmartPointer
&
pointer
);
inline
SmartPointer
(
const
SmartPointer
<
T
>
&
pointer
);
/**
* @brief Destructor.
*/
inline
~
SmartPointer
();
inline
SmartPointer
&
operator
=
(
const
SmartPointer
&
pointer
);
/** \brief Assignment operator */
inline
SmartPointer
&
operator
=
(
const
SmartPointer
<
T
>&
pointer
);
/** \brief Dereference as object */
inline
MemberType
&
operator
*
();
/** \brief Dereference as pointer */
inline
MemberType
*
operator
->
();
/** \brief Dereference as const object */
inline
const
MemberType
&
operator
*
()
const
;
/** \brief Dereference as const pointer */
inline
const
MemberType
*
operator
->
()
const
;
/**
...
...
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