mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
rewrote oracle importer
This commit is contained in:
parent
af0d72c0e6
commit
ae6803f9f2
10 changed files with 535 additions and 452 deletions
|
|
@ -1,12 +1,16 @@
|
|||
#include <QApplication>
|
||||
#include <QTextCodec>
|
||||
#include "oracleimporter.h"
|
||||
#include "window_main.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
OracleImporter importer("../oracle");
|
||||
importer.downloadNextFile();
|
||||
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
|
||||
|
||||
WindowMain wnd;
|
||||
wnd.show();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue