Files
ortools-clone/ortools/init/python/init.i

26 lines
630 B
OpenEdge ABL
Raw Normal View History

2021-03-19 18:55:20 +01:00
%include "ortools/base/base.i"
%include "std_string.i"
%{
#include "ortools/init/init.h"
%}
%ignoreall
%unignore operations_research;
// Expose the flags structure.
%unignore operations_research::CppFlags;
%unignore operations_research::CppFlags::logtostderr;
%unignore operations_research::CppFlags::log_prefix;
// Expose the static methods of the bridge class.
%unignore operations_research::CppBridge;
%unignore operations_research::CppBridge::InitLogging;
%unignore operations_research::CppBridge::SetFlags;
%unignore operations_research::CppBridge::LoadGurobiSharedLibrary;
2021-03-19 18:55:20 +01:00
%include "ortools/init/init.h"
%unignoreall