Skip to content
Snippets Groups Projects
Commit a0908f51 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

removed useless std::


git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@1014 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent 78fb5a95
No related branches found
No related tags found
No related merge requests found
......@@ -289,10 +289,10 @@ class ElementPllXIF : public MacroGridMoverIF {
virtual void writeDynamicState (ObjectStream &, int) const = 0 ;
virtual void readDynamicState (ObjectStream &, int) = 0 ;
virtual void VertexData2os(ObjectStream &, GatherScatterType &, int) {std::cout << "ich bin die falsche...\n" << flush;}
virtual void EdgeData2os (ObjectStream &, GatherScatterType &, int) {std::cout << "ich bin die falsche...1\n" << flush;}
virtual void FaceData2os (ObjectStream &, GatherScatterType &, int) {std::cout << "ich bin die falsche...2\n" << flush;}
virtual void writeElementData (ObjectStream &, GatherScatterType &) {std::cout << "ich bin die falsche...3\n" << flush;}
virtual void VertexData2os(ObjectStream &, GatherScatterType &, int) { cout << "ich bin die falsche...\n" << flush; }
virtual void EdgeData2os (ObjectStream &, GatherScatterType &, int) { cout << "ich bin die falsche...1\n" << flush; }
virtual void FaceData2os (ObjectStream &, GatherScatterType &, int) { cout << "ich bin die falsche...2\n" << flush; }
virtual void writeElementData (ObjectStream &, GatherScatterType &) { cout << "ich bin die falsche...3\n" << flush; }
virtual void writeDynamicState(ObjectStream &, GatherScatterType &) const = 0 ;
virtual void readDynamicState (ObjectStream &, GatherScatterType &) = 0 ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment