Better python scripting compatibility.
This commit is contained in:
parent
819f28daf5
commit
6d16762df9
|
@ -49,6 +49,7 @@
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <typeinfo>
|
#include <typeinfo>
|
||||||
#include <boost/uuid/uuid.hpp>
|
#include <boost/uuid/uuid.hpp>
|
||||||
|
#include <macros.h>
|
||||||
|
|
||||||
class PROJECT;
|
class PROJECT;
|
||||||
class SEARCH_STACK;
|
class SEARCH_STACK;
|
||||||
|
@ -106,8 +107,10 @@ private:
|
||||||
|
|
||||||
extern KIID niluuid;
|
extern KIID niluuid;
|
||||||
|
|
||||||
|
// declare KIID_VECT_LIST as std::vector<KIID> both for c++ and swig:
|
||||||
|
DECL_VEC_FOR_SWIG( KIID_VECT_LIST, KIID )
|
||||||
|
|
||||||
class KIID_PATH : public std::vector<KIID>
|
class KIID_PATH : public KIID_VECT_LIST
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
KIID_PATH()
|
KIID_PATH()
|
||||||
|
|
Loading…
Reference in New Issue