bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Public Member Functions | Protected Member Functions
bref::IDisposable Class Reference

Define a dispose() method, useful for resources de-allocation in a DLL. More...

#include <IDisposable.h>

Inheritance diagram for bref::IDisposable:
bref::AModule bref::Pipeline::IContentRequestHandler

List of all members.

Public Member Functions

virtual void dispose ()=0
 Dispose allocated resources by the module.

Protected Member Functions

virtual ~IDisposable ()
 Virtual destructor.

Detailed Description

Define a dispose() method, useful for resources de-allocation in a DLL.

See also:
dispose()

Constructor & Destructor Documentation

virtual bref::IDisposable::~IDisposable ( ) [inline, protected, virtual]

Virtual destructor.

The delete() operator should not be called, please refer to the dispose() method.

Note:
The destructor is protected in order to disable the call to the delete() operator from the server code.
See also:
dispose()

Member Function Documentation

virtual void bref::IDisposable::dispose ( ) [pure virtual]

Dispose allocated resources by the module.

Please refer to:

Note:
This is often represented by a simple:
 delete this; 

The documentation for this class was generated from the following file: