File: main.cpp

package info (click to toggle)
korelib 0.0.1-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,788 kB
  • ctags: 1,918
  • sloc: sh: 8,555; cpp: 3,989; makefile: 633; ansic: 65
file content (12 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12

#include <qapp.h>
#include "modulebrowser_impl.h"

int main(int argc, char**argv)
{
    QApplication app(argc, argv);
    ModuleBrowserWidget *browser = new ModuleBrowserImpl(NULL, NULL, 0);
    app.setMainWidget(browser);
    browser->show();
    return app.exec();
}