convert.cc
Go to the documentation of this file.
00001 #include "openingBookConverter.h"
00002 
00003 int main(int argc, char **argv)
00004 {
00005   if (argc != 3)
00006     {
00007       fprintf(stderr, "Usage: %s old-file new-file\n", argv[0]);
00008       return 1;
00009     }
00010   OpeningBookConverter rw(argv[1]);
00011   // rw.write(argv[2]);
00012   rw.writeInNewEditFormat(argv[2]);
00013   return 0;
00014 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines