MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / SyncReplica

Class SyncReplica

src/jrd/replication/Config.h:34–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32namespace Replication
33{
34 struct SyncReplica
35 {
36 explicit SyncReplica(MemoryPool& p)
37 : database(p), username(p), password(p)
38 {}
39
40 SyncReplica(MemoryPool& p, const SyncReplica& other)
41 : database(p, other.database), username(p, other.username), password(p, other.password)
42 {}
43
44 Firebird::string database;
45 Firebird::string username;
46 Firebird::string password;
47 };
48
49 struct Config : public Firebird::GlobalStorage
50 {

Callers 1

ManagerMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected