openFPGALoader/src/pathHelper.hpp

14 lines
270 B
C++
Raw Normal View History

// SPDX-License-Identifier: Apache-2.0
/*
* Copyright (C) 2022 Greg Davill <greg.davill@gmail.com>
*/
#if defined (_WIN64) || defined (_WIN32)
#include <string>
class PathHelper{
public:
static std::string absolutePath(std::string input_path);
};
#endif