diff --git a/src/OpenFOAM/containers/HashTables/HashTable/HashTable.H b/src/OpenFOAM/containers/HashTables/HashTable/HashTable.H index ac30f878a83e02426d9558f07d42351bd341e2f5..798dad6367882f2bee2e94d12e2ac74b395b7508 100644 --- a/src/OpenFOAM/containers/HashTables/HashTable/HashTable.H +++ b/src/OpenFOAM/containers/HashTables/HashTable/HashTable.H @@ -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>> ( diff --git a/src/OpenFOAM/db/dictionary/entry/entry.H b/src/OpenFOAM/db/dictionary/entry/entry.H index 5ed8b929b6993d64db10a3ebce69047bdb83c64f..61eafc7c8a91bbd27934083befb5c6ec2a97ac80 100644 --- a/src/OpenFOAM/db/dictionary/entry/entry.H +++ b/src/OpenFOAM/db/dictionary/entry/entry.H @@ -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