This commit is contained in:
Timur A. Fatkhullin
2024-10-30 23:02:32 +03:00
parent 9cde583688
commit ff42a30717
3 changed files with 19 additions and 9 deletions

View File

@@ -52,10 +52,16 @@ public:
/* PUBLIC METHODS */
IdentT ident() const { return ident; }
ident_t ident() const
{
return _ident;
}
void operator()() { _execFunc(); }
void operator()()
{
_execFunc();
}
};