Functions

main.cpp File Reference

#include <QtGui/QApplication>
#include "tableeditor.h"
#include "projecteditor.h"
#include "calibrationeditor.h"
Include dependency graph for tableeditor/main.cpp:

Functions

int main (int argc, char *argv[])

Function Documentation

int main ( int  argc,
char *  argv[] 
)

{
    QApplication a(argc, argv);
    //TableEditor w("tbl_projects");
    UserEditor p;
    SensorEditor s;
    CalibrationEditor c;
    p.show();
    s.show();
    c.show();
    //w.show();
    return a.exec();
}