#ifndef JUCI_API_H_ #define JUCI_API_H_ #include #include #include #include "notebook.h" #include "menu.h" const std::string g_project_root("/home/forgie/app/juci/"); namespace libjuci { ///////////////////////////// //// API ServiceProvider //// ///////////////////////////// struct ApiServiceProvider { public: static std::shared_ptr menu_; static std::shared_ptr notebook_; ApiServiceProvider(); static void ReplaceWord(const std::string word); void ReplaceLine(const std::string line); static void AddKeybinding(); }; /////////////////////// //// Api to python //// /////////////////////// void ReplaceWord(const std::string word_); void ReplaceLine(const std::string line_); ////////////////////////////// //// Boost.Python methods //// ////////////////////////////// boost::python::api::object openPythonScript(const std::string path, boost::python::api::object python_name_space); //void snippet(std::string& word); void LoadPlugin(const std::string& plugin_name); }//api #endif // JUCI_API_H