summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/main.cpp')
-rw-r--r--qtjava/javalib/main.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/qtjava/javalib/main.cpp b/qtjava/javalib/main.cpp
new file mode 100644
index 00000000..e7d508bf
--- /dev/null
+++ b/qtjava/javalib/main.cpp
@@ -0,0 +1,28 @@
+/***************************************************************************
+ main.cpp - description
+ -------------------
+ begin : Sat Nov 11 16:18:00 2000
+ copyright : (C) 2000-2004 Lost Highway Ltd. All rights reserved.
+ email : Lost_Highway@tipitina.demon.co.uk
+ author : Richard Dale
+ ***************************************************************************/
+
+/***************************************************************************
+ * (C) 2000-2004 Lost Highway Ltd. All rights reserved. *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU Library General Public License as *
+ * published by the Free Software Foundation; either version 2 of the *
+ * License, or (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#include <stdio.h>
+
+int
+main(int argc, char * argv[]) {
+ (void) argc;
+ (void) argv;
+ (void) printf("Introducing Qt 3.2.3 Java...\n");
+ return 0;
+}