]> Shamusworld >> Repos - architektonas/blobdiff - src/base/script.cpp
Major refactor of Architektonas: Jettisoning old cruft.
[architektonas] / src / base / script.cpp
diff --git a/src/base/script.cpp b/src/base/script.cpp
deleted file mode 100644 (file)
index 13381f8..0000000
+++ /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 <jlhamm@acm.org>
-//
-// 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;
-}