forked from qt-creator/qt-creator
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			C++
		
	
	
	
	
	
|   | #include <QtGui/QApplication>
 | ||
|  | #include "addressbook.h"
 | ||
|  | 
 | ||
|  | int main(int argc, char *argv[]) | ||
|  | { | ||
|  |     QApplication a(argc, argv); | ||
|  |     AddressBook w; | ||
|  |     w.show(); | ||
|  |     return a.exec(); | ||
|  | } |