You are here: C++ Support Classes > dtSearch Namespace > Classes > DOutputBase Class > DOutputBase::Execute Method
Close
dtSearch Text Retrieval Engine Programmer's Reference
DOutputBase::Execute Method

Called to execute a job.

Syntax
C++
void Execute() override;

A derived class should call the base class's Execute method to carry out the job. Example:

void CMyIndexJob::Execute() { ... do things to get ready for indexing ... DIndexJob::Execute ... do things after indexing is done ... }