////////////////////////////////////////////////////////////////////////////////
/// @brief API implementor manual
///
/// @file
///
/// DISCLAIMER
///
/// Copyright 2012 triagens GmbH, Cologne, Germany
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
/// Copyright holder is triAGENS GmbH, Cologne, Germany
///
/// @author Dr. Frank Celler
/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/// @page ImplementorManual ArangoDB's Reference Manual for API Implementors (@VERSION)
///
/// @if LATEX
///
/// - @ref RestDocument
/// - @ref RestEdge
/// - @ref HttpCursor
/// - @ref HttpSimple
/// - @ref IndexCapHttp
/// - @ref IndexGeoHttp
/// - @ref IndexHashHttp
/// - @ref IndexSkiplistHttp
/// - @ref HttpCollection
/// - @ref HttpIndex
/// - @ref HttpSystem
/// - @ref HttpMisc
/// - @ref HttpBatch
/// - @ref HttpImport
/// - @ref Communication
/// - @ref NamingConventions
/// - @ref ArangoErrors
/// - @ref Glossary
///
/// @else
///
/// - REST Interface
/// @copydetails RestDocumentTOC
/// @copydetails RestEdgeTOC
///
/// - Light-Weight HTTP for Queries and Cursors
/// @copydetails HttpCursorTOC
/// @copydetails HttpQueryTOC
/// @copydetails HttpSimpleTOC
/// @copydetails IndexCapHttpTOC
/// @copydetails IndexGeoHttpTOC
/// @copydetails IndexHashHttpTOC
/// @copydetails IndexSkiplistHttpTOC
///
/// - Light-Weight HTTP for Administration
/// @copydetails HttpCollectionTOC
/// @copydetails HttpIndexTOC
/// @copydetails HttpSystemTOC
/// @copydetails HttpMiscTOC
///
/// - Interface for bulk imports
/// @copydetails HttpImportTOC
///
/// - Interface for batch operations
/// @copydetails HttpBatchTOC
///
/// - Advanced Topics
///
/// - @ref Communication
/// - @ref NamingConventions
/// - @ref ArangoErrors
///
///
/// - Under Construction
///
/// - @ref Key-Value
///
/// - @ref Key-ValuePost "POST /_api/key/collection-name/key"
/// - @ref Key-ValuePut "PUT /_api/key/collection-name/key"
/// - @ref Key-ValueGet "GET /_api/key/collection-name/key"
/// - @ref Key-ValueDelete "DELETE /_api/key/collection-name/key"
/// - @ref Key-ValueSearch "GET /_api/keys/collection-name/prefix"
///
///
///
///
/// - @ref HttpBlueprints
///
/// - @ref A_JSF_POST_blueprints_graph "POST /_api/blueprints/graph"
/// - @ref A_JSF_GET_blueprints_graph "GET /_api/blueprints/graph"
/// - @ref A_JSF_DELETE_blueprints_graph "DELETE /_api/blueprints/graph"
/// - @ref A_JSF_POST_blueprints_vertex "POST /_api/blueprints/vertex"
/// - @ref A_JSF_GET_blueprints_vertex "GET /_api/blueprints/vertex"
/// - @ref A_JSF_PUT_blueprints_vertex "PUT /_api/blueprints/vertex"
/// - @ref A_JSF_DELETE_blueprints_vertex "DELETE /_api/blueprints/vertex"
/// - @ref A_JSF_POST_blueprints_vertices "POST /_api/blueprints/vertices"
/// - @ref A_JSF_POST_blueprints_edge "POST /_api/blueprints/edge"
/// - @ref A_JSF_GET_blueprints_edge "GET /_api/blueprints/edge"
/// - @ref A_JSF_PUT_blueprints_edge "PUT /_api/blueprints/edge"
/// - @ref A_JSF_DELETE_blueprints_edge "DELETE /_api/blueprints/edge"
/// - @ref A_JSF_POST_blueprints_edges "POST /_api/blueprints/edges"
///
///
///
///
///
/// @endif
////////////////////////////////////////////////////////////////////////////////
// Local Variables:
// mode: c++
// mode: outline-minor
// outline-regexp: "^\\(/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|// --SECTION--\\|/// @page\\|/// @\\}\\)"
// End: