Introduced namespaces:
[core.git] / inc / main / interfaces / visitor / class_Visitor.php
index b22ea92fdd56c6ffbf4115671a43a00acd71f05b..90abc4ad8923e29b2aef266ffebfb76af605a79f 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Visitor;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An interface for the visitor implementation
  *
@@ -22,7 +28,5 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Visitor extends FrameworkInterface {
-}
 
-// [EOF]
-?>
+}