Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

GiDFile.h

Go to the documentation of this file.
00001 // Copyright (C) 2004 Harald Svensson.
00002 // Licensed under the GNU GPL Version 2.
00003 
00004 #ifndef __GID_FILE_H
00005 #define __GID_FILE_H
00006 
00007 #include <string>
00008 #include <dolfin/constants.h>
00009 #include <dolfin/GenericFile.h>
00010 
00011 namespace dolfin {
00012 
00013   class Mesh;
00014   class Function;
00015 
00016   class GiDFile : public GenericFile {
00017   public:
00018 
00019     GiDFile(const std::string filename);
00020     ~GiDFile();
00021 
00022     // Input
00023 
00024     // Output
00025 
00026     void operator<< (Mesh& mesh);
00027     void operator<< (Function& u);
00028     void operator<< (Function::Vector& u);
00029 
00030   };
00031   
00032 }
00033 
00034 #endif


Documentation automatically generated with Doxygen on 10 Sep 2004.