summaryrefslogtreecommitdiffstats
path: root/examples/progressbar/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/progressbar/main.cpp')
-rw-r--r--examples/progressbar/main.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/progressbar/main.cpp b/examples/progressbar/main.cpp
new file mode 100644
index 000000000..73a5fbc8e
--- /dev/null
+++ b/examples/progressbar/main.cpp
@@ -0,0 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "progressbar.h"
+#include <qapplication.h>
+
+int main(int argc,char **argv)
+{
+ TQApplication a(argc,argv);
+
+ ProgressBar progressbar;
+ progressbar.setCaption("TQt Example - ProgressBar");
+ a.setMainWidget(&progressbar);
+ progressbar.show();
+
+ return a.exec();
+}