diff --git a/src/Base/CMakeLists.txt b/src/Base/CMakeLists.txt index 43ee4cc2bb..58c8d3c0d3 100644 --- a/src/Base/CMakeLists.txt +++ b/src/Base/CMakeLists.txt @@ -199,7 +199,6 @@ SET(FreeCADBase_CPP_SRCS ExceptionFactory.cpp Factory.cpp FileInfo.cpp - FileTemplate.cpp FutureWatcherProgress.cpp GeometryPyCXX.cpp Handle.cpp @@ -270,7 +269,6 @@ SET(FreeCADBase_HPP_SRCS ExceptionFactory.h Factory.h FileInfo.h - FileTemplate.h FutureWatcherProgress.h GeometryPyCXX.h Handle.h diff --git a/src/Base/FileTemplate.cpp b/src/Base/FileTemplate.cpp deleted file mode 100644 index 6533bd7d18..0000000000 --- a/src/Base/FileTemplate.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/*************************************************************************** - * Copyright (c) 2011 Werner Mayer * - * * - * This file is part of the FreeCAD CAx development system. * - * * - * This library is free software; you can redistribute it and/or * - * modify it under the terms of the GNU Library General Public * - * License as published by the Free Software Foundation; either * - * version 2 of the License, or (at your option) any later version. * - * * - * This library is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Library General Public License for more details. * - * * - * You should have received a copy of the GNU Library General Public * - * License along with this library; see the file COPYING.LIB. If not, * - * write to the Free Software Foundation, Inc., 59 Temple Place, * - * Suite 330, Boston, MA 02111-1307, USA * - * * - ***************************************************************************/ - - -#include "PreCompiled.h" - -#include "FileTemplate.h" - - -using namespace Base; - - -//************************************************************************** -// Construction/Destruction - -/** - * A constructor. - * A more elaborate description of the constructor. - */ -ClassTemplate::ClassTemplate() = default; - -ClassTemplate::ClassTemplate(const ClassTemplate&) = default; - -ClassTemplate::ClassTemplate(ClassTemplate&&) = default; - -/** - * A destructor. - * A more elaborate description of the destructor. - */ -ClassTemplate::~ClassTemplate() = default; - -ClassTemplate& ClassTemplate::operator=(const ClassTemplate&) = default; - -ClassTemplate& ClassTemplate::operator=(ClassTemplate&&) = default; - -//************************************************************************** -// separator for other implementation aspects - -/** - * a normal member taking two arguments and returning an integer value. - * \par - * You can use a printf like interface like: - * \code - * GetConsole().Warning("Some defects in %s, loading anyway\n",str); - * \endcode - * @param a an integer argument. - * @param s a constant character pointer. - * @see ClassTemplate() - * @see ~ClassTemplate() - * @see testMeToo() - * @see publicVar() - * @return The test results - */ -int ClassTemplate::testMe(int /*a*/, const char* /*s*/) -{ - return 0; -} - - -//************************************************************************** -//************************************************************************** -// Separator for additional classes -//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/src/Base/FileTemplate.h b/src/Base/FileTemplate.h deleted file mode 100644 index e2b61435d8..0000000000 --- a/src/Base/FileTemplate.h +++ /dev/null @@ -1,148 +0,0 @@ -/*************************************************************************** - * Copyright (c) 2011 Werner Mayer * - * * - * This file is part of the FreeCAD CAx development system. * - * * - * This library is free software; you can redistribute it and/or * - * modify it under the terms of the GNU Library General Public * - * License as published by the Free Software Foundation; either * - * version 2 of the License, or (at your option) any later version. * - * * - * This library is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Library General Public License for more details. * - * * - * You should have received a copy of the GNU Library General Public * - * License along with this library; see the file COPYING.LIB. If not, * - * write to the Free Software Foundation, Inc., 59 Temple Place, * - * Suite 330, Boston, MA 02111-1307, USA * - * * - ***************************************************************************/ - - -#ifndef BASE_FILETEMPLATE_H -#define BASE_FILETEMPLATE_H - -#include -#ifndef FC_GLOBAL_H -#include -#endif - - -namespace Base -{ - - -/** A test class. A more elaborate class description. - * Detailed description with some formatting: - * \par - * bla blablablablablablabl: - * \code - * #include - * Base::Console().Log("Stage: %d",i); - * \endcode - * \par - * another blablablablablablablablablabl: - * Text before the list - * - list item 1 - * - sub item 1 - * - sub sub item 1 - * - sub sub item 2 - * . - * The dot above ends the sub sub item list. - * More text for the first sub item - * . - * The dot above ends the first sub item. - * More text for the first list item - * - sub item 2 - * - sub item 3 - * - list item 2 - * . - * More text in the same paragraph. - * - * More text in a new paragraph. - * Also with HTML tags: - *
    - *
  • mouse events - *
      - *
    1. mouse move event - *
    2. mouse click event - * More info about the click event. - *
    3. mouse double click event - *
    - *
  • keyboard events - *
      - *
    1. key down event - *
    2. key up event - *
    - *
- * More text here. - * - * \author YOUR NAME - */ -class BaseExport ClassTemplate -{ -public: - /// Construction - ClassTemplate(); - ClassTemplate(const ClassTemplate&); - ClassTemplate(ClassTemplate&&); - /// Destruction - virtual ~ClassTemplate(); - - ClassTemplate& operator=(const ClassTemplate&); - ClassTemplate& operator=(ClassTemplate&&); - int testMe(int a, const char* s); - - /** - * An enum. - * More detailed enum description. - */ - - enum TEnum - { - TVal1, /**< enum value TVal1. */ - TVal2, /**< enum value TVal2. */ - TVal3 /**< enum value TVal3. */ - } - * enumPtr {nullptr}, /**< enum pointer. Details. */ - enumVar {TVal1}; /**< enum variable. Details. */ - - /** - * A pure virtual member. - * @see testMe() - * @param c1 the first argument. - * @param c2 the second argument. - */ - virtual void testMeToo(char c1, char c2) = 0; - - /** @name a group of methods */ - //@{ - /// I am method one - virtual void one() = 0; - /// I am method two - virtual void two() = 0; - /// I am method three - virtual void three() = 0; - //@} - - - /** - * a public variable. - * Details. - */ - int publicVar {0}; - - /** - * a function variable. - * Details. - */ - int (*handler)(int a, int b) {nullptr}; - - std::string something; -}; - -} // namespace Base - -#endif // BASE_FILETEMPLATE_H