blob: 4b1a7b6ef93221e2a59117e2289ba69a097815af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MYGRATE_INPUT_REPLSTREAM_H
#define MYGRATE_INPUT_REPLSTREAM_H
#include "mysqlConn.h"
#include <eventSourceBase.h>
namespace MyGrate {
class EventHandlerBase;
}
namespace MyGrate::Input {
class ReplicationStream : public EventSourceBase, MySQLConn {
public:
using MySQLConn::MySQLConn;
void readEvents(EventHandlerBase &) override;
};
}
#endif
|