76个qt 例子。 非常适合学习qt编程

源代码在线查看: main.cpp

软件大小: 8308 K
上传用户: lhf123290507
关键词: qt编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				/****************************************************************************
				** $Id: qt/main.cpp   3.3.1   edited May 27 2003 $
				**
				** Copyright (C) 1992-2002 Trolltech AS.  All rights reserved.
				**
				** This file is part of an example program for Qt.  This example
				** program may be used, distributed and modified without limitation.
				**
				*****************************************************************************/
				
				#include 
				#include 
				#include 
				#include 
				#include "../connection.h"
				
				int main( int argc, char *argv[] )
				{
				    QApplication app( argc, argv );
				
				    if ( createConnections() ) {
					QSqlCursor staffCursor( "staff" );
					QDataTable *staffTable = new QDataTable( &staffCursor, TRUE );
					app.setMainWidget( staffTable );
					staffTable->refresh();
					staffTable->show();
				
					return app.exec();
				    }
				
				    return 0;
				}
							

相关资源