-rw-r--r-- | src/lib/stringdef.cpp | 28 |
diff --git a/src/lib/stringdef.cpp b/src/lib/stringdef.cpp deleted file mode 100644 index e1ba02f..0000000 --- a/src/lib/stringdef.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// -// C++ Implementation: %{MODULE} -// -// Description: -// -// -// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR} -// -// Copyright: See COPYING file that comes with this distribution -// -// -#include "stringdef.h" - -StringDef::StringDef(const char *s) : - stringdef(s) -{ -} - -StringDef::StringDef(const std::string &s) : - stringdef(s) -{ -} - -StringDef::~StringDef() -{ -} - - |