-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZTBridge.h
52 lines (41 loc) · 1.03 KB
/
ZTBridge.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class ZTCallBridge : public boost::static_visitor<ZTvarp>
{
public:
ZTmfp zmfp;
ZTvarS InpArg;
typedef ZTvarp (ZObjP::*ztioiFun)(ZTvarS);
ZTCallBridge (ZTmfp mfp ,ZTvarS ip):zmfp(mfp),InpArg(ip)
{}
//template<class V,template <typename,typename> class T>
ZTvarp operator()(ZObject<ZTOInstance,CallOps> &a) const
{
ztioiFun v=reinterpret_cast<ztioiFun>(zmfp);
return (a.cont->val->*v)(InpArg);
}
template<class S,class S1,template <typename,typename> class T>
ZTvarp operator()(T<S,S1> &a) const
{
//Fire Exception
return NULL;
}
};
class ZTDataBridge : public boost::static_visitor<ZTvarp>
{
public:
ZMemD ztm;
typedef ZTvar ZObjP::*ztdata;
ZTDataBridge (ZMemD m ):ztm(m)
{}
//template<class V,template <typename,typename> class T>
ZTvarp operator()(ZObject<ZTOInstance,CallOps> &a) const
{
ztdata v=reinterpret_cast<ztdata>(ztm);
return &(a.cont->val->*v) ;
}
template<class S,class S1,template <typename,typename> class T>
ZTvarp operator()(T<S,S1> &a) const
{
//Fire Exception
return NULL;
}
};