X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_PointerMessage.h;h=d45f8ef8af9ac32f80ec2854fecf8f6fe9814bed;hb=50a8df0c6a66da8067b16155e5ae39f8f26a7ebc;hp=0e3c726caa094e05e0392032a357952e35b2fafb;hpb=ae347a8a8014a15245199a3bb603413628e3f7d4;p=modules%2Fshaper.git diff --git a/src/Config/Config_PointerMessage.h b/src/Config/Config_PointerMessage.h index 0e3c726ca..d45f8ef8a 100644 --- a/src/Config/Config_PointerMessage.h +++ b/src/Config/Config_PointerMessage.h @@ -1,9 +1,21 @@ -/* - * Config_PointerMessage.h - * - * Created on: Mar 21, 2014 - * Author: sbh - */ +// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 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 +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef PARTSET_MESSAGE_H_ #define PARTSET_MESSAGE_H_ @@ -11,20 +23,25 @@ #include #include -/* - * A general class to pass pointers over the event loop. +/*! + * \class Config_PointerMessage + * \ingroup Config + * \brief A general class to pass pointers over the event loop. */ -class CONFIG_EXPORT Config_PointerMessage: public Events_Message +class CONFIG_EXPORT Config_PointerMessage : public Events_Message { -public: + public: + /// Constructor Config_PointerMessage(const Events_ID theId, const void* theParent = 0); virtual ~Config_PointerMessage(); + /// Returns pointer to an object void* pointer() const; + /// Sets pointer to an object void setPointer(void* pointer); -private: - void* myPointer; + private: + void* myPointer; ///< Pointer to an object }; #endif /* PARTSET_MESSAGE_H_ */