F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
DefaultFile.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // \title Os/Stub/DefaultFile.cpp
3 // \brief sets default Os::File to no-op stub implementation via linker
4 // ======================================================================
5 #include "Os/Stub/File.hpp"
6 #include "Os/Delegate.hpp"
7 namespace Os {
8 
13 FileInterface *FileInterface::getDelegate(HandleStorage& aligned_placement_new_memory, const FileInterface* to_copy) {
14  return Os::Delegate::makeDelegate<FileInterface, Os::Stub::File::StubFile>(
15  aligned_placement_new_memory, to_copy
16  );
17 }
18 }
U8 HandleStorage[FW_HANDLE_MAX_SIZE]
Storage type for OSAL handles.
Definition: Os.hpp:10
static FileInterface * getDelegate(HandleStorage &aligned_placement_new_memory, const FileInterface *to_copy=nullptr)
provide a pointer to a file delegate object
Definition: DefaultFile.cpp:10