Salome HOME
Updated copyright comment
[modules/gui.git] / src / QDS / QDS_CheckBox.h
index 8ced09f308986e0f9d3dc8df8a5cb9ad9db761ea..3904dd3b95ec22b9c4266076a5e8cb565deae978 100644 (file)
@@ -1,11 +1,14 @@
-// Copyright (C) 2005  CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA R&D
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  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.
+// 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
+// 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.
@@ -14,8 +17,9 @@
 // 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/
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 #ifndef QDS_CHECKBOX_H
 #define QDS_CHECKBOX_H
 
@@ -28,12 +32,14 @@ class QDS_EXPORT QDS_CheckBox : public QDS_Datum
   Q_OBJECT
 
 public:
-  QDS_CheckBox( const QString&, QWidget* = 0, const int = All, const QString& = QString::null );
+  QDS_CheckBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() );
   virtual ~QDS_CheckBox();
 
   bool                 isChecked() const;
   void                 setChecked( const bool );
 
+  virtual QString      getString() const;
+
   virtual void         clear();
 
 signals:
@@ -47,7 +53,6 @@ protected:
   QCheckBox*           checkBox() const;
   virtual QWidget*     createControl( QWidget* );
 
-  virtual QString      getString() const;
   virtual void         setString( const QString& );
 };