#include <Operation_Table.h>
Inheritance diagram for TAO_Binary_Search_OpTable:
Public Methods | |
TAO_Binary_Search_OpTable (void) | |
Do nothing constructor. More... | |
virtual | ~TAO_Binary_Search_OpTable (void) |
Do nothing destrctor. More... | |
virtual int | find (const char *opname, TAO_Skeleton &skelfunc, const unsigned int length=0) |
virtual int | bind (const char *opname, const TAO_Skeleton skel_ptr) |
Associate the skeleton <{skel_ptr}> with an operation named <{opname}>. Returns -1 on failure, 0 on success, 1 on duplicate. More... | |
Private Methods | |
virtual const TAO_operation_db_entry * | lookup (const char *str)=0 |
This class declares pure virtual method called 'lookup ()' which will be generated by the GPERF program. This method is used by 'bind ()' and 'find ()' methods. Subclasses will define the lookup method.
|
Do nothing constructor.
|
|
Do nothing destrctor.
|
|
Associate the skeleton <{skel_ptr}> with an operation named <{opname}>. Returns -1 on failure, 0 on success, 1 on duplicate.
Reimplemented from TAO_Operation_Table. |
|
Uses <{opname}> to look up the skeleton function and pass it back in <{skelfunc}>. Returns non-negative integer on success, or -1 on failure. Reimplemented from TAO_Operation_Table. |
|
|