Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
amdis
amdis-core
Commits
043a2d71
Commit
043a2d71
authored
Aug 05, 2020
by
Müller, Felix
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove make[Type]Writer functions
parent
5e00a895
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
33 deletions
+0
-33
amdis/io/BackupWriter.hpp
amdis/io/BackupWriter.hpp
+0
-7
amdis/io/DuneVtkWriter.hpp
amdis/io/DuneVtkWriter.hpp
+0
-8
amdis/io/GmshWriter.hpp
amdis/io/GmshWriter.hpp
+0
-10
amdis/io/VTKWriter.hpp
amdis/io/VTKWriter.hpp
+0
-8
No files found.
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
Markdown
is supported
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