diff --git a/FileIO/CMakeLists.txt b/FileIO/CMakeLists.txt
index 521a7681ec3f3a136ce6dac2ea53f80bab4be174..3a38ef597b9e9266cf0a3b51cba6747ff5113680 100644
--- a/FileIO/CMakeLists.txt
+++ b/FileIO/CMakeLists.txt
@@ -1,13 +1,20 @@
 # Source files
 # GET_SOURCE_FILES(SOURCES_FILEIO)
 SET( SOURCES
+	Gmsh2GeoIO.h
 	Gmsh2GeoIO.cpp
+	GMSInterface.h
 	GMSInterface.cpp
+	PetrelInterface.h
 	PetrelInterface.cpp
+	readMeshFromFile.h
 	readMeshFromFile.cpp
+	readNonBlankLineFromInputStream.h
 	readNonBlankLineFromInputStream.cpp
+	Writer.h
 	Writer.cpp
 )
+
 GET_SOURCE_FILES(SOURCES_LEGACY Legacy)
 GET_SOURCE_FILES(SOURCES_MESHIO MeshIO)
 GET_SOURCE_FILES(SOURCES_RAPID_XML RapidXmlIO)
diff --git a/FileIO/Gmsh2GeoIO.cpp b/FileIO/Gmsh2GeoIO.cpp
index 976301e0daf2cd1c59e8f48508bb540ed30b02bb..ccb3967eb096a194707dbe9025559a0836b4c327 100644
--- a/FileIO/Gmsh2GeoIO.cpp
+++ b/FileIO/Gmsh2GeoIO.cpp
@@ -27,6 +27,12 @@
 #include "GEOObjects.h"
 #include "Gmsh2GeoIO.h"
 
+#include "Mesh.h"
+#include "Elements/Tri.h"
+#include "Elements/Quad.h"
+#include "Node.h"
+
+
 namespace FileIO
 {
 void Gmsh2GeoIO::loadMeshAsGeometry (std::string & fname, GeoLib::GEOObjects* geo)
@@ -133,4 +139,51 @@ void Gmsh2GeoIO::loadMeshAsGeometry (std::string & fname, GeoLib::GEOObjects* ge
 	sfcs->push_back(sfc);
 	geo->addSurfaceVec (sfcs, fname);
 }
+
+
+bool Gmsh2GeoIO::convertMeshToGeo(const MeshLib::Mesh &mesh, GeoLib::GEOObjects* geo_objects)
+{
+	if (mesh.getDimension() != 2)
+	{
+		ERR ("Mesh to geometry conversion is only working for 2D meshes.");
+		return false;
+	}
+	
+	// nodes to points conversion
+	const unsigned nNodes (mesh.getNNodes());
+	std::vector<GeoLib::Point*> *points = new std::vector<GeoLib::Point*>(nNodes);
+	const std::vector<MeshLib::Node*> nodes = mesh.getNodes();
+
+	for (unsigned i=0; i<nNodes; ++i)
+		(*points)[i] = new GeoLib::Point(static_cast<GeoLib::Point>(*nodes[i]));
+
+
+	// elements to surface triangles conversion
+	const std::vector<MeshLib::Element*> elements = mesh.getElements();
+	GeoLib::Surface* sfc = new GeoLib::Surface(*points);
+	const unsigned nElems (mesh.getNElements());
+
+	for (unsigned i=0; i<nElems; ++i)
+	{
+		MeshLib::Element* e (elements[i]);
+		if (e->getGeomType() == MshElemType::TRIANGLE)
+			sfc->addTriangle(e->getNodeIndex(0), e->getNodeIndex(1), e->getNodeIndex(2));
+		if (e->getGeomType() == MshElemType::QUAD)
+		{
+			sfc->addTriangle(e->getNodeIndex(0), e->getNodeIndex(1), e->getNodeIndex(2));
+			sfc->addTriangle(e->getNodeIndex(0), e->getNodeIndex(2), e->getNodeIndex(3));
+		}
+		// all other element types are ignored (i.e. lines)
+	}
+	
+	std::vector<GeoLib::Surface*> *sfcs = new std::vector<GeoLib::Surface*>(1);
+	(*sfcs)[0] = sfc;
+
+	std::string mesh_name (mesh.getName());
+	geo_objects->addPointVec(points, mesh_name);
+	geo_objects->addSurfaceVec(sfcs, mesh_name);
+	return true;
+}
+
+
 } // end namespace FileIO
diff --git a/FileIO/Gmsh2GeoIO.h b/FileIO/Gmsh2GeoIO.h
index 4ba7afbb412f5dda8f1de6915765be7ae456f591..486aea926f68a85a89e78afd768afd8c97bee981 100644
--- a/FileIO/Gmsh2GeoIO.h
+++ b/FileIO/Gmsh2GeoIO.h
@@ -25,6 +25,12 @@ namespace GeoLib
 class GEOObjects;
 }
 
+namespace MeshLib
+{
+	class Mesh;
+}
+
+
 namespace FileIO
 {
 class Gmsh2GeoIO
@@ -37,6 +43,16 @@ public:
 	 * new surface will be put into this container
 	 */
 	static void loadMeshAsGeometry (std::string & fname, GeoLib::GEOObjects* geo);
+
+	/**
+	 * Converts a 2D mesh into a geometry.
+	 * A new geometry with the name of the mesh will be inserted into geo_objects, consisting
+	 * of points identical with mesh nodes and one surface representing the mesh. Triangles are
+	 * converted to geometric triangles, quads are split into two triangles, all other elements
+	 * are ignored.
+	 */
+	static bool convertMeshToGeo(const MeshLib::Mesh &mesh, GeoLib::GEOObjects* geo_objects);
+
 };
 } // end namespace FileIO