summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2009-07-02 14:45:52 -0400
committerKohei Yoshida <kyoshida@novell.com>2009-07-02 14:45:52 -0400
commit59728492878a37da51823139e6f42df01c8e40d9 (patch)
treea9c9416e296f128919af9e37930afcd7184743d5
parent44e99410245e8baf7caceddb5e9860a1d0a1dd59 (diff)
Empty class with ctor, and the main function so that the source will
compile.
-rw-r--r--inc/dpsource.hxx6
-rw-r--r--source/dpsource.cxx10
2 files changed, 14 insertions, 2 deletions
diff --git a/inc/dpsource.hxx b/inc/dpsource.hxx
index 577d731..108da0d 100644
--- a/inc/dpsource.hxx
+++ b/inc/dpsource.hxx
@@ -3,7 +3,11 @@
namespace dpsource {
-
+class SourceProvider
+{
+public:
+ SourceProvider();
+};
}
diff --git a/source/dpsource.cxx b/source/dpsource.cxx
index 8392fad..875e43c 100644
--- a/source/dpsource.cxx
+++ b/source/dpsource.cxx
@@ -2,9 +2,17 @@
#include "dpsource.hxx"
-namespace dpsouce {
+namespace dpsource {
+SourceProvider::SourceProvider()
+{
+}
+}
+int main()
+{
}
+
+