X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Fscript.cpp;fp=src%2Fbase%2Fscript.cpp;h=0000000000000000000000000000000000000000;hb=9f6ad3fe0b9cb30115a5d38e8af3aebed0d70c08;hp=13381f8b60ea46ae27b30af1c66b7208e6347785;hpb=43c13b052d069ba435277d93867380d00c04931f;p=architektonas diff --git a/src/base/script.cpp b/src/base/script.cpp deleted file mode 100644 index 13381f8..0000000 --- a/src/base/script.cpp +++ /dev/null @@ -1,37 +0,0 @@ -// script.cpp -// -// Part of the Architektonas Project -// Originally part of QCad Community Edition by Andrew Mustun -// Extensively rewritten and refactored by James L. Hammons -// Portions copyright (C) 2001-2003 RibbonSoft -// Copyright (C) 2010 Underground Software -// See the README and GPLv2 files for licensing and warranty information -// -// JLH = James L. Hammons -// -// Who When What -// --- ---------- ----------------------------------------------------------- -// JLH 06/02/2010 Added this text. :-) -// - -#include "script.h" - -/** - * Constructor. - */ -Script::Script(const QString & name, const QString & /*path*/) -{ - this->name = name; -} - -/** @return the name of this script. */ -QString Script::getName() const -{ - return name; -} - -/** @return the full path and file name of this script. */ -QString Script::getPath() const -{ - return path; -}