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::set (kdb::KeySet & ks, kdb::Key & parentKey) { if (!plugin->kdbSet) { throw MissingSymbol("kdbSet"); } return plugin->kdbSet(plugin, ks.getKeySet(), parentKey.getKey()); }