feat: adds a constructor taking a vector to eoCombinedContinue

This commit is contained in:
Johann Dreo 2021-07-30 11:15:59 +02:00
commit 558d476ef3

View file

@ -54,8 +54,11 @@ public:
/// Ctor, make sure that at least on continuator is present /// Ctor, make sure that at least on continuator is present
eoCombinedContinue( eoContinue<EOT>& _cont) eoCombinedContinue( eoContinue<EOT>& _cont)
: eoContinue<EOT>(), std::vector<eoContinue<EOT>* >(1, &_cont) : eoContinue<EOT>(), std::vector<eoContinue<EOT>* >(1, &_cont)
{ { }
}
eoCombinedContinue( std::vector<eoContinue<EOT>*> _conts )
: eoContinue<EOT>(), std::vector<eoContinue<EOT>* >(_conts)
{ }
/* FIXME remove in next release /* FIXME remove in next release
/// Ctor - for historical reasons ... should disspear some day /// Ctor - for historical reasons ... should disspear some day