2013-06-23 15:07:12 +00:00
|
|
|
#ifndef _myinit_h_
|
|
|
|
#define _myinit_h_
|
|
|
|
|
2013-08-26 18:56:36 +00:00
|
|
|
// this needs to be included early for MSVC (listing it in Build.PL is not enough)
|
2013-09-23 09:27:23 +00:00
|
|
|
#undef read
|
|
|
|
#undef seekdir
|
2013-08-26 18:56:36 +00:00
|
|
|
#include <ostream>
|
2013-09-09 15:10:54 +00:00
|
|
|
#include <iostream>
|
2014-02-01 10:53:45 +00:00
|
|
|
#include <sstream>
|
2013-08-26 18:56:36 +00:00
|
|
|
|
2013-09-13 12:48:40 +00:00
|
|
|
#ifdef SLIC3RXS
|
2013-07-16 19:04:14 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "perl.h"
|
|
|
|
#include "XSUB.h"
|
|
|
|
#include "ppport.h"
|
|
|
|
#undef do_open
|
|
|
|
#undef do_close
|
|
|
|
}
|
2014-05-08 12:52:48 +00:00
|
|
|
#include "perlglue.hpp"
|
2013-09-13 12:48:40 +00:00
|
|
|
#endif
|
2013-07-16 19:04:14 +00:00
|
|
|
|
2014-08-03 17:42:29 +00:00
|
|
|
#include "libslic3r/libslic3r.h"
|
2013-09-09 15:10:54 +00:00
|
|
|
|
2013-06-23 15:07:12 +00:00
|
|
|
#endif
|