mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 17:47:10 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
20 lines
405 B
C++
20 lines
405 B
C++
#ifndef FILEHANDLING_PINGENTRIES_HPP
|
|
#define FILEHANDLING_PINGENTRIES_HPP
|
|
|
|
namespace PingEntries {
|
|
namespace FileHandling_fileDownlink {
|
|
enum { WARN = 3, FATAL = 5 };
|
|
}
|
|
namespace FileHandling_fileManager {
|
|
enum { WARN = 3, FATAL = 5 };
|
|
}
|
|
namespace FileHandling_fileUplink {
|
|
enum { WARN = 3, FATAL = 5 };
|
|
}
|
|
namespace FileHandling_prmDb {
|
|
enum { WARN = 3, FATAL = 5 };
|
|
}
|
|
} // namespace PingEntries
|
|
|
|
#endif
|