/**************************************************************************** ** $RCSfile: consult_main_cpp.html,v $ $Date: 2008/07/16 14:59:02 $ ** ** Copyright ( C ) 2002-2006 Integrated Computer Solutions, Inc. ** All rights reserved. ** ** This file is part of an example program for QicsTable. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include <QApplication> #include "consultant.h" int main (int argc, char *argv[]) { QApplication app(argc, argv); Consultant *consultant = new Consultant(); consultant->show(); return app.exec(); }