STYLE: Remove unused include files.

This commit is contained in:
mattijs
2010-04-13 10:29:16 +01:00
parent 3b53ff5658
commit 5397845971
5 changed files with 6 additions and 10 deletions

View File

@ -26,7 +26,6 @@ License
#include "cellSource.H"
#include "fvMesh.H"
#include "volFields.H"
#include "IOList.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //

View File

@ -25,7 +25,6 @@ License
#include "cellSource.H"
#include "volFields.H"
#include "IOList.H"
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
@ -133,7 +132,7 @@ bool Foam::fieldValues::cellSource::writeValues(const word& fieldName)
if (valueOutput_)
{
IOList<Type>
IOField<Type>
(
IOobject
(

View File

@ -30,7 +30,6 @@ License
#include "processorPolyPatch.H"
#include "surfaceFields.H"
#include "volFields.H"
#include "IOList.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //

View File

@ -26,7 +26,6 @@ License
#include "faceSource.H"
#include "surfaceFields.H"
#include "volFields.H"
#include "IOList.H"
#include "ListListOps.H"
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
@ -145,7 +144,7 @@ bool Foam::fieldValues::faceSource::writeValues(const word& fieldName)
if (valueOutput_)
{
IOList<Type>
IOField<Type>
(
IOobject
(

View File

@ -33,10 +33,10 @@ namespace Foam
{
defineTypeNameAndDebug(fieldValue, 0);
defineTemplateTypeNameAndDebug(IOList<vector>, 0);
defineTemplateTypeNameAndDebug(IOList<sphericalTensor>, 0);
defineTemplateTypeNameAndDebug(IOList<symmTensor>, 0);
defineTemplateTypeNameAndDebug(IOList<tensor>, 0);
defineTemplateTypeNameAndDebug(IOField<vector>, 0);
defineTemplateTypeNameAndDebug(IOField<sphericalTensor>, 0);
defineTemplateTypeNameAndDebug(IOField<symmTensor>, 0);
defineTemplateTypeNameAndDebug(IOField<tensor>, 0);
}