blob: 6030f0cf8078d6bc48bb661c00029bf772ca54a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
/**
*@mainpage libbu++ utility library
*
*@section secIntro Introduction
*
* Libbu++ is a C++ library of general utility classes and functions. They
* cover a wide range of topics from streams and sockets to data structures to
* data serialization and xml handling to threading.
*
* This documentation is expanding all the time, and should contain
* comprehensive guides and API reference, but doesn't yet. For now check out
* these sections:
* - @ref howto_streams
* - @ref howto_archives
* - @ref howto_threading
* - @ref howto_servers
* - @ref howto_taf
* - @ref howto_plugins
* - @ref howto_unittest
* - @ref howto_params
*/
/**
*@namespace Bu The core libbu++ namespace, to ensure things don't get muddied.
*/
|