forked from blue/squawk
14 lines
278 B
C++
14 lines
278 B
C++
|
/*
|
||
|
* Created by victoria on 2021-05-13.
|
||
|
*/
|
||
|
|
||
|
#include "store_context.h"
|
||
|
|
||
|
Signal::Store::Context::Context(signal_context *global) {
|
||
|
signal_protocol_store_context_create(&ctx, global);
|
||
|
}
|
||
|
|
||
|
Signal::Store::Context::~Context() {
|
||
|
signal_protocol_store_context_destroy(ctx);
|
||
|
}
|