~ace17/abstract/master

« back to all changes in this revision

Viewing changes to src/exe_analyzer_pe.d

  • Committer: Sebastien Alaiwan
  • Date: 2014-12-02 19:31:18 UTC
  • Revision ID: sebastien.alaiwan@gmail.com-20141202193118-hupzlt6zijc6p0e1
Rename files: model instances are prefixed by 'model_'

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
import std.stdio;
25
25
import std.string;
26
 
import pe;
 
26
import model_pe;
27
27
import model;
28
28
import analyzer;
29
29
 
30
30
int main(string[] args)
31
31
{
32
 
  runAnalyzer(pe.Model, args);
 
32
  runAnalyzer(model_pe.Model(), args);
33
33
  return 0;
34
34
}
35
35