source: mmcs/main.C @ 96b0c4a

matrices
Last change on this file since 96b0c4a was 96b0c4a, checked in by rboet <rboet@…>, 9 years ago

agregada comparacion de escenarios del modelo no clasico

  • Property mode set to 100644
File size: 457 bytes
Line 
1# include <QApplication>
2# include <mainwindow.H>
3
4int main(int argc, char * argv[])
5{
6    QApplication app(argc, argv);
7
8    QTextCodec * textCodec = QTextCodec::codecForName("UTF-8");
9    QTextCodec::setCodecForCStrings(textCodec);
10    QTextCodec::setCodecForLocale(textCodec);
11    QTextCodec::setCodecForTr(textCodec);
12
13    QLocale::setDefault(QLocale(QLocale::Spanish, QLocale::Venezuela));
14
15    MainWindow mw;
16
17    mw.show();
18
19    return app.exec();
20}
Note: See TracBrowser for help on using the repository browser.