EngineInterface.h (Firebird-3.0.2.32703-0.tar.bz2) | : | EngineInterface.h (Firebird-3.0.4.33054-0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 404 | skipping to change at line 404 | |||
class JProvider FB_FINAL : | class JProvider FB_FINAL : | |||
public Firebird::StdPlugin<Firebird::IProviderImpl<JProvider, Firebird::C heckStatusWrapper> > | public Firebird::StdPlugin<Firebird::IProviderImpl<JProvider, Firebird::C heckStatusWrapper> > | |||
{ | { | |||
public: | public: | |||
explicit JProvider(Firebird::IPluginConfig* pConf) | explicit JProvider(Firebird::IPluginConfig* pConf) | |||
: cryptCallback(NULL), pluginConfig(pConf) | : cryptCallback(NULL), pluginConfig(pConf) | |||
{ | { | |||
} | } | |||
static Firebird::RefPtr<JProvider> getInstance() | static JProvider* getInstance() | |||
{ | { | |||
Firebird::RefPtr<JProvider> p(FB_NEW JProvider(NULL)); | JProvider* p = FB_NEW JProvider(NULL); | |||
p->addRef(); | ||||
return p; | return p; | |||
} | } | |||
Firebird::ICryptKeyCallback* getCryptCallback() | Firebird::ICryptKeyCallback* getCryptCallback() | |||
{ | { | |||
return cryptCallback; | return cryptCallback; | |||
} | } | |||
// IProvider implementation | // IProvider implementation | |||
JAttachment* attachDatabase(Firebird::CheckStatusWrapper* status, const c har* fileName, | JAttachment* attachDatabase(Firebird::CheckStatusWrapper* status, const c har* fileName, | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 3 lines changed or added |