comparison extern/vera/src/executable_path.h @ 548:a7c0eb100760

CMake: import vera++ 1.3.0, closes #729
author David Demelier <markand@malikania.fr>
date Wed, 22 Nov 2017 20:10:03 +0100
parents
children
comparison
equal deleted inserted replaced
547:a95954e53589 548:a7c0eb100760
1 //
2 // Copyright (C) 2014 Ben Key
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 //
7
8 #ifndef EXECUTABLE_PATH_H_INCLUDED
9 #define EXECUTABLE_PATH_H_INCLUDED
10
11 #pragma once
12
13 #include <string>
14
15 std::string executable_path(const char * argv0);
16 std::string executable_path_fallback(const char * argv0);
17
18 #endif // EXECUTABLE_PATH_H_INCLUDED