low-level naming tweaks / comments / const-ified accessor

This commit is contained in:
Vern Paxson 2022-02-08 16:59:58 -08:00 committed by Christian Kreibich
parent 095ab178f3
commit 475063804e
3 changed files with 8 additions and 6 deletions

View file

@ -20,7 +20,7 @@ class EventHandler
public:
explicit EventHandler(std::string name);
const char* Name() { return name.data(); }
const char* Name() const { return name.data(); }
const FuncPtr& GetFunc() { return local; }