author | Lorenzo Bettini <bettini@dsi.unifi.it> | 2007年06月08日 10:11:29 +0000 |
---|---|---|
committer | Lorenzo Bettini <bettini@dsi.unifi.it> | 2007年06月08日 10:11:29 +0000 |
commit | e9ea18fdc4f4f57b9ab8c9a4c6c182b0a1919b07 (patch) | |
tree | 92186c3de0146a0fa595e64b6a6aca1417078c0b /src/lib/langelem.cpp | |
parent | 6fcee8f6e2f2212855b5b3e3ea5db76dc5d48cc3 (diff) | |
download | src-highlite-e9ea18fdc4f4f57b9ab8c9a4c6c182b0a1919b07.tar.gz |
-rw-r--r-- | src/lib/langelem.cpp | 30 |
diff --git a/src/lib/langelem.cpp b/src/lib/langelem.cpp deleted file mode 100644 index f3b53af..0000000 --- a/src/lib/langelem.cpp +++ /dev/null @@ -1,30 +0,0 @@ -// -// C++ Implementation: %{MODULE} -// -// Description: -// -// -// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR} -// -// Copyright: See COPYING file that comes with this distribution -// -// -#include "langelem.h" - -using namespace std; - -LangElem::LangElem(const string &n) : name(n), redef(false), subst(false) -{ -} - - -LangElem::~LangElem() -{ -} - -const std::string -LangElem::toString() const -{ - return name; -} - |