|
tesseract 3.04.01
|
#include <tesscallback.h>
Public Types | |
| typedef TessResultCallback5< R, A1, A2, A3, A4, A5 > | base |
| typedef R(T::* | MemberSignature )(P1, P2, P3, P4, A1, A2, A3, A4, A5) const |
Public Member Functions | |
| _ConstTessMemberResultCallback_4_5 (const T *object, MemberSignature member, P1 p1, P2 p2, P3 p3, P4 p4) | |
| virtual R | Run (A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) |
Definition at line 9007 of file tesscallback.h.
| typedef TessResultCallback5<R,A1,A2,A3,A4,A5> _ConstTessMemberResultCallback_4_5< del, R, T, P1, P2, P3, P4, A1, A2, A3, A4, A5 >::base |
Definition at line 9009 of file tesscallback.h.
| typedef R(T::* _ConstTessMemberResultCallback_4_5< del, R, T, P1, P2, P3, P4, A1, A2, A3, A4, A5 >::MemberSignature)(P1, P2, P3, P4, A1, A2, A3, A4, A5) const |
Definition at line 9010 of file tesscallback.h.
| _ConstTessMemberResultCallback_4_5< del, R, T, P1, P2, P3, P4, A1, A2, A3, A4, A5 >::_ConstTessMemberResultCallback_4_5 | ( | const T * | object, |
| MemberSignature | member, | ||
| P1 | p1, | ||
| P2 | p2, | ||
| P3 | p3, | ||
| P4 | p4 | ||
| ) | [inline] |
Definition at line 9021 of file tesscallback.h.
: object_(object),
member_(member), p1_(p1), p2_(p2), p3_(p3), p4_(p4) { }
| virtual R _ConstTessMemberResultCallback_4_5< del, R, T, P1, P2, P3, P4, A1, A2, A3, A4, A5 >::Run | ( | A1 | a1, |
| A2 | a2, | ||
| A3 | a3, | ||
| A4 | a4, | ||
| A5 | a5 | ||
| ) | [inline, virtual] |
Implements TessResultCallback5< R, A1, A2, A3, A4, A5 >.
Definition at line 9025 of file tesscallback.h.
{
if (!del) {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
return result;
} else {
R result = (object_->*member_)(p1_,p2_,p3_,p4_,a1,a2,a3,a4,a5);
// zero out the pointer to ensure segfault if used again
member_ = NULL;
delete this;
return result;
}
}