File: main.cpp

package info (click to toggle)
gpgkeys 0.3.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 276 kB
  • ctags: 241
  • sloc: cpp: 2,007; makefile: 53
file content (31 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * GPG Keys 
 * main.cpp
 * (c) 2001 Peter Mathiasson <peter@mathiasson.nu>
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2, as
 * published by the Free Software Foundation
 */

#include <qapp.h>
#include "cmainwindow.h"
#include "cgpgproc.h"

CGPGProc *gnupgProc;

/* --------------------------------------------------------------------------------- */

int main( int argc, char *argv[] )
{
    QApplication app( argc, argv );

    CMainWindow wndMain;
    wndMain.show();

    app.setMainWidget( &wndMain );
    return app.exec();
}

/* --------------------------------------------------------------------------------- */