~maxoufox/bindiff/trunk

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: maxoufox Fridriech
  • Date: 2017-05-19 15:34:48 UTC
  • Revision ID: maxoufox@hotmail.fr-20170519153448-5vo2gdosdydwat6b
Init commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "rom.hpp"
 
2
 
 
3
using namespace std;
 
4
 
 
5
int main() {
 
6
        const string file("main.cpp");
 
7
        
 
8
        ifstream file_stream(file.c_str(), ios::in|ios::binary|ios::ate|ios::app );
 
9
        
 
10
        cout << "END!" << endl;
 
11
        return 0;
 
12
}