Added Applications folder, and an empty eclipsedatadoctor application
This commit is contained in:
21
opm/parser/eclipse/Applications/EclipseDataDoctor.cpp
Normal file
21
opm/parser/eclipse/Applications/EclipseDataDoctor.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* File: EclipseDataDoctor.cpp
|
||||
* Author: kflik
|
||||
*
|
||||
* Created on August 20, 2013, 1:19 PM
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
|
||||
/*
|
||||
*
|
||||
*/
|
||||
int main(int argc, char** argv) {
|
||||
if (argc <= 1)
|
||||
{
|
||||
std::cout << "Usage: " << argv[0] << " <Filename>" << std::endl;
|
||||
exit(1);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user