bugfix: include paths
This commit is contained in:
parent
020f72c375
commit
1bd545590a
3 changed files with 159 additions and 160 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue