summaryrefslogtreecommitdiffstats
path: root/src/structs/color.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs/color.php')
-rw-r--r--src/structs/color.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/structs/color.php b/src/structs/color.php
new file mode 100644
index 0000000..049610a
--- /dev/null
+++ b/src/structs/color.php
@@ -0,0 +1,39 @@
+<?php
+
+class ezcGraphColor
+{
+ public $red = 0;
+
+ public $green = 0;
+
+ public $blue = 0;
+
+ public $alpha = 0;
+
+ /**
+ * Empty constructor
+ */
+ public function __construct()
+ {
+ }
+
+ /**
+ * Throws a BasePropertyNotFound exception.
+ */
+ public function __set( $name, $value )
+ {
+ throw new ezcBasePropertyNotFoundException( $name );
+ }
+
+ /**
+ * Throws a BasePropertyNotFound exception.
+ */
+ public function __get( $name )
+ {
+ throw new ezcBasePropertyNotFoundException( $name );
+ }
+}
+
+?
+
+?>
OpenPOWER on IntegriCloud