17 lines
313 B
C
17 lines
313 B
C
|
|
/*
|
||
|
|
operator streamnext:
|
||
|
|
used together with operator streamvalve to remotely control a stream
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef ALGEBRAS_TEMPORAL2_OPSTREAMNEXT_H_
|
||
|
|
#define ALGEBRAS_TEMPORAL2_OPSTREAMNEXT_H_
|
||
|
|
|
||
|
|
class Operator;
|
||
|
|
|
||
|
|
namespace temporal2algebra{
|
||
|
|
Operator* getStreamNextOpPtr();
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif /* ALGEBRAS_TEMPORAL2_OPSTREAMNEXT_H_ */
|