histogram/examples/guide_axis_basic_demo.cpp
2019-02-08 17:11:26 +01:00

18 lines
346 B
C++

// Copyright 2019 Hans Dembinski
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
//[ guide_axis_basic_demo
#include <boost/histogram/axis.hpp>
int main() {
using namespace boost::histogram;
// TODO show basic axis usage
}
//]