source: mmcs/main.C @ 8daa049

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

Calculos de Ma completos, encadenamientos funcionales

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