ModelSpace
All Classes Namespaces Functions Variables Enumerations Pages
fileutils.h
1/******************************************************************************
2* Copyright (c) ATTX LLC 2024. All Rights Reserved.
3*
4* This software and associated documentation (the "Software") are the
5* proprietary and confidential information of ATTX, LLC. The Software is
6* furnished under a license agreement between ATTX and the user organization
7* and may be used or copied only in accordance with the terms of the agreement.
8* Refer to 'license/attx_license.adoc' for standard license terms.
9*
10* EXPORT CONTROL NOTICE: THIS SOFTWARE MAY INCLUDE CONTENT CONTROLLED UNDER THE
11* INTERNATIONAL TRAFFIC IN ARMS REGULATIONS (ITAR) OR THE EXPORT ADMINISTRATION
12* REGULATIONS (EAR99). No part of the Software may be used, reproduced, or
13* transmitted in any form or by any means, for any purpose, without the express
14* written permission of ATTX, LLC.
15******************************************************************************/
16#ifndef FILE_UTILS_H
17#define FILE_UTILS_H
18
19#include <string>
20
21namespace clockwerk {
22
23 /// @brief Function to quickly check and verify whether a file exists
24 /// @param name The name (or path) of the file to verify
25 /// @return True if file exists, false if not
26 bool fileExist(const std::string& name);
27
28}
29
30#endif