You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
382 B
18 lines
382 B
2 years ago
|
#pragma once
|
||
|
#include "actions.h"
|
||
|
|
||
|
using michlib::message;
|
||
|
|
||
|
template<class D> struct DoAction_<D, ActionID::INFO>
|
||
|
{
|
||
|
static MString DoAction(const CLArgs& args, D& data);
|
||
|
};
|
||
|
|
||
|
template<class D> MString DoAction_<D, ActionID::INFO>::DoAction([[maybe_unused]] const CLArgs& args, D& data)
|
||
|
{
|
||
|
auto info = data.Info();
|
||
|
if(!info.Exist()) return "No info";
|
||
|
message(info);
|
||
|
return "";
|
||
|
};
|