]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkSystem.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkSystem.h
index 0b36ebf882d39dec8754de8bc63a89ed4ccd5864..c9015c208b47169e758f5c7d5aa0d98c6ff5bf91 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkSystem.h,v $
   Language:  C++
-  Date:      $Date: 2008/11/12 12:47:01 $
-  Version:   $Revision: 1.10 $
+  Date:      $Date: 2008/11/20 17:41:41 $
+  Version:   $Revision: 1.11 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -221,3 +221,15 @@ namespace bbtk
 #endif
 
 #endif
+
+
+//----------------------------
+#ifndef _WIN32
+#include <unistd.h> //for access, unlink
+#else
+#include <io.h> //for _access on Win32
+#endif
+
+#ifdef _MSC_VER
+# define access _access
+#endif