- properly rewritten ifndef for windows systems

This commit is contained in:
Guido Ranzuglia 2016-08-30 02:37:52 +02:00
parent 92dfeec652
commit cda696c536
1 changed files with 3 additions and 1 deletions

View File

@ -56,12 +56,14 @@ Cleaning of the automatic bbox caching support for ply files. First working vers
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#ifdef WIN32
#include <io.h>
#else
#include <unistd.h>
#endif
#include <vcg/space/box3.h>
#include <wrap/ply/plylib.h>
using namespace vcg;