author | francesco-ST <francesco.abbate@st.com> | 2010年09月02日 15:02:30 +0200 |
---|---|---|
committer | francesco-ST <francesco.abbate@st.com> | 2010年09月02日 15:02:30 +0200 |
commit | 4fe53fb821119cba4606434b12a59928bcc2d4a9 (patch) | |
tree | bf202cc383ba67b93c9f2c81f77aaacf21eeff62 /agg-plot/lua-plot-cpp.h | |
parent | 237996111f07eb7e52d596be9a2b2145f64b707f (diff) | |
download | gsl-shell-4fe53fb821119cba4606434b12a59928bcc2d4a9.tar.gz |
-rw-r--r-- | agg-plot/lua-plot-cpp.h | 9 |
diff --git a/agg-plot/lua-plot-cpp.h b/agg-plot/lua-plot-cpp.h index 022be7e9..a3420708 100644 --- a/agg-plot/lua-plot-cpp.h +++ b/agg-plot/lua-plot-cpp.h @@ -14,16 +14,13 @@ extern "C" { class lua_plot { public: typedef plot<drawable, lua_management> plot_type; - -private: - plot_type m_plot; - -public: + lua_plot() : m_plot() { }; plot_type& self() { return m_plot; }; - static lua_plot *check(lua_State *L, int index); +private: + plot_type m_plot; }; #endif |