Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
3345fd83
Commit
3345fd83
authored
Jun 22, 2009
by
Henry Weller
Browse files
Removed support for cint.
parent
bde1e5b2
Changes
52
Hide whitespace changes
Inline
Side-by-side
bin/foamTemplates/sourceTemplate/foamTemplateTemplate.H
View file @
3345fd83
...
...
@@ -129,16 +129,10 @@ public:
// IOstream Operators
friend
Istream
&
operator
>>
#ifndef __CINT__
<
TemplateArgument
>
#endif
friend
Istream
&
operator
>>
<
TemplateArgument
>
(
Istream
&
,
ClassName
<
TemplateArgument
>&
);
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
TemplateArgument
>
#endif
friend
Ostream
&
operator
<<
<
TemplateArgument
>
(
Ostream
&
,
const
ClassName
<
TemplateArgument
>&
);
};
...
...
etc/apps/cint/bashrc
deleted
100644 → 0
View file @
bde1e5b2
#----------------------------------*-sh-*--------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# cint/bashrc
#
# Description
# Setup file for cint
# Sourced from OpenFOAM-*/etc/bashrc
#
#------------------------------------------------------------------------------
for
CINTSYSDIR
in
\
$HOME
/pub/CINT/cint7
\
$WM_THIRD_PARTY_DIR
/cint-svn/platforms/
$WM_OPTIONS
\
;
do
if
[
-r
$CINTSYSDIR
]
then
export
CINTSYSDIR
export
PATH
=
$PATH
:
$CINTSYSDIR
/bin
export
MANPATH
=
$MANPATH
:
$CINTSYSDIR
/doc
export
LD_LIBRARY_PATH
=
$LD_LIBRARY_PATH
:
$CINTSYSDIR
/lib
break
fi
done
[
-r
"
$CINTSYSDIR
"
]
||
unset
CINTSYSDIR
# -----------------------------------------------------------------------------
etc/apps/cint/cshrc
deleted
100644 → 0
View file @
bde1e5b2
#----------------------------------*-sh-*--------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
# \\/ M anipulation |
#-------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# cint/cshrc
#
# Description
# Setup file for cint
# Sourced from OpenFOAM-*/etc/cshrc
#
#------------------------------------------------------------------------------
# -----------------------------------------------------------------------------
etc/bashrc
View file @
3345fd83
...
...
@@ -244,7 +244,6 @@ _foamSource $WM_PROJECT_DIR/etc/aliases.sh
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview/bashrc
_foamSource
$WM_PROJECT_DIR
/etc/apps/paraview3/bashrc
_foamSource
$WM_PROJECT_DIR
/etc/apps/ensight/bashrc
_foamSource
$WM_PROJECT_DIR
/etc/apps/cint/bashrc
# Clean environment paths again. Only remove duplicates
...
...
etc/cshrc
View file @
3345fd83
...
...
@@ -241,7 +241,6 @@ _foamSource $WM_PROJECT_DIR/etc/aliases.csh
# _foamSource $WM_PROJECT_DIR/etc/apps/paraview/cshrc
_foamSource
$WM_PROJECT_DIR
/etc/apps/paraview3/cshrc
# _foamSource $WM_PROJECT_DIR/etc/apps/ensight/cshrc
# _foamSource $WM_PROJECT_DIR/etc/apps/cint/cshrc
# Clean environment paths again. Only remove duplicates
...
...
etc/settings.sh
View file @
3345fd83
...
...
@@ -97,7 +97,7 @@ case "${compilerInstall:-OpenFOAM}" in
OpenFOAM
)
case
"
$WM_COMPILER
"
in
Gcc
)
export
WM_COMPILER_DIR
=
$WM_THIRD_PARTY_DIR
/gcc-4.3.
3
/platforms/
$WM_ARCH$WM_COMPILER_ARCH
export
WM_COMPILER_DIR
=
$WM_THIRD_PARTY_DIR
/gcc-4.3.
1
/platforms/
$WM_ARCH$WM_COMPILER_ARCH
_foamAddLib
$WM_THIRD_PARTY_DIR
/mpfr-2.4.1/platforms/
$WM_ARCH$WM_COMPILER_ARCH
/lib
_foamAddLib
$WM_THIRD_PARTY_DIR
/gmp-4.2.4/platforms/
$WM_ARCH$WM_COMPILER_ARCH
/lib
;;
...
...
src/OpenFOAM/containers/HashTables/HashPtrTable/HashPtrTable.H
View file @
3345fd83
...
...
@@ -122,19 +122,13 @@ public:
// IOstream Operators
friend
Istream
&
operator
>>
#ifndef __CINT__
<
T
,
Key
,
Hash
>
#endif
friend
Istream
&
operator
>>
<
T
,
Key
,
Hash
>
(
Istream
&
,
HashPtrTable
<
T
,
Key
,
Hash
>&
);
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
,
Key
,
Hash
>
#endif
friend
Ostream
&
operator
<<
<
T
,
Key
,
Hash
>
(
Ostream
&
,
const
HashPtrTable
<
T
,
Key
,
Hash
>&
...
...
src/OpenFOAM/containers/HashTables/HashTable/HashTable.H
View file @
3345fd83
...
...
@@ -417,19 +417,13 @@ public:
// IOstream Operator
friend
Istream
&
operator
>>
#ifndef __CINT__
<
T
,
Key
,
Hash
>
#endif
friend
Istream
&
operator
>>
<
T
,
Key
,
Hash
>
(
Istream
&
,
HashTable
<
T
,
Key
,
Hash
>&
);
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
,
Key
,
Hash
>
#endif
friend
Ostream
&
operator
<<
<
T
,
Key
,
Hash
>
(
Ostream
&
,
const
HashTable
<
T
,
Key
,
Hash
>&
...
...
src/OpenFOAM/containers/HashTables/HashTable/HashTableI.H
View file @
3345fd83
...
...
@@ -428,20 +428,19 @@ inline bool Foam::HashTable<T, Key, Hash>::const_iterator::operator!=
template
<
class
T
,
class
Key
,
class
Hash
>
inline
const
T
&
inline
const
T
&
Foam
::
HashTable
<
T
,
Key
,
Hash
>::
const_iterator
::
operator
*
()
const
{
return
elmtPtr_
->
obj_
;
}
#ifndef __CINT__
template
<
class
T
,
class
Key
,
class
Hash
>
inline
const
T
&
Foam
::
HashTable
<
T
,
Key
,
Hash
>::
const_iterator
::
operator
()()
const
{
return
elmtPtr_
->
obj_
;
}
#endif
template
<
class
T
,
class
Key
,
class
Hash
>
inline
...
...
src/OpenFOAM/containers/LinkedLists/accessTypes/ILList/ILList.H
View file @
3345fd83
...
...
@@ -152,10 +152,7 @@ public:
// Istream operator
//- Read List from Istream, discarding contents of existing List.
friend
Istream
&
operator
>>
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Istream
&
operator
>>
<
LListBase
,
T
>
(
Istream
&
,
ILList
<
LListBase
,
T
>&
...
...
src/OpenFOAM/containers/LinkedLists/accessTypes/LList/LList.H
View file @
3345fd83
...
...
@@ -327,19 +327,13 @@ public:
// IOstream operators
friend
Istream
&
operator
>>
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Istream
&
operator
>>
<
LListBase
,
T
>
(
Istream
&
,
LList
<
LListBase
,
T
>&
);
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Ostream
&
operator
<<
<
LListBase
,
T
>
(
Ostream
&
,
const
LList
<
LListBase
,
T
>&
...
...
src/OpenFOAM/containers/LinkedLists/accessTypes/LPtrList/LPtrList.H
View file @
3345fd83
...
...
@@ -260,19 +260,13 @@ public:
// IOstream operators
friend
Istream
&
operator
>>
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Istream
&
operator
>>
<
LListBase
,
T
>
(
Istream
&
,
LPtrList
<
LListBase
,
T
>&
);
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Ostream
&
operator
<<
<
LListBase
,
T
>
(
Ostream
&
,
const
LPtrList
<
LListBase
,
T
>&
...
...
src/OpenFOAM/containers/LinkedLists/accessTypes/UILList/UILList.H
View file @
3345fd83
...
...
@@ -277,10 +277,7 @@ public:
// Ostream operator
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
LListBase
,
T
>
#endif
friend
Ostream
&
operator
<<
<
LListBase
,
T
>
(
Ostream
&
,
const
UILList
<
LListBase
,
T
>&
...
...
src/OpenFOAM/containers/Lists/DynamicList/DynamicList.H
View file @
3345fd83
...
...
@@ -210,20 +210,14 @@ public:
// IOstream operators
// Write DynamicList to Ostream.
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>
#endif
friend
Ostream
&
operator
<<
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>
(
Ostream
&
,
const
DynamicList
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>&
);
//- Read from Istream, discarding contents of existing DynamicList.
friend
Istream
&
operator
>>
#ifndef __CINT__
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>
#endif
friend
Istream
&
operator
>>
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>
(
Istream
&
,
DynamicList
<
T
,
SizeInc
,
SizeMult
,
SizeDiv
>&
...
...
src/OpenFOAM/containers/Lists/FixedList/FixedList.H
View file @
3345fd83
...
...
@@ -331,17 +331,11 @@ public:
// IOstream operators
//- Read List from Istream, discarding contents of existing List.
friend
Istream
&
operator
>>
#ifndef __CINT__
<
T
,
Size
>
#endif
friend
Istream
&
operator
>>
<
T
,
Size
>
(
Istream
&
,
FixedList
<
T
,
Size
>&
);
// Write FixedList to Ostream.
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
,
Size
>
#endif
friend
Ostream
&
operator
<<
<
T
,
Size
>
(
Ostream
&
,
const
FixedList
<
T
,
Size
>&
...
...
src/OpenFOAM/containers/Lists/FixedList/FixedListI.H
View file @
3345fd83
...
...
@@ -398,7 +398,6 @@ inline bool Foam::FixedList<T, Size>::empty() const
}
#ifndef __CINT__
template
<
class
T
,
unsigned
Size
>
template
<
class
HashT
>
inline
unsigned
Foam
::
FixedList
<
T
,
Size
>::
Hash
<
HashT
>::
operator
()
...
...
@@ -426,6 +425,5 @@ inline unsigned Foam::FixedList<T, Size>::Hash<HashT>::operator()
}
}
#endif // __CINT__
// ************************************************************************* //
src/OpenFOAM/containers/Lists/List/List.H
View file @
3345fd83
...
...
@@ -233,10 +233,7 @@ public:
// Istream operator
//- Read List from Istream, discarding contents of existing List.
friend
Istream
&
operator
>>
#ifndef __CINT__
<
T
>
#endif
friend
Istream
&
operator
>>
<
T
>
(
Istream
&
,
List
<
T
>&
);
};
...
...
src/OpenFOAM/containers/Lists/UIndirectList/UIndirectList.H
View file @
3345fd83
...
...
@@ -97,16 +97,16 @@ public:
//- Assignment of all entries to the given value
inline
void
operator
=
(
const
T
&
);
// Ostream operator
//- Write UIndirectList to Ostream
// Binary output is currently still a bit of a problem
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
>
#endif
(
Ostream
&
,
const
UIndirectList
<
T
>&
);
friend
Ostream
&
operator
<<
<
T
>
(
Ostream
&
,
const
UIndirectList
<
T
>&
);
};
...
...
src/OpenFOAM/containers/Lists/UList/UList.H
View file @
3345fd83
...
...
@@ -313,11 +313,11 @@ public:
// Ostream operator
// Write UList to Ostream.
friend
Ostream
&
operator
<<
#ifndef __CINT__
<
T
>
#endif
(
Ostream
&
,
const
UList
<
T
>&
);
friend
Ostream
&
operator
<<
<
T
>
(
Ostream
&
,
const
UList
<
T
>&
);
};
// Reverse the first n elements of the list
...
...
src/OpenFOAM/db/IOstreams/Fstreams/OFstream.H
View file @
3345fd83
...
...
@@ -148,9 +148,7 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Global predefined null output stream
#ifndef __CINT__
extern
OFstream
Snull
;
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment