blob: 718efb5ad3ff4a80d0b86828db3146249776eac8 [file] [log] [blame]
Zane Shelleye5411f02021-08-04 22:41:35 -05001#include <analyzer/service_data.hpp>
2
3namespace analyzer
4{
5
6//------------------------------------------------------------------------------
7
8void applyRasActions(ServiceData& io_servData)
9{
10 // TODO: finish implementing
11
12 // The default action is to callout level 2 support.
13 io_servData.addCallout(std::make_shared<ProcedureCallout>(
14 ProcedureCallout::NEXTLVL, Callout::Priority::HIGH));
15}
16
17//------------------------------------------------------------------------------
18
19} // namespace analyzer