mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
ed98209ddc
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
30 lines
710 B
C++
30 lines
710 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmHexFileConverter_h
|
|
#define cmHexFileConverter_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <string>
|
|
|
|
/** \class cmHexFileConverter
|
|
* \brief Can detects Intel Hex and Motorola S-record files and convert them
|
|
* to binary files.
|
|
*
|
|
*/
|
|
class cmHexFileConverter
|
|
{
|
|
public:
|
|
enum FileType
|
|
{
|
|
Binary,
|
|
IntelHex,
|
|
MotorolaSrec
|
|
};
|
|
static FileType DetermineFileType(const std::string& inFileName);
|
|
static bool TryConvert(const std::string& inFileName,
|
|
const std::string& outFileName);
|
|
};
|
|
|
|
#endif
|