Initial import of current development status
[shipsimu.git] / ship-simu / inc / classes / interfaces / debug / class_Debugger.php
diff --git a/ship-simu/inc/classes/interfaces/debug/class_Debugger.php b/ship-simu/inc/classes/interfaces/debug/class_Debugger.php
new file mode 100644 (file)
index 0000000..8ba621d
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+/**
+ * An interface for debugger classes
+ *
+ * @author     Roland Haeder <roland __NOSPAM__ [at] __REMOVE_ME__ mxchange [dot] org>
+ * @version    0.1
+ */
+interface Debugger extends FrameworkInterface {
+       /**
+        * Outputs the given data
+        *
+        * @param               $output Debug text for output
+        * @return      void
+        */
+       function outputStream ($output);
+}
+
+//
+?>