- properly rewritten ifndef for windows systems
This commit is contained in:
parent
92dfeec652
commit
cda696c536
|
@ -56,12 +56,14 @@ Cleaning of the automatic bbox caching support for ply files. First working vers
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
#else
|
||||||
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#include <vcg/space/box3.h>
|
#include <vcg/space/box3.h>
|
||||||
#include <wrap/ply/plylib.h>
|
#include <wrap/ply/plylib.h>
|
||||||
using namespace vcg;
|
using namespace vcg;
|
||||||
|
|
Loading…
Reference in New Issue