mirror of https://gitee.com/bigwinds/arangodb
added disclaimer
This commit is contained in:
parent
1ed662753c
commit
b78e72f0d2
|
@ -37,7 +37,7 @@
|
|||
|
||||
|
||||
|
||||
#include <BasicsC/Common.h>
|
||||
#include <Basics/Common.h>
|
||||
#include <Basics/StringUtils.h>
|
||||
#include <Basics/VariantArray.h>
|
||||
#include <Basics/VariantBoolean.h>
|
||||
|
|
|
@ -4,9 +4,36 @@
|
|||
%error-verbose
|
||||
%pure-parser
|
||||
|
||||
// /////////////////////////////////////////////////////////////////////////////
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief bison parser
|
||||
///
|
||||
/// @file
|
||||
///
|
||||
/// DISCLAIMER
|
||||
///
|
||||
/// Copyright 2010-2011 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. Oreste Costa-Panaia
|
||||
/// @author Copyright 2010-2011, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// .............................................................................
|
||||
// change the namespace here -- see define NAME_SPACE below
|
||||
// /////////////////////////////////////////////////////////////////////////////
|
||||
// .............................................................................
|
||||
|
||||
%define namespace "triagens::json_parser"
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef TRIAGENS_FYN_JSON_PARSER_X_JSON_PARSER_XDRIVER_H
|
||||
#define TRIAGENS_FYN_JSON_PARSER_X_JSON_PARSER_XDRIVER_H 1
|
||||
|
||||
#include <BasicsC/Common.h>
|
||||
#include <Basics/Common.h>
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// @brief flex prototyp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
#line 3 "./JsonParserX/JsonScannerX.cpp"
|
||||
#line 3 "JsonParserX/JsonScannerX.cpp"
|
||||
|
||||
#define YY_INT_ALIGNED short int
|
||||
|
||||
|
|
|
@ -1,4 +1,31 @@
|
|||
%{ /* -*- C++ -*- */
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief flex scanner
|
||||
///
|
||||
/// @file
|
||||
///
|
||||
/// DISCLAIMER
|
||||
///
|
||||
/// Copyright 2010-2011 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. Oreste Costa-Panaia
|
||||
/// @author Copyright 2010-2011, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <Basics/StringUtils.h>
|
||||
|
||||
#include <cstdlib>
|
||||
|
|
Loading…
Reference in New Issue