F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
Warnings.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // \title Warnings.cpp
3 // \author bocchino
4 // \brief cpp file for FileDownlink::Warnings
5 //
6 // \copyright
7 // Copyright 2009-2015, by the California Institute of Technology.
8 // ALL RIGHTS RESERVED. United States Government Sponsorship
9 // acknowledged.
10 // ======================================================================
12 
13 namespace Svc {
14 
15 void FileDownlink::Warnings ::fileOpenError() {
16  this->m_fileDownlink->log_WARNING_HI_FileOpenError(this->m_fileDownlink->m_file.getSourceName());
17  this->warning();
18 }
19 
20 void FileDownlink::Warnings ::fileRead(const Os::File::Status status) {
21  this->m_fileDownlink->log_WARNING_HI_FileReadError(this->m_fileDownlink->m_file.getSourceName(), status);
22  this->warning();
23 }
24 
25 } // namespace Svc
RateGroupDivider component implementation.