/** * @file legend.h * @brief corresponding header for matplotlib.legend **/ #ifndef MATPLOTLIBCPP17_LEGEND_H #define MATPLOTLIBCPP17_LEGEND_H #include #include namespace matplotlibcpp17::legend { /** * @brief A wrapper class for matplotlib.legend.Legend **/ struct DECL_STRUCT_ATTR Legend : public BaseWrapper { public: Legend(const pybind11::object &obj) { self = obj; } Legend(pybind11::object &&obj) { self = std::move(obj); } }; } // namespace matplotlibcpp17::legend #endif /* MATPLOTLIBCPP17_LEGEND_H */