##// END OF EJS Templates
Use qFuzzyIsNull to compare (in)equality of real values
Use qFuzzyIsNull to compare (in)equality of real values

File last commit:

r486:7ab45bf9f776
r768:dd9d32f835df
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}