X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTOOLSGUI%2FToolsGUI.h;h=9df7447ea186d30c8d6a3bd7daafc9453d53ec64;hb=320eb776e5eb37ade130d10326bf5cee4559ee86;hp=cb54ffdfcb0e942e8c35bf19342be3375030ad56;hpb=819fc100033457fe1582b1b9506ee0893704dce1;p=modules%2Fgui.git diff --git a/src/TOOLSGUI/ToolsGUI.h b/src/TOOLSGUI/ToolsGUI.h old mode 100755 new mode 100644 index cb54ffdfc..9df7447ea --- a/src/TOOLSGUI/ToolsGUI.h +++ b/src/TOOLSGUI/ToolsGUI.h @@ -1,52 +1,53 @@ -// SALOME TOOLSGUI : implementation of desktop "Tools" optioins +// Copyright (C) 2007-2023 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. -// -// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// 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 +// + +// SALOME TOOLSGUI : implementation of desktop "Tools" optioins // File : ToolsGUI.h // Author : Nicolas REJNERI -// Module : SALOME -// $Header$ +// +#ifndef TOOLSGUI_H +#define TOOLSGUI_H -#ifndef ToolsGUI_HeaderFile -#define ToolsGUI_HeaderFile +#ifdef WIN32 +# if defined TOOLSGUI_EXPORTS || defined ToolsGUI_EXPORTS +# define TOOLSGUI_EXPORT __declspec(dllexport) +# else +# define TOOLSGUI_EXPORT __declspec(dllimport) +# endif +#else // WIN32 +# define TOOLSGUI_EXPORT +#endif // WIN32 #include "utilities.h" - -#ifndef _Standard_HeaderFile -#include -#endif - #include "SALOMEDSClient.hxx" -class Standard_EXPORT ToolsGUI +class TOOLSGUI_EXPORT ToolsGUI { public : - static bool GetVisibility( _PTR(Study) theStudy, - _PTR(SObject) theObj, + static bool GetVisibility( _PTR(SObject) theObj, void* theId ); - static bool SetVisibility( _PTR(Study) theStudy, - const char* theEntry, + static bool SetVisibility( const char* theEntry, const bool theValue, void* theId ); }; -#endif +#endif // TOOLSGUI_H