2007-04-16 13:28:29 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2007, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Documentation by:
|
|
|
|
* Niels Sascha Reedijk <niels.reedijk@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2006-09-12 16:13:49 +04:00
|
|
|
/*!
|
2007-03-30 17:50:00 +04:00
|
|
|
\page support_intro Introduction to the Support Kit
|
2003-08-27 06:34:47 +04:00
|
|
|
|
2007-03-30 17:50:00 +04:00
|
|
|
The Support Kit provides a handy set of functions and classes that you can
|
|
|
|
use in your applications. Have a look at the overview, or go straight to
|
|
|
|
the complete \link support list of components \endlink of this kit.
|
2003-08-27 06:34:47 +04:00
|
|
|
|
2007-03-30 17:50:00 +04:00
|
|
|
\section Overview
|
|
|
|
- Threading utility classes:
|
|
|
|
- BLocker
|
|
|
|
- BAutolock
|
2007-05-24 15:13:20 +04:00
|
|
|
- \ref TLS.h "Thread Local Storage"
|
2007-03-30 17:50:00 +04:00
|
|
|
- Archiving and IO:
|
2007-04-16 13:28:29 +04:00
|
|
|
- BArchivable
|
2007-03-30 17:50:00 +04:00
|
|
|
- BFlattenable
|
|
|
|
- BDataIO
|
|
|
|
- BPositionIO
|
|
|
|
- BBufferIO
|
|
|
|
- BMemoryIO
|
|
|
|
- BMallocIO
|
|
|
|
- Container classes:
|
|
|
|
- BBlockCache
|
|
|
|
- BList
|
|
|
|
- BString
|
|
|
|
- BStopWatch
|
|
|
|
- \ref support_globals "Global functions"
|
|
|
|
- \ref TypeConstants.h "Common types and constants"
|
|
|
|
- Error codes for all kits
|
2003-08-27 06:34:47 +04:00
|
|
|
*/
|
|
|
|
|
2007-03-02 16:36:32 +03:00
|
|
|
// Short listing of documents that belong to this module so that people can
|
|
|
|
// find these from the module overview.
|
|
|
|
// This should become standardized in Doxygen though. There is an item on
|
|
|
|
// the todo list on this.
|
|
|
|
|
|
|
|
/*!
|
2007-04-16 13:28:29 +04:00
|
|
|
\addtogroup support
|
2007-03-02 16:36:32 +03:00
|
|
|
|
2007-04-16 13:28:29 +04:00
|
|
|
For a better overview, have a look at \ref support_intro .
|
2007-03-02 16:36:32 +03:00
|
|
|
*/
|
|
|
|
|