]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionpolylinedelbetween.cpp
Phase two of adding polyline functionality...
[architektonas] / src / actions / actionpolylinedelbetween.cpp
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..09b096ae8415a6e06dd289f3d4e93a82482694ec 100644 (file)
@@ -0,0 +1,35 @@
+// actionpolylinedelbetween.cpp
+//
+// Part of the Architektonas Project
+// by James L. Hammons
+// Copyright (C) 2010 Underground Software
+// See the README and GPLv2 files for licensing and warranty information
+//
+// JLH = James L. Hammons <jlhamm@acm.org>
+//
+// Who  When        What
+// ---  ----------  -----------------------------------------------------------
+// JLH  09/13/2010  Created this file. :-)
+//
+
+#include "actionpolylinedelbetween.h"
+
+#include "debug.h"
+#include "dialogfactory.h"
+#include "graphicview.h"
+#include "polyline.h"
+
+ActionPolylineDelBetween::ActionPolylineDelBetween(EntityContainer & container,
+       GraphicView & graphicView):
+       ActionInterface("Draw polyline", container, graphicView)
+{
+//     vertex = Vector(false);
+       polyline = NULL;
+}
+
+ActionPolylineDelBetween::~ActionPolylineDelBetween()
+{
+       if (polyline)
+               delete polyline;
+}
+