// *****************************************************************************
/*!
\file src/Main/MeshConvDriver.hpp
\copyright 2012-2015 J. Bakosi,
2016-2018 Los Alamos National Security, LLC.,
2019-2021 Triad National Security, LLC.,
2022-2025 J. Bakosi
All rights reserved. See the LICENSE file for details.
\brief Mesh converter driver
\details Mesh converter driver.
*/
// *****************************************************************************
#ifndef MeshConvDriver_h
#define MeshConvDriver_h
#include <iosfwd><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
//! Mesh converter declarations and definitions
namespace meshconv {
//! Mesh converter driver used polymorphically with tk::Driver
class MeshConvDriver {
public:
void convert( const std::string& inf,
const std::string& outf,
bool reorder ) const;
};
} // meshconv::
#endif // MeshConvDriver_h