/**************************************************************************** * * File: main.cpp * * Description: main file for OPIE Euroconv aapp * * * Authors: Eric Santonacci * * Requirements: Qt * * $Id$ * ***************************************************************************/ #include #include //#include #include "calcdisplay.h" #include "calckeypad.h" int main( int argc, char **argv ) { QPEApplication app( argc, argv ); QVBox *layout = new QVBox(0, "fond"); LCDDisplay lcd (layout, "lcd"); KeyPad num(&lcd, layout, "keypad"); app.setMainWidget(layout); layout->setCaption("Euroconv"); layout->showMaximized (); layout->show(); return app.exec(); }