matplotlibcpp17
container.h
1
5#pragma once
6
7#include <matplotlibcpp17/common.h>
8
9#include <pybind11/pybind11.h>
10
11namespace matplotlibcpp17::container {
12
16struct DECL_STRUCT_ATTR BarContainer : public BaseWrapper {
17public:
18 BarContainer(const pybind11::object &bar_container) { self = bar_container; }
19 BarContainer(pybind11::object &&bar_container) {
20 self = std::move(bar_container);
21 }
22};
23
24} // namespace matplotlibcpp17::container
A base class for python wrapper classes.
Definition: common.h:39
A wrapper class for matplotlib.container.BarContainer.
Definition: container.h:16