mirror of https://gitee.com/bigwinds/arangodb
fixed doxygen generation
This commit is contained in:
parent
e368ab7a71
commit
226667bea1
|
@ -49,5 +49,5 @@ This is an introduction to ArangoDB's Http replication interface.
|
|||
@copydetails triagens::arango::RestReplicationHandler::handleCommandApplierStop
|
||||
|
||||
@CLEARPAGE
|
||||
@anchor HttpReplicationApplierState
|
||||
@copydetails triagens::arango::RestReplicationHandler::handleCommandApplierState
|
||||
@anchor HttpReplicationApplierGetState
|
||||
@copydetails triagens::arango::RestReplicationHandler::handleCommandApplierGetState
|
||||
|
|
|
@ -13,4 +13,4 @@ TOC {#HttpReplicationTOC}
|
|||
- @ref HttpReplicationApplierSetConfig "PUT /_api/replication/applier-config"
|
||||
- @ref HttpReplicationApplierStart "PUT /_api/replication/applier-start"
|
||||
- @ref HttpReplicationApplierStop "PUT /_api/replication/applier-stop"
|
||||
- @ref HttpReplicationApplierState "GET /_api/replication/applier-state"
|
||||
- @ref HttpReplicationApplierGetState "GET /_api/replication/applier-state"
|
||||
|
|
|
@ -1614,7 +1614,7 @@ INCLUDE_FILE_PATTERNS =
|
|||
# undefined via #undef or recursively expanded use the := operator
|
||||
# instead of the = operator.
|
||||
|
||||
PREDEFINED =
|
||||
PREDEFINED = TRI_ENABLE_REPLICATION
|
||||
|
||||
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
|
||||
# this tag can be used to specify a list of macro names that should be expanded.
|
||||
|
|
|
@ -29,12 +29,20 @@
|
|||
#define TRIAGENS_REST_HANDLER_REST_BATCH_HANDLER_H 1
|
||||
|
||||
#include "RestHandler/RestVocbaseBaseHandler.h"
|
||||
#include "HttpServer/HttpServer.h"
|
||||
|
||||
using namespace triagens::basics;
|
||||
using namespace triagens::rest;
|
||||
using namespace std;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- class RestBatchHandler
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup ArangoDB
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace triagens {
|
||||
namespace arango {
|
||||
|
||||
|
@ -42,11 +50,6 @@ namespace triagens {
|
|||
// --SECTION-- private types
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup ArangoDB
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief container for complete multipart message
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -83,24 +86,11 @@ namespace triagens {
|
|||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
/// @brief batch request handler
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
class RestBatchHandler : public RestVocbaseBaseHandler {
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- RestBatchHandler
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup ArangoDB
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief batch request handler
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -209,14 +199,14 @@ namespace triagens {
|
|||
|
||||
const string _partContentType;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#endif
|
||||
|
||||
// Local Variables:
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "RestHandler/RestVocbaseBaseHandler.h"
|
||||
#include "HttpServer/HttpServer.h"
|
||||
|
||||
#ifdef TRI_ENABLE_REPLICATION
|
||||
//#ifdef TRI_ENABLE_REPLICATION
|
||||
|
||||
using namespace triagens::basics;
|
||||
using namespace triagens::rest;
|
||||
|
@ -40,15 +40,28 @@ using namespace std;
|
|||
struct TRI_replication_log_state_s;
|
||||
struct TRI_vocbase_col_s;
|
||||
|
||||
namespace triagens {
|
||||
namespace arango {
|
||||
|
||||
class RestReplicationHandler : public RestVocbaseBaseHandler {
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- RestReplicationHandler
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @addtogroup ArangoDB
|
||||
/// @{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace triagens {
|
||||
namespace arango {
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief replication request handler
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
class RestReplicationHandler : public RestVocbaseBaseHandler {
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- constructors and destructors
|
||||
// -----------------------------------------------------------------------------
|
||||
|
@ -252,15 +265,15 @@ namespace triagens {
|
|||
|
||||
static const uint64_t minChunkSize;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @}
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
//#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue