summaryrefslogtreecommitdiffstats
path: root/3rdparty/Sabre/VObject/Element.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/Sabre/VObject/Element.php')
-rwxr-xr-x3rdparty/Sabre/VObject/Element.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/3rdparty/Sabre/VObject/Element.php b/3rdparty/Sabre/VObject/Element.php
new file mode 100755
index 00000000000..e20ff0b353c
--- /dev/null
+++ b/3rdparty/Sabre/VObject/Element.php
@@ -0,0 +1,16 @@
+<?php
+
+/**
+ * Base class for all elements
+ *
+ * @package Sabre
+ * @subpackage VObject
+ * @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
+ * @author Evert Pot (http://www.rooftopsolutions.nl/)
+ * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
+ */
+abstract class Sabre_VObject_Element extends Sabre_VObject_Node {
+
+ public $parent = null;
+
+}