mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-09 23:04:07 +00:00
18 lines
346 B
C++
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
|
|
}
|
|
|
|
//]
|