F´ Flight Software - C/C++ Documentation  NASA-v1.5.0
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 //
11 // ======================================================================
12 
13 #include <stdio.h>
14 
16 #include <Fw/Types/Assert.hpp>
17 #include <Fw/Types/BasicTypes.hpp>
18 
19 namespace Svc {
20 
21  void FileDownlink::Warnings ::
22  fileOpenError(void)
23  {
24  this->fileDownlink->log_WARNING_HI_FileDownlink_FileOpenError(
25  this->fileDownlink->file.sourceName
26  );
27  this->warning();
28  }
29 
30  void FileDownlink::Warnings ::
31  fileRead(void)
32  {
33  this->fileDownlink->log_WARNING_HI_FileDownlink_FileReadError(
34  this->fileDownlink->file.sourceName
35  );
36  this->warning();
37  }
38 
39 }
Assert.hpp
Svc
Definition: ActiveLoggerComponentAc.cpp:22
BasicTypes.hpp
Declares ISF basic types.