summaryrefslogtreecommitdiff
path: root/tikzit/src/common/DiamondShape.h
diff options
context:
space:
mode:
authorAlex Merry <alex.merry@cs.ox.ac.uk>2012-05-23 17:39:58 +0100
committerAlex Merry <alex.merry@cs.ox.ac.uk>2012-05-23 17:39:58 +0100
commit5dcbea7d268bf1be9548226665bce6a24e2e9d55 (patch)
treea317534bb0682eb53621c2a163bb776a2851b7c7 /tikzit/src/common/DiamondShape.h
parent33a1af9afed49f43f3577acb213ab0469035730f (diff)
Start fixing shapes in the preamble
RegularPolyShape needs fixing still, and the tikz shapes need sorting out.
Diffstat (limited to 'tikzit/src/common/DiamondShape.h')
-rw-r--r--tikzit/src/common/DiamondShape.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/tikzit/src/common/DiamondShape.h b/tikzit/src/common/DiamondShape.h
new file mode 100644
index 0000000..da5932e
--- /dev/null
+++ b/tikzit/src/common/DiamondShape.h
@@ -0,0 +1,34 @@
+//
+// RectangleShape.h
+// TikZiT
+//
+// Copyright 2012 Alex Merry
+// All rights reserved.
+//
+//
+// This file is part of TikZiT.
+//
+// TikZiT 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.
+//
+// TikZiT 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 TikZiT. If not, see <http://www.gnu.org/licenses/>.
+//
+
+#import <Foundation/Foundation.h>
+#import "Shape.h"
+
+@interface DiamondShape : Shape {
+}
+
+@end
+
+// vi:ft=objc:noet:ts=4:sts=4:sw=4
+