#include "CMTStation.h"#include <iostream>#include <string>Include dependency graph for readmtt.cc:

Go to the source code of this file.
Functions | |
| int | main () |
| int main | ( | void | ) |
Definition at line 6 of file readmtt.cc.
References CMTStation::GetData(), infilename, and CMTStation::WriteData().
00007 { 00008 CMTStation Station; 00009 string infilename; 00010 string outfilename; 00011 00012 cout << "Infile: " ; 00013 cin >> infilename; 00014 Station.GetData(infilename); 00015 00016 cout << "Outfile: "; 00017 cin >> outfilename; 00018 00019 Station.WriteData(outfilename); 00020 }
Here is the call graph for this function:

1.5.1