F´ Flight Software - C/C++ Documentation  devel
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 ::
16  fileOpenError()
17  {
18  this->m_fileDownlink->log_WARNING_HI_FileOpenError(
19  this->m_fileDownlink->m_file.getSourceName()
20  );
21  this->warning();
22  }
23 
24  void FileDownlink::Warnings ::
25  fileRead(const Os::File::Status status)
26  {
27  this->m_fileDownlink->log_WARNING_HI_FileReadError(
28  this->m_fileDownlink->m_file.getSourceName(),
29  status
30  );
31  this->warning();
32  }
33 
34 }