mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
87344de7d4
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
16 lines
572 B
C++
16 lines
572 B
C++
/****************************************************************************
|
|
***************************Author: Agnit Sarkar******************************
|
|
**************************CopyRight: April 2009******************************
|
|
********************* Email: agnitsarkar@yahoo.co.uk*************************
|
|
****************************************************************************/
|
|
#include <QtGui/QApplication>
|
|
#include "stegosaurus.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
StegoSaurus w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|