1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

rtp: missing changes in include/

This commit is contained in:
Steffen Vogel 2019-04-15 12:27:41 +02:00
parent 864cbdf375
commit c7b7e6017c

View file

@ -147,6 +147,20 @@ public:
virtual void setRate(double rate, double maxRate = -1) = 0;
void parse()
{
assert(state == STATE_INITIALIZED);
state = STATE_PARSED;
}
void init()
{
parse();
check();
prepare();
start();
}
};
class HookFactory : public plugin::Plugin {