Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
static_execute.h File Reference
This graph shows which files directly or indirectly include this file:

Macros

#define STATIC_EXECUTE(MY_FUNC)
 

Macro Definition Documentation

◆ STATIC_EXECUTE

#define STATIC_EXECUTE ( MY_FUNC)
Value:
struct StaticExecutorWrapper { \
struct Executor { \
template <class Func> \
Executor(Func func) \
{ \
func(); \
} \
}; \
static Executor executor; \
}; \
\
StaticExecutorWrapper::Executor StaticExecutorWrapper::executor{MY_FUNC};
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.

Definition at line 18 of file static_execute.h.