Salome HOME
Updated copyright comment
[modules/gui.git] / src / QDS / QDS_CheckBox.h
index 9be0dde19f4d7ef7a38fe6da34509df46836efd3..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.
@@ -16,6 +19,7 @@
 //
 // 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& );
 };