Corrected include and errors in vag.hpp

This commit is contained in:
Halvor M. Nilsen 2012-06-11 10:42:34 +02:00
parent 7f1f2ad837
commit 7e4350e7aa
2 changed files with 5 additions and 4 deletions

View File

@ -20,6 +20,8 @@
#ifndef OPM_GRID_HEADER_INCLUDED
#define OPM_GRID_HEADER_INCLUDED
#include <stddef.h>
/**
* \file
*

View File

@ -92,13 +92,12 @@ namespace OPM
\param[out] is a reference to a vag_grid struct.
*/
void readVagGrid(std::istream& is,OPM::VAG& vag_grid);
/** Function to write vag format.
*/
/* Function to write vag format.
void writeVagFormat(std::ostream& os){
using namespace std;
os << "File in the Vag grid format" << endl;
};
}
*/
/**
Function to read of some type from a stream.
\param[in] is is stream of the file.