aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-10-24 16:42:22 +0000
committerMike Buland <eichlan@xagasoft.com>2011-10-24 16:42:22 +0000
commit2f163b90c745491a995dfdbe78464c64a536ec54 (patch)
treecd2ec92d1f96b0b2edbb979d45fa7beea7127192 /src
parent9cb2695ad318dcda83a353b03c21b4fd71d0f9d6 (diff)
downloadlibbu++-2f163b90c745491a995dfdbe78464c64a536ec54.tar.gz
libbu++-2f163b90c745491a995dfdbe78464c64a536ec54.tar.bz2
libbu++-2f163b90c745491a995dfdbe78464c64a536ec54.tar.xz
libbu++-2f163b90c745491a995dfdbe78464c64a536ec54.zip
Added some more docs.
Diffstat (limited to 'src')
-rw-r--r--src/bzip2.h2
-rw-r--r--src/deflate.h4
-rw-r--r--src/doxy/groups.dox5
-rw-r--r--src/lzma.h3
4 files changed, 14 insertions, 0 deletions
diff --git a/src/bzip2.h b/src/bzip2.h
index 0b5140d..9a8d172 100644
--- a/src/bzip2.h
+++ b/src/bzip2.h
@@ -15,8 +15,10 @@
15namespace Bu 15namespace Bu
16{ 16{
17 /** 17 /**
18 * Provides BZip2 type compression and decompression.
18 * 19 *
19 *@ingroup Streams 20 *@ingroup Streams
21 *@ingroup Compression
20 */ 22 */
21 class BZip2 : public Bu::Filter 23 class BZip2 : public Bu::Filter
22 { 24 {
diff --git a/src/deflate.h b/src/deflate.h
index 20d609a..34e8657 100644
--- a/src/deflate.h
+++ b/src/deflate.h
@@ -15,8 +15,12 @@
15namespace Bu 15namespace Bu
16{ 16{
17 /** 17 /**
18 * Provides Deflate (LZ77) support via zlib. This provides zlib, raw, and
19 * gzip stream types. By default it will autodetect the input type and
20 * encode into a raw deflate stream.
18 * 21 *
19 *@ingroup Streams 22 *@ingroup Streams
23 *@ingroup Compression
20 */ 24 */
21 class Deflate : public Bu::Filter 25 class Deflate : public Bu::Filter
22 { 26 {
diff --git a/src/doxy/groups.dox b/src/doxy/groups.dox
index 479186a..6b7cd57 100644
--- a/src/doxy/groups.dox
+++ b/src/doxy/groups.dox
@@ -29,3 +29,8 @@
29 *@defgroup Streams Streams 29 *@defgroup Streams Streams
30 * Streams are for data. 30 * Streams are for data.
31 */ 31 */
32
33/**
34 *@defgroup Compression Compression
35 * Filters that give access to common compression libraries.
36 */
diff --git a/src/lzma.h b/src/lzma.h
index 21da6e8..090da8d 100644
--- a/src/lzma.h
+++ b/src/lzma.h
@@ -15,8 +15,11 @@
15namespace Bu 15namespace Bu
16{ 16{
17 /** 17 /**
18 * Provides XZ compression and decompression, both LZMA1 (LzmaAlone) as
19 * well as the newer LZMA2 (xz) format. This uses .xz by default.
18 * 20 *
19 *@ingroup Streams 21 *@ingroup Streams
22 *@ingroup Compression
20 */ 23 */
21 class Lzma : public Bu::Filter 24 class Lzma : public Bu::Filter
22 { 25 {