bref
API 2014 of the Zia HTTP server.
|
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