libqi
1.12
|
00001 /* 00002 ** Author(s): 00003 ** - Cedric GESTES <gestes@aldebaran-robotics.com> 00004 ** 00005 ** Copyright (C) 2011 Aldebaran Robotics 00006 */ 00007 00008 #ifndef LIBQI_QI_HPP_ 00009 # define LIBQI_QI_HPP_ 00010 00011 #include <qi/config.hpp> 00012 #include <locale> 00013 00014 namespace qi { 00015 00016 QI_API void init(int argc, char *argv[]); 00017 QI_API int argc(); 00018 QI_API const char** argv(); 00019 QI_API const char *program(); 00020 00021 typedef std::codecvt<wchar_t, char, std::mbstate_t> codecvt_type; 00022 QI_API const codecvt_type &unicodeFacet(); 00023 } 00024 00025 #endif /* !QI_PP_ */