7#include <pybind11/pybind11.h>
9#include <matplotlibcpp17/common.h>
11namespace matplotlibcpp17::animation {
18 ArtistAnimation(
const pybind11::tuple &args,
const pybind11::dict &kwargs) {
19 pybind11::object attr = pybind11::module::import(
"matplotlib.animation")
20 .attr(
"ArtistAnimation");
21 self = attr(*args, **kwargs);
25 ObjectWrapper save(
const pybind11::tuple &args = pybind11::tuple(),
26 const pybind11::dict &kwargs = pybind11::dict());
29 void load_attrs() { LOAD_FUNC_ATTR(save,
self); }
30 pybind11::object save_attr;
34ObjectWrapper ArtistAnimation::save(
const pybind11::tuple &args,
35 const pybind11::dict &kwargs) {
36 pybind11::object ret = save_attr(*args, **kwargs);
A base class for python wrapper classes.
Definition: common.h:39
A proxy class for pybind object.
Definition: common.h:50
A wrapper class for matplotlib.animation.ArtistAnimation.
Definition: animation.h:16