7#include <matplotlibcpp17/common.h>
9#include <pybind11/pybind11.h>
11namespace matplotlibcpp17::legend {
18 Legend(
const pybind11::object &obj) {
self = obj; }
19 Legend(pybind11::object &&obj) {
self = std::move(obj); }
A base class for python wrapper classes.
Definition: common.h:39
A wrapper class for matplotlib.legend.Legend.
Definition: legend.h:16