summaryrefslogtreecommitdiffstats
path: root/lib/public/image.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-07-19 11:23:47 +0200
committerBart Visscher <bartv@thisnet.nl>2013-07-19 11:23:47 +0200
commit9379cbf602362443f1084303c50234470acd15b7 (patch)
treeaf81c0450ff5547436dcffd4407bfa593c3193e8 /lib/public/image.php
parent854da1d9ca19ded3bddbd79f4c70d630148bb916 (diff)
downloadnextcloud-server-9379cbf602362443f1084303c50234470acd15b7.tar.gz
nextcloud-server-9379cbf602362443f1084303c50234470acd15b7.zip
Add OC_Image to public api
Diffstat (limited to 'lib/public/image.php')
-rw-r--r--lib/public/image.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/public/image.php b/lib/public/image.php
new file mode 100644
index 00000000000..dcecc077e2f
--- /dev/null
+++ b/lib/public/image.php
@@ -0,0 +1,29 @@
+<?php
+/**
+* ownCloud
+*
+* @author Bart Visscher
+* @copyright 2013 Bart Visscher <bartv@thisnet.nl>
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCP;
+
+/**
+ * This class provides functions to handle images
+ */
+class Image extends OC_Image {
+}