00001 /* 00002 * File: FileModes.h 00003 * Project: DUtils library 00004 * Author: Dorian Galvez 00005 * Date: April 2010 00006 * Description: types used with file managers 00007 * 00008 */ 00009 00010 #pragma once 00011 #ifndef __D_FILE_MODES__ 00012 #define __D_FILE_MODES__ 00013 00014 namespace DUtils { 00015 00016 enum FILE_MODES { 00017 READ = 1, 00018 WRITE = 2, 00019 APPEND = 4 00020 }; 00021 00022 } 00023 00024 #endif 00025