Skip to content
Snippets Groups Projects
Select Git revision
  • f31787e30e8d69ea998476507dbb0efda033eb67
  • master default protected
  • control-single-hba-and-lba
  • stabilise-landing-page
  • all-stations-lofar2
  • L2SS-2357-fix-ruff
  • v0.39.7-backports
  • Move-sdptr-to-v1.5.0
  • fix-build-ubuntu
  • tokens-in-env-files
  • fix-build
  • L2SS-2214-deploy-cdb
  • fix-missing-init
  • add-power-hardware-apply
  • L2SS-2129-Add-Subrack-Routine
  • Also-listen-internal-to-rpc
  • fix-build-dind
  • L2SS-2153--Improve-Error-Handling
  • L2SS-2153-Add-Grpc-Gateway-support
  • L2SS-1970-apsct-lol
  • DNM-pytango10.0.1rc1-test
  • remove-snmp-client
  • v0.52.3 protected
  • v0.52.3dev0 protected
  • 0.53.1dev0
  • v0.52.2-rc3 protected
  • v0.52.2-rc2 protected
  • v0.52.2-rc1 protected
  • v0.52.1.1 protected
  • v0.52.1 protected
  • v0.52.1-rc1 protected
  • v0.51.9-6 protected
  • v0.51.9-5 protected
  • v0.51.9-4 protected
  • v0.51.9-3 protected
  • v0.51.9-2 protected
  • v0.51.9-1 protected
  • v0.51.9 protected
  • v0.51.8 protected
  • v0.39.15-wsrttwo protected
  • v0.39.15-wsrt protected
41 results

setup.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    json.hpp 711.28 KiB
    /*
        __ _____ _____ _____
     __|  |   __|     |   | |  JSON for Modern C++
    |  |  |__   |  |  | | | |  version 3.6.1
    |_____|_____|_____|_|___|  https://github.com/nlohmann/json
    
    Licensed under the MIT License <http://opensource.org/licenses/MIT>.
    SPDX-License-Identifier: MIT
    Copyright (c) 2013-2019 Niels Lohmann <http://nlohmann.me>.
    
    Permission is hereby  granted, free of charge, to any  person obtaining a copy
    of this software and associated  documentation files (the "Software"), to deal
    in the Software  without restriction, including without  limitation the rights
    to  use, copy,  modify, merge,  publish, distribute,  sublicense, and/or  sell
    copies  of  the Software,  and  to  permit persons  to  whom  the Software  is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.
    
    THE SOFTWARE  IS PROVIDED "AS  IS", WITHOUT WARRANTY  OF ANY KIND,  EXPRESS OR
    IMPLIED,  INCLUDING BUT  NOT  LIMITED TO  THE  WARRANTIES OF  MERCHANTABILITY,
    FITNESS FOR  A PARTICULAR PURPOSE AND  NONINFRINGEMENT. IN NO EVENT  SHALL THE
    AUTHORS  OR COPYRIGHT  HOLDERS  BE  LIABLE FOR  ANY  CLAIM,  DAMAGES OR  OTHER
    LIABILITY, WHETHER IN AN ACTION OF  CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE  OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.
    */
    
    #ifndef INCLUDE_NLOHMANN_JSON_HPP_
    #define INCLUDE_NLOHMANN_JSON_HPP_
    
    #define NLOHMANN_JSON_VERSION_MAJOR 3
    #define NLOHMANN_JSON_VERSION_MINOR 6
    #define NLOHMANN_JSON_VERSION_PATCH 1
    
    #include <algorithm> // all_of, find, for_each
    #include <cassert> // assert
    #include <ciso646> // and, not, or
    #include <cstddef> // nullptr_t, ptrdiff_t, size_t
    #include <functional> // hash, less
    #include <initializer_list> // initializer_list
    #include <iosfwd> // istream, ostream
    #include <iterator> // random_access_iterator_tag
    #include <memory> // unique_ptr
    #include <numeric> // accumulate
    #include <string> // string, stoi, to_string
    #include <utility> // declval, forward, move, pair, swap
    #include <vector> // vector
    
    // #include <nlohmann/adl_serializer.hpp>
    
    
    #include <utility>
    
    // #include <nlohmann/detail/conversions/from_json.hpp>
    
    
    #include <algorithm> // transform
    #include <array> // array
    #include <ciso646> // and, not
    #include <forward_list> // forward_list
    #include <iterator> // inserter, front_inserter, end
    #include <map> // map
    #include <string> // string
    #include <tuple> // tuple, make_tuple
    #include <type_traits> // is_arithmetic, is_same, is_enum, underlying_type, is_convertible
    #include <unordered_map> // unordered_map
    #include <utility> // pair, declval
    #include <valarray> // valarray