mirror of https://github.com/KLayout/klayout.git
To try suggested patch "patch0.patch.txt" provided by Matthias.
This refs #8.
This commit is contained in:
parent
047da281dd
commit
0f14c13860
|
|
@ -52,6 +52,12 @@ public:
|
||||||
// .. nothing yet ..
|
// .. nothing yet ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event_function (const event_function &other)
|
||||||
|
: m_m (other.m_m)
|
||||||
|
{
|
||||||
|
// .. nothing yet ..
|
||||||
|
}
|
||||||
|
|
||||||
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
||||||
{
|
{
|
||||||
T *t = dynamic_cast<T *> (object);
|
T *t = dynamic_cast<T *> (object);
|
||||||
|
|
@ -81,6 +87,12 @@ public:
|
||||||
// .. nothing yet ..
|
// .. nothing yet ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event_function_with_data (const event_function_with_data &other)
|
||||||
|
: m_m (other.m_m), m_d (other.m_d)
|
||||||
|
{
|
||||||
|
// .. nothing yet ..
|
||||||
|
}
|
||||||
|
|
||||||
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
||||||
{
|
{
|
||||||
T *t = dynamic_cast<T *> (object);
|
T *t = dynamic_cast<T *> (object);
|
||||||
|
|
@ -111,6 +123,12 @@ public:
|
||||||
// .. nothing yet ..
|
// .. nothing yet ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generic_event_function (const generic_event_function &other)
|
||||||
|
: m_m (other.m_m)
|
||||||
|
{
|
||||||
|
// .. nothing yet ..
|
||||||
|
}
|
||||||
|
|
||||||
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
||||||
{
|
{
|
||||||
T *t = dynamic_cast<T *> (object);
|
T *t = dynamic_cast<T *> (object);
|
||||||
|
|
@ -141,6 +159,12 @@ public:
|
||||||
// .. nothing yet ..
|
// .. nothing yet ..
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generic_event_function_with_data (const generic_event_function_with_data &other)
|
||||||
|
: m_m (other.m_m), m_d (other.m_d)
|
||||||
|
{
|
||||||
|
// .. nothing yet ..
|
||||||
|
}
|
||||||
|
|
||||||
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
virtual void call (_JOIN(tl::Object *object, _CALLARGLIST))
|
||||||
{
|
{
|
||||||
T *t = dynamic_cast<T *> (object);
|
T *t = dynamic_cast<T *> (object);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue