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
18 lines
414 B
C++
18 lines
414 B
C++
// ======================================================================
|
|
// BufferManager.hpp
|
|
// Standardization header for BufferManager
|
|
// ======================================================================
|
|
|
|
#ifndef Svc_BufferManager_HPP
|
|
#define Svc_BufferManager_HPP
|
|
|
|
#include "Svc/BufferManager/BufferManagerComponentImpl.hpp"
|
|
|
|
namespace Svc {
|
|
|
|
typedef BufferManagerComponentImpl BufferManager;
|
|
|
|
}
|
|
|
|
#endif
|