feat: adds a constructor taking a vector to eoCombinedContinue
This commit is contained in:
parent
eb9bd4a405
commit
558d476ef3
1 changed files with 5 additions and 2 deletions
|
|
@ -54,8 +54,11 @@ public:
|
|||
/// Ctor, make sure that at least on continuator is present
|
||||
eoCombinedContinue( eoContinue<EOT>& _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
|
||||
/// Ctor - for historical reasons ... should disspear some day
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue