All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
AndroidFileIOHelpers.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Helpers.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace Android
12  {
13  namespace FileIOHelpers
14  {
15  bool MakeDirIfNotExists(const std::string& path);
16  void FileStatFromStat(const struct stat& stat, Eegeo::Helpers::FileStat& out_filestat);
17  }
18  }
19 }