Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / archive / tmpdir.hpp
blob400d23b9f688bddfefbe1fd85e665dcf0684757e
1 #ifndef BOOST_ARCHIVE_TMPDIR_HPP
2 #define BOOST_ARCHIVE_TMPDIR_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER)
6 # pragma once
7 #endif
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // tmpdir.hpp:
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13 // Use, modification and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See http://www.boost.org for updates, documentation, and revision history.
19 #include <cstdlib> // getenv
20 #include <cstddef> // NULL
21 //#include <boost/assert.hpp>
23 #include <boost/config.hpp>
24 #ifdef BOOST_NO_STDC_NAMESPACE
25 namespace std {
26 using ::getenv;
28 #endif
30 namespace boost {
31 namespace archive {
33 inline const char * tmpdir(){
34 const char *dirname;
35 dirname = std::getenv("TMP");
36 if(NULL == dirname)
37 dirname = std::getenv("TMPDIR");
38 if(NULL == dirname)
39 dirname = std::getenv("TEMP");
40 if(NULL == dirname){
41 //BOOST_ASSERT(false); // no temp directory found
42 dirname = ".";
44 return dirname;
47 } // archive
48 } // boost
50 #endif // BOOST_ARCHIVE_TMPDIR_HPP