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