template< class T > class TreeWalkCallback
{
public:
//DESTRUCTOR--------------------------------------------------------
virtual ~TreeWalkCallback(){}
//METHODS-----------------------------------------------------------
virtual bool tw_callback(const T * path)=0;
//GETTER METHODS----------------------------------------------------
//SETTER METHODS----------------------------------------------------
};
Methods:
Methods
tw_callback
...
Signature:
bool tw_callback(const T *path)
Parameters:
| const T * | path | [IN] | The path (as null-terminated string). |
Return value:---