Browse Source

moved python module to local folder

master
tedjk 11 years ago
parent
commit
f1d9b005de
  1. 7
      juci/api.cc
  2. 1
      juci/api.h

7
juci/api.cc

@ -12,6 +12,13 @@ PluginApi::PluginApi(Menu::Controller& menu_ctl_,
InitPlugins();
}
PluginApi::~PluginApi() {
delete menu_;
delete notebook_;
menu_ = NULL;
notebook_ = NULL;
}
std::string PluginApi::ProjectPath() {
int MAXPATHLEN = 50;
char temp[MAXPATHLEN];

1
juci/api.h

@ -13,6 +13,7 @@
class PluginApi {
public:
PluginApi(Menu::Controller&, Notebook::Controller&);
~PluginApi();
static Menu::Controller* menu_;
static Notebook::Controller* notebook_;
static void InitPlugins();

Loading…
Cancel
Save