bugfix: include paths

This commit is contained in:
Roland Conybeare 2023-10-23 12:01:29 -04:00
commit 1bd545590a
3 changed files with 159 additions and 160 deletions

View file

@ -2,24 +2,24 @@
#pragma once
#include "reactor/SecondarySource.hpp"
#include "reactor/LastReducer.hpp"
#include "reactor/EventTimeFn.hpp"
#include "SecondarySource.hpp"
#include "LastReducer.hpp"
#include "EventTimeFn.hpp"
namespace xo {
namespace reactor {
template<typename Event>
using DirectSource = SecondarySource<Event,
LastReducer<Event,
StructEventTimeFn<Event>>>;
namespace reactor {
template<typename Event>
using DirectSource = SecondarySource<Event,
LastReducer<Event,
StructEventTimeFn<Event>>>;
/* use when Event is ref::rp<T> for some T */
template<typename Event>
using DirectSourcePtr = SecondarySource<Event,
LastReducer<Event,
PtrEventTimeFn<Event>>>;
/* use when Event is ref::rp<T> for some T */
template<typename Event>
using DirectSourcePtr = SecondarySource<Event,
LastReducer<Event,
PtrEventTimeFn<Event>>>;
} /*namespace reactor*/
} /*namespace reactor*/
} /*namespace xo*/
/* end DirectSourcePtr.hpp */