fire v0.19.0
Framework for sImulation and Reconstruction of Events
Access.h
1#ifndef FIRE_IO_ACCESS_H
2#define FIRE_IO_ACCESS_H
3
4#include "fire/version/Version.h"
5
6namespace fire::io {
7
22struct access {
32 template <typename T, typename D>
33 static void connect(T& t, D& d) {
34 t.attach(d);
35 }
36}; // access
37
38}
39
40#endif
Geant4 does a GLOBAL definition of the keyword TRUE.
Definition: AbstractData.h:11
empty struct for connecting a instance of Data and the type it wraps
Definition: Access.h:22
static void connect(T &t, D &d)
Connect the input types by attaching t to do.
Definition: Access.h:33