Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
043a2d71
Commit
043a2d71
authored
Aug 05, 2020
by
Müller, Felix
Browse files
Remove make[Type]Writer functions
parent
5e00a895
Changes
4
Hide whitespace changes
Inline
Side-by-side
amdis/io/BackupWriter.hpp
View file @
043a2d71
...
...
@@ -75,11 +75,4 @@ namespace AMDiS
bool
animation_
=
false
;
};
/// Generator function for \ref BackupWriter
template
<
class
SystemVector
>
BackupWriter
<
SystemVector
>
makeBackupWriter
(
std
::
string
const
&
name
,
std
::
shared_ptr
<
SystemVector
>
systemVector
)
{
return
{
name
,
systemVector
};
}
}
// end namespace AMDiS
amdis/io/DuneVtkWriter.hpp
View file @
043a2d71
...
...
@@ -82,14 +82,6 @@ namespace AMDiS
bool
animation_
=
false
;
};
/// Generator function for \ref DuneVtkWriter
template
<
class
GridView
,
class
GridFunction
>
DuneVtkWriter
<
GridView
,
GridFunction
>
makeDuneVtkWriter
(
std
::
string
const
&
name
,
GridView
const
&
gridView
,
GridFunction
const
&
gridFunction
)
{
return
{
name
,
gridView
,
gridFunction
};
}
}
// end namespace AMDiS
#endif // HAVE_DUNE_VTK
amdis/io/GmshWriter.hpp
View file @
043a2d71
...
...
@@ -70,14 +70,4 @@ namespace AMDiS
bool
animation_
=
false
;
};
/// Generator function for \ref GmshWriter
template
<
class
GridView
>
GmshWriter
<
GridView
>
makeGmshWriter
(
std
::
string
const
&
name
,
GridView
const
&
gridView
,
std
::
vector
<
int
>
const
&
physicalEntities
=
std
::
vector
<
int
>
(),
std
::
vector
<
int
>
const
&
physicalBoundaries
=
std
::
vector
<
int
>
())
{
return
{
name
,
gridView
,
physicalEntities
,
physicalBoundaries
};
}
}
// end namespace AMDiS
amdis/io/VTKWriter.hpp
View file @
043a2d71
...
...
@@ -114,12 +114,4 @@ namespace AMDiS
Dune
::
VTK
::
OutputType
mode_
=
Dune
::
VTK
::
ascii
;
};
/// Generator function for \ref VTKWriter
template
<
class
GridView
,
class
GridFunction
>
VTKWriter
<
GridView
,
GridFunction
>
makeVTKWriter
(
std
::
string
const
&
name
,
GridView
const
&
gridView
,
GridFunction
const
&
gridFunction
)
{
return
{
name
,
gridView
,
gridFunction
};
}
}
// end namespace AMDiS
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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