diff options
author | Pixel <pixel@nobis-crew.org> | 2009-05-15 18:22:00 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-05-15 18:22:00 -0700 |
commit | e20675412a5d4aadd861517b40ca200d9b605225 (patch) | |
tree | a36832a68907811bb65e3c95ed64c5d53d3379cb /include | |
parent | 1bd9d06b327531887f663d9c0222be6091ad65a9 (diff) |
Making UCL optionnal.
Diffstat (limited to 'include')
-rw-r--r-- | include/Handle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Handle.h b/include/Handle.h index 64b4243..894ab8e 100644 --- a/include/Handle.h +++ b/include/Handle.h @@ -71,8 +71,10 @@ class Handle : public Base { static int GetNbHandles(); static int zlib_inflate(Handle * in, Handle * out) throw (GeneralException); static int zlib_deflate(Handle * in, Handle * out) throw (GeneralException); +#ifdef HAVE_UCL static int ucl_compress(Handle * in, Handle * out) throw (GeneralException); static int ucl_decompress(Handle * in, Handle * out) throw (GeneralException); +#endif protected: Handle(int h); int GetHandle() const; |