/* @file DirectSourcePtr.hpp */ #pragma once #include "reactor/SecondarySource.hpp" #include "reactor/LastReducer.hpp" #include "reactor/EventTimeFn.hpp" namespace xo { namespace reactor { template using DirectSource = SecondarySource>>; /* use when Event is ref::rp for some T */ template using DirectSourcePtr = SecondarySource>>; } /*namespace reactor*/ } /*namespace xo*/ /* end DirectSourcePtr.hpp */