Introduced namespaces:
[core.git] / inc / main / interfaces / compressor / class_Compressor.php
index 19b44b968dabf58e8bc2d89d76a5bfcef007fd3a..2f2037e7c2700bfe8f39e0bbd7c12ccf99aec68f 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Compression;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An interface for compression classes
  *
@@ -46,7 +52,5 @@ interface Compressor extends FrameworkInterface {
         * @return      $string The compressor's file extension
         */
        function getCompressorExtension ();
-}
 
-// [EOF]
-?>
+}