main.cpp File Reference
#include "smallmaps.h"
Go to the source code of this file.
|
Functions |
| int | main (int argc, char **argv) |
Function Documentation
| int main |
( |
int |
argc, |
|
|
char ** |
argv | |
|
) |
| | |
Definition at line 25 of file main.cpp.
00026 {
00027 QApplication a( argc, argv );
00028
00029
00030 SmallMaps f;
00031 a.setMainWidget(&f);
00032 f.setCaption("SmallMaps Application");
00033 f.show();
00034
00035 return a.exec();
00036 }