/** * @file ticker.h * @brief corresponding header for matplotlib.ticker **/ #ifndef MATPLOTLIBCPP17_TICKER_H #define MATPLOTLIBCPP17_TICKER_H #include #include namespace matplotlibcpp17::ticker { struct DECL_STRUCT_ATTR LogLocator : public BaseWrapper { public: LogLocator() { pybind11::object attr = pybind11::module::import("matplotlib.ticker").attr("LogLocator"); self = attr(); } }; } // namespace matplotlibcpp17::ticker #endif /* MATPLOTLIBCPP17_ANIMATION_H */