mirror of https://gitee.com/bigwinds/arangodb
disallow copying
This commit is contained in:
parent
f7ade5e7fe
commit
33fe3f98e8
|
@ -74,6 +74,10 @@ namespace triagens {
|
|||
|
||||
public:
|
||||
|
||||
Expression (Expression const&) = delete;
|
||||
Expression& operator= (Expression const&) = delete;
|
||||
Expression () = delete;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief constructor, using an AST start node
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -81,8 +85,12 @@ namespace triagens {
|
|||
Expression (Ast*,
|
||||
AstNode const*);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief constructor, using JSON
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Expression (Ast*,
|
||||
triagens::basics::Json const &json);
|
||||
triagens::basics::Json const&);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief destructor
|
||||
|
|
Loading…
Reference in New Issue