Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
Development
openfoam
Commits
5692245b
Commit
5692245b
authored
16 years ago
by
Mark Olesen
Browse files
Options
Downloads
Patches
Plain Diff
added HashPtrTable forward declaration to HashTable, entry.H cosmetics
parent
94a64620
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/OpenFOAM/containers/HashTables/HashTable/HashTable.H
+1
-0
1 addition, 0 deletions
src/OpenFOAM/containers/HashTables/HashTable/HashTable.H
src/OpenFOAM/db/dictionary/entry/entry.H
+3
-3
3 additions, 3 deletions
src/OpenFOAM/db/dictionary/entry/entry.H
with
4 additions
and
3 deletions
src/OpenFOAM/containers/HashTables/HashTable/HashTable.H
+
1
−
0
View file @
5692245b
...
...
@@ -54,6 +54,7 @@ template<class T>
class
List
;
template
<
class
T
,
class
Key
,
class
Hash
>
class
HashTable
;
template
<
class
T
,
class
Key
,
class
Hash
>
class
HashPtrTable
;
template
<
class
T
,
class
Key
,
class
Hash
>
Istream
&
operator
>>
(
...
...
This diff is collapsed.
Click to expand it.
src/OpenFOAM/db/dictionary/entry/entry.H
+
3
−
3
View file @
5692245b
...
...
@@ -92,20 +92,20 @@ public:
//- Construct on freestore as copy with reference to the
// dictionary the copy belongs to
virtual
Foam
::
autoPtr
<
entry
>
clone
virtual
autoPtr
<
entry
>
clone
(
const
dictionary
&
parentDict
)
const
=
0
;
//- Construct on freestore as copy
// Note: the parent directory is set to dictionary::null
virtual
Foam
::
autoPtr
<
entry
>
clone
()
const
;
virtual
autoPtr
<
entry
>
clone
()
const
;
//- Construct from Istream and insert into dictionary
static
bool
New
(
dictionary
&
parentDict
,
Istream
&
is
);
//- Construct on freestore from Istream and return
static
Foam
::
autoPtr
<
entry
>
New
(
Istream
&
is
);
static
autoPtr
<
entry
>
New
(
Istream
&
is
);
// Destructor
...
...
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