bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
/Users/giersc_v/projets/zia/api/include/bref/IDisposable.h
Go to the documentation of this file.
00001 
00010 #ifndef BREF_API_IDISPOSABLE_H_
00011 #define BREF_API_IDISPOSABLE_H_
00012 
00013 namespace bref {
00014 
00021 class IDisposable
00022 {
00023 public:
00034   virtual void dispose() = 0;
00035 
00036 protected:
00048     virtual ~IDisposable() { }
00049 
00050 };
00051 
00052 } // ! bref
00053 
00054 #endif /* !BREF_API_IDISPOSABLE_H_ */
00055 
00056 
00057