summaryrefslogtreecommitdiff
path: root/src/Source.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Source.cxx')
-rw-r--r--src/Source.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Source.cxx b/src/Source.cxx
new file mode 100644
index 0000000..871e796
--- /dev/null
+++ b/src/Source.cxx
@@ -0,0 +1,22 @@
+namespace PluggIt {
+
+class Source
+{
+ protected class Config {
+ protected Config() {}
+ };
+
+
+ protected View *m_view;
+ protected const Config &m_config;
+
+ public Source( View *view, const Config &config ) : m_config(config) {
+ m_view = view;
+ }
+
+
+ public virtual int MainLoop() = 0;
+};
+
+}
+