9 lines
195 B
C++
9 lines
195 B
C++
#include <string>
|
|
|
|
namespace operations_research {
|
|
|
|
int OrToolsMajorVersion() { return OR_TOOLS_MAJOR; }
|
|
int OrToolsMinorVersion() { return OR_TOOLS_MINOR; }
|
|
|
|
} // namespace operations_research
|