...
Code Block |
---|
TEMPLATE = app QT += sql HEADERS = scooterwindow.h \ tietokanta.h SOURCES = main.cpp \ scooterwindow.cpp \ tietokanta.cpp |
Pääohjelma
Code Block |
---|
p, li { white-space: pre-wrap; }
#include <QtGui>#include <QtSql>
#include "tietokanta.h"
#include "scooterwindow.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Tietokanta db;
if (!db.LuoLiityntaTietokantaan()) return 1;
db.LuoTietokantaTaulu(0);
db.TaytaDemoDataa();
ScooterWindow window;
window.resize(800, 600);
window.show();
return app.exec();
}
|
...