Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "searchableSurface.H"
00027 #include <OpenFOAM/long.H>
00028
00029
00030
00031 namespace Foam
00032 {
00033
00034 defineTypeNameAndDebug(searchableSurface, 0);
00035 defineRunTimeSelectionTable(searchableSurface, dict);
00036
00037
00038
00039 autoPtr<searchableSurface> searchableSurface::New
00040 (
00041 const word& searchableSurfaceType,
00042 const IOobject& io,
00043 const dictionary& dict
00044 )
00045 {
00046 dictConstructorTable::iterator cstrIter =
00047 dictConstructorTablePtr_
00048 ->find(searchableSurfaceType);
00049
00050 if (cstrIter == dictConstructorTablePtr_->end())
00051 {
00052 FatalErrorIn
00053 (
00054 "searchableSurface::New(const word&, const word&"
00055 ", const IOobject&, const dictionary&)"
00056 ) << "Unknown searchableSurface type " << searchableSurfaceType
00057 << endl << endl
00058 << "Valid searchableSurface types : " << endl
00059 << dictConstructorTablePtr_->sortedToc()
00060 << exit(FatalError);
00061 }
00062
00063 return autoPtr<searchableSurface>(cstrIter()(io, dict));
00064 }
00065
00066
00067
00068
00069 Foam::searchableSurface::searchableSurface(const IOobject& io)
00070 :
00071 regIOobject(io)
00072 {}
00073
00074
00075
00076
00077 Foam::searchableSurface::~searchableSurface()
00078 {}
00079
00080
00081 }
00082
00083
00084