Salome HOME
Copyrights update
[modules/gui.git] / src / SUIT / SUIT_DataOwner.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/
18 //
19 #ifndef SUIT_DATAOWNER_H
20 #define SUIT_DATAOWNER_H
21
22 #include "SUIT_SmartPtr.h"
23
24 #include <qvaluelist.h>
25
26 #ifdef WIN32
27 #pragma warning( disable:4275 )
28 #endif
29
30 class SUIT_EXPORT SUIT_DataOwner : public RefCount 
31 {
32 public:
33   SUIT_DataOwner();//!< constructor
34   virtual ~SUIT_DataOwner();//!< destructor
35   //! compare function
36   virtual bool isEqual( const SUIT_DataOwner& ) const = 0;
37 };
38
39 /*! \typedef SUIT_DataOwnerPtr
40  * Define smart pointer for SUIT_DataOwner object
41  */
42 typedef SMART(SUIT_DataOwner) SUIT_DataOwnerPtr;
43
44 /*! Comparing two SUIT_DataOwnerPtr objects.*/
45 bool operator==( const SUIT_DataOwnerPtr&, const SUIT_DataOwnerPtr& );
46
47 /*! \class QValueList
48  *  \brief For more documentation see <a href="http://doc.trolltech.com">QT documentation</a>.
49  * QT class
50  */
51 /*! \class SUIT_DataOwnerPtrList
52  * \brief Manage list of SUIT_DataOwnerPtr.
53  */
54 class SUIT_EXPORT SUIT_DataOwnerPtrList : public QValueList<SUIT_DataOwnerPtr> 
55 {
56 public:
57   SUIT_DataOwnerPtrList();                         //!< constructor
58   SUIT_DataOwnerPtrList( const bool skipAllEqual );//!< constructor
59   SUIT_DataOwnerPtrList( const SUIT_DataOwnerPtrList& l );                         //!< copy constructor
60   SUIT_DataOwnerPtrList( const SUIT_DataOwnerPtrList& l, const bool skipAllEqual );//!< copy constructor
61 #ifndef QT_NO_STL
62   SUIT_DataOwnerPtrList( const std::list<SUIT_DataOwnerPtr>& l );                         //!< copy constructor for STL list
63   SUIT_DataOwnerPtrList( const std::list<SUIT_DataOwnerPtr>& l, const bool skipAllEqual );//!< copy constructor for STL list
64 #endif
65
66   iterator append      ( const SUIT_DataOwnerPtr& x );//!< append function
67
68 private:
69   // hide this methods: only append() should be used to add items to the list
70   iterator prepend( const SUIT_DataOwnerPtr& x );//!< hide method
71   iterator insert ( iterator it, const SUIT_DataOwnerPtr& x );//!< hide method
72   void push_front ( const SUIT_DataOwnerPtr& x );//!< hide method
73   void push_back  ( const SUIT_DataOwnerPtr& x );//!< hide method
74 private:
75   bool mySkipEqual;
76 };
77
78 #ifdef WIN32
79 #pragma warning( default:4275 )
80 #endif
81
82 #endif