Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
IMonitor.h
Go to the documentation of this file.
1#ifndef IMONITOR_H
2#define IMONITOR_H
3
31template<typename FlagType>
32class IMonitor {
33public:
35 virtual ~IMonitor() = default;
36
46 virtual bool check_flag(FlagType flag) = 0;
47};
48
49#endif // IMONITOR_H
Interface for monitoring flags inside the framework (internal or external).
Definition IMonitor.h:32
virtual ~IMonitor()=default
Virtual destructor for proper polymorphic use.
virtual bool check_flag(FlagType flag)=0
Checks if a specific flag is active.