aboutsummaryrefslogtreecommitdiff
path: root/pgsql/template/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'pgsql/template/driver.cxx')
-rw-r--r--pgsql/template/driver.cxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/pgsql/template/driver.cxx b/pgsql/template/driver.cxx
new file mode 100644
index 0000000..1ebb890
--- /dev/null
+++ b/pgsql/template/driver.cxx
@@ -0,0 +1,26 @@
+// file : pgsql/template/driver.cxx
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// PLACE TEST DESCRIPTION HERE
+//
+
+#include <memory> // std::auto_ptr
+#include <cassert>
+#include <iostream>
+
+using namespace std;
+
+int
+main ()
+{
+ try
+ {
+ cout << "test 001" << endl;
+ }
+ catch (...)
+ {
+ return 1;
+ }
+}