X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Factionpolylinetrim.cpp;h=ea12e6fd9156489aed1d0b45d167467776d60b35;hb=e1d1cacbb43055988d0d9db632fdf05c0bea9543;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;p=architektonas diff --git a/src/actions/actionpolylinetrim.cpp b/src/actions/actionpolylinetrim.cpp index e69de29..ea12e6f 100644 --- a/src/actions/actionpolylinetrim.cpp +++ b/src/actions/actionpolylinetrim.cpp @@ -0,0 +1,35 @@ +// actionpolylinetrim.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 +// +// Who When What +// --- ---------- ----------------------------------------------------------- +// JLH 09/13/2010 Created this file. :-) +// + +#include "actionpolylinetrim.h" + +#include "debug.h" +#include "dialogfactory.h" +#include "graphicview.h" +#include "polyline.h" + +ActionPolylineTrim::ActionPolylineTrim(EntityContainer & container, + GraphicView & graphicView): + ActionInterface("Draw polyline", container, graphicView) +{ +// vertex = Vector(false); + polyline = NULL; +} + +ActionPolylineTrim::~ActionPolylineTrim() +{ + if (polyline) + delete polyline; +} +