Salome HOME
Removed CASCatch
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_definitions.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef  SALOMEDSCLIENT_DEF_HXX
21 #define  SALOMEDSCLIENT_DEF_HXX
22
23 #ifdef WIN32
24 # ifdef SALOMEDSCLIENT_EXPORTS
25 #  define SALOMEDSCLIENT_EXPORT __declspec( dllexport )
26 # else
27 #  define SALOMEDSCLIENT_EXPORT __declspec( dllimport )
28 # endif
29 #else
30 # define SALOMEDSCLIENT_EXPORT
31 #endif
32
33 #include <boost/shared_ptr.hpp> 
34
35 template<class T> class clt_shared_ptr: public boost::shared_ptr<T>
36 {
37 public:
38   clt_shared_ptr() {}
39   
40   template<class Y>
41     explicit clt_shared_ptr(Y * p)
42       {
43         boost::shared_ptr<T>::reset(p);
44       }
45   
46   template<class Y>
47     clt_shared_ptr(clt_shared_ptr<Y> const & r):
48       boost::shared_ptr<T>(r,boost::detail::dynamic_cast_tag())
49         {}
50   
51   template<class Y>
52     clt_shared_ptr & operator=(clt_shared_ptr<Y> const & r)
53       {
54         clt_shared_ptr<T>(r).swap(*this);
55         return *this;
56       }
57   
58   template<class Y> clt_shared_ptr& operator()(Y * p) // Y must be complete
59     {
60       if(T* pt = dynamic_cast<T*>(p))
61         boost::shared_ptr<T>::reset(pt);
62       else
63         boost::throw_exception(std::bad_cast());
64       return *this;
65     }
66     
67 };
68
69 #define _PTR(Class) clt_shared_ptr<SALOMEDSClient_##Class>
70 #define _CAST(Class, shared_ptr_Obj) dynamic_cast<SALOMEDS_##Class*>(shared_ptr_Obj.get())
71
72 struct STextColor
73 {
74     double R;
75     double G;
76     double B;
77 };
78
79 #endif