/// \file RArrayView.h /// \ingroup Base StdExt ROOT7 /// \author Axel Naumann /// \date 2015-09-06 /// \warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome! /************************************************************************* * Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT7_RArrayView #define ROOT7_RArrayView #ifdef R__HAS_STD_ARRAY_VIEW #include #elif defined(R__HAS_STD_EXPERIMENTAL_ARRAY_VIEW) #include namespace std { using template array_view = experimental::array_view; // TODO: using make_view() overloads } #else # include "ROOT/rhysd_array_view.h" #endif #endif