##// END OF EJS Templates
Function added to the plugin to store packets in CSV format.
Function added to the plugin to store packets in CSV format.

File last commit:

r23:23c09fe5a8b6 default
r55:4ea52012da18 default
Show More
main.cpp
12 lines | 204 B | text/x-c | CppLexer
#include <QtGui/QApplication>
#include "mainwindow.h"
#include <lfrxmlwriter.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}