1234567891011121314151617181920212223242526272829303132 |
- #ifndef IGL_FILE_CONTENTS_AS_STRING_H
- #define IGL_FILE_CONTENTS_AS_STRING_H
- #include "igl_inline.h"
- #include <string>
- namespace igl
- {
-
-
-
-
-
-
- IGL_INLINE bool file_contents_as_string(
- const std::string file_name,
- std::string & content);
- IGL_INLINE std::string file_contents_as_string(
- const std::string file_name);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "file_contents_as_string.cpp"
- #endif
- #endif
|