summaryrefslogtreecommitdiffstats
path: root/l10n/it/files_sharing.po
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2012-09-231-5/+5
* [tx-robot] updated from transifexJenkins for ownCloud2012-09-221-7/+17
* [tx-robot] updated from transifexJenkins for ownCloud2012-09-011-4/+4
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-311-5/+9
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-301-3/+11
* [tx-robot] updated from transifexv4.5.0beta1Jenkins for ownCloud2012-08-291-16/+8
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-231-36/+4
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-221-6/+6
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-211-7/+19
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-161-4/+4
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-151-10/+11
* [tx-robot] updated from transifexJenkins for ownCloud2012-08-131-0/+54
.ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/**
 * @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
 *
 * @author Christoph Wurst <christoph@winzerhof-wurst.at>
 * @author Morris Jobke <hey@morrisjobke.de>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 program. If not, see <http://www.gnu.org/licenses/>.
 *
 */
namespace OC;

class Color {
	public $r;
	public $g;
	public $b;
	public function __construct($r, $g, $b) {
		$this->r = $r;
		$this->g = $g;
		$this->b = $b;
	}
}