From: jpbruyere Date: Tue, 23 Aug 2016 15:49:46 +0000 (+0200) Subject: move Style.cs in src/ X-Git-Tag: v0.4~1 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=5922acf7f1331ec9b3b905250f1d4c15ff392731;p=jp%2Fcrow.git move Style.cs in src/ --- diff --git a/Crow.csproj b/Crow.csproj index 05d5dbd9..0bebc5f2 100644 --- a/Crow.csproj +++ b/Crow.csproj @@ -138,7 +138,7 @@ - + diff --git a/Style.cs b/Style.cs deleted file mode 100644 index 5824e735..00000000 --- a/Style.cs +++ /dev/null @@ -1,34 +0,0 @@ -// -// Style.cs -// -// Author: -// Jean-Philippe Bruyère -// -// Copyright (c) 2016 jp -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -using System; -using System.Collections.Generic; - -namespace Crow -{ - public class Style : Dictionary - { - public Dictionary SubStyles; - public Style () : base() - { - } - } -} - diff --git a/src/Style.cs b/src/Style.cs new file mode 100644 index 00000000..5824e735 --- /dev/null +++ b/src/Style.cs @@ -0,0 +1,34 @@ +// +// Style.cs +// +// Author: +// Jean-Philippe Bruyère +// +// Copyright (c) 2016 jp +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU 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 General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +using System; +using System.Collections.Generic; + +namespace Crow +{ + public class Style : Dictionary + { + public Dictionary SubStyles; + public Style () : base() + { + } + } +} +