X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FEvents%2FEvents_InfoMessage.h;h=ea19ee115017c12e0c3ed7417afb036a947ab02d;hb=f14192492e36f4febc93b2ad7ab7f866cbbdf71b;hp=715c00e599417836ceda555b2638e73f742a86c8;hpb=f396e787993889d837917065a7752e3326194361;p=modules%2Fshaper.git diff --git a/src/Events/Events_InfoMessage.h b/src/Events/Events_InfoMessage.h index 715c00e59..ea19ee115 100644 --- a/src/Events/Events_InfoMessage.h +++ b/src/Events/Events_InfoMessage.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Events_InfoMessage.hxx -// Created: 31 May 2016 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2019 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 Events_InfoMessage_H_ #define Events_InfoMessage_H_ @@ -82,6 +95,10 @@ public: /// Returns list of parameters std::list parameters() const { return myParameters; } + /// Add parameter for message string of wstring type + /// \param theParam the parameter + EVENTS_EXPORT Events_InfoMessage& arg(const std::wstring& theParam); + /// Add parameter for message string of string type /// \param theParam the parameter Events_InfoMessage& arg(const std::string& theParam) { addParameter(theParam); return *this; }