int Plugin::error (kdb::KeySet & ks, kdb::Key & parentKey) { if (!plugin->kdbError) { throw MissingSymbol("kdbError"); } return plugin->kdbError(plugin, ks.getKeySet(), parentKey.getKey()); }
int Plugin::close (kdb::Key & errorKey) { if (!plugin->kdbClose) { throw MissingSymbol("kdbClose"); } return plugin->kdbClose(plugin, errorKey.getKey()); }
int Plugin::set (kdb::KeySet & ks, kdb::Key & parentKey) { if (!plugin->kdbSet) { throw MissingSymbol("kdbSet"); } return plugin->kdbSet(plugin, ks.getKeySet(), parentKey.getKey()); }
int Plugin::open (kdb::Key & errorKey) { if (!plugin->kdbOpen) { throw MissingSymbol("kdbOpen"); } return plugin->kdbOpen(plugin, errorKey.getKey()); }