comfortable-swipe/cpp/util/_index.hpp
2019-03-05 22:30:59 +08:00

16 lines
343 B
C++

#ifndef __COMFORTABLE_SWIPE__util_index_hpp__
#define __COMFORTABLE_SWIPE__util_index_hpp__
#include <map> // std::map
#include <string> // std::string
namespace comfortable_swipe
{
namespace util
{
std::map<std::string, std::string> read_config_file(const char*);
}
}
#endif /* __COMFORTABLE_SWIPE__util_index_hpp__ */