mirror of
https://github.com/boostorg/date_time.git
synced 2026-01-29 07:22:24 +00:00
69 lines
2.6 KiB
Plaintext
69 lines
2.6 KiB
Plaintext
/* Copyright (c) 2001 CrystalClear Software, Inc.
|
|
* Disclaimer & Full Copyright at end of file
|
|
* Author: Jeff Garland
|
|
*/
|
|
|
|
|
|
/*! @mainpage Boost Date-Time Library Reference Documentation
|
|
*
|
|
*
|
|
*@section intro Introduction
|
|
*
|
|
* The Boost Date-Time Library (originally the Generic Date-Time Library or GDTL)
|
|
* is a set of C++ date-time libraries based on the concepts of generic programming.
|
|
* This is an online reference guide generated from the source code
|
|
* that provides a handy way to learn about the details of the
|
|
* library. If you are a user you should start with the
|
|
* <a href="../user_docs/index.html">User Documentation</a>.
|
|
*
|
|
*@section using Using This Documentation
|
|
*
|
|
* The online documentation provides extensive information about the details
|
|
* of the library including:
|
|
* - <A href="inherits.html">Class hierarchy</A>
|
|
* - <A href="namespaces.html">Namespace Documentation</A>
|
|
* - List of <A href="files.html">source files</A>
|
|
* - Annotated list of classes and structs
|
|
* <A href="annotated.html">(Compound List)</A>
|
|
*
|
|
* For example, suppose you wanted to learn more about the
|
|
* gregorian::greg_month class.
|
|
* You could alternatively browse the
|
|
* - <A href="classboost_1_1gregorian_1_1greg__month.html">Class documentation page</A>
|
|
* - Include dependencies for greg_month.hpp
|
|
* - Hyperlinked and colorized source files: <A href="greg__month_8hpp-source.html">[hpp file]</A> <A href="greg__month_8cpp-source.html">[cpp file]</A>
|
|
*
|
|
* The main navigation bar at the top provides that access to many
|
|
* different modes of naviation through the library.
|
|
|
|
*
|
|
*/
|
|
|
|
//! Overall boost namespace -- library does not put any symbols here
|
|
namespace boost {
|
|
|
|
//! Namespace for basic templates and components used to construct date-time systems
|
|
/*!
|
|
This namespace encapsulates various types of templates and classes used
|
|
to construct coherent date-time systems including date, time, etc. These
|
|
components should be considered helper components to be utilized in the
|
|
construction of specific date-time system implementations. See namespace
|
|
gregorian for one such example.
|
|
*/
|
|
namespace date_time {}
|
|
|
|
}
|
|
/* Copyright (c) 2001
|
|
* CrystalClear Software, Inc.
|
|
*
|
|
* Permission to use, copy, modify, distribute and sell this software
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
* provided that the above copyright notice appear in all copies and
|
|
* that both that copyright notice and this permission notice appear
|
|
* in supporting documentation. CrystalClear Software makes no
|
|
* representations about the suitability of this software for any
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
*/
|
|
|
|
|