mirror of
https://github.com/Naios/continuable.git
synced 2025-12-07 01:06:44 +08:00
some tests
This commit is contained in:
parent
2b8102fbae
commit
1bb00c3bd0
@ -4,6 +4,25 @@
|
|||||||
|
|
||||||
#include "functional_unwrap.hpp"
|
#include "functional_unwrap.hpp"
|
||||||
|
|
||||||
|
struct fluent_step
|
||||||
|
{
|
||||||
|
template <typename Callback>
|
||||||
|
fluent_step& then(Callback const& callback)
|
||||||
|
{
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename _ATy = void()>
|
||||||
|
fluent_step make_waterfall()
|
||||||
|
{
|
||||||
|
return fluent_step();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void do_export();
|
void do_export();
|
||||||
|
|
||||||
#endif /// _FLUENT_HPP_
|
#endif /// _FLUENT_HPP_
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user