tesseract  3.03
_TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 > Class Template Reference

#include <tesscallback.h>

Inheritance diagram for _TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >:
TessCallback1< A1 >

List of all members.

Public Types

typedef TessCallback1< A1 > base
typedef void(* FunctionSignature )(P1, P2, P3, A1)

Public Member Functions

 _TessFunctionResultCallback_3_1 (FunctionSignature function, P1 p1, P2 p2, P3 p3)
virtual void Run (A1 a1)

Detailed Description

template<bool del, class P1, class P2, class P3, class A1>
class _TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >

Definition at line 2574 of file tesscallback.h.


Member Typedef Documentation

template<bool del, class P1 , class P2 , class P3 , class A1 >
typedef TessCallback1<A1> _TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >::base

Definition at line 2576 of file tesscallback.h.

template<bool del, class P1 , class P2 , class P3 , class A1 >
typedef void(* _TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >::FunctionSignature)(P1, P2, P3, A1)

Definition at line 2577 of file tesscallback.h.


Constructor & Destructor Documentation

template<bool del, class P1 , class P2 , class P3 , class A1 >
_TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >::_TessFunctionResultCallback_3_1 ( FunctionSignature  function,
P1  p1,
P2  p2,
P3  p3 
) [inline]

Definition at line 2586 of file tesscallback.h.

    : function_(function),      p1_(p1),      p2_(p2),      p3_(p3) { }

Member Function Documentation

template<bool del, class P1 , class P2 , class P3 , class A1 >
virtual void _TessFunctionResultCallback_3_1< del, void, P1, P2, P3, A1 >::Run ( A1  a1) [inline, virtual]

Implements TessCallback1< A1 >.

Definition at line 2589 of file tesscallback.h.

                          {
    if (!del) {
      (*function_)(p1_,p2_,p3_,a1);
    } else {
      (*function_)(p1_,p2_,p3_,a1);
      //  zero out the pointer to ensure segfault if used again
      function_ = NULL;
      delete this;
    }
  }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines