matplotlibcpp17
ticker.h
1
5#pragma once
6
7#include <pybind11/pybind11.h>
8
9#include <matplotlibcpp17/common.h>
10
11namespace matplotlibcpp17::ticker {
12
13struct DECL_STRUCT_ATTR LogLocator : public BaseWrapper {
14public:
15 LogLocator() {
16 pybind11::object attr =
17 pybind11::module::import("matplotlib.ticker").attr("LogLocator");
18 self = attr();
19 }
20};
21
22} // namespace matplotlibcpp17::ticker
A base class for python wrapper classes.
Definition: common.h:39