Commit 53a68783 authored by Maksim Shabunin's avatar Maksim Shabunin

dnn: support later IE versions

parent 020ad1ac
......@@ -192,6 +192,10 @@ void InfEngineBackendNet::getName(char*, size_t) noexcept
{
}
void InfEngineBackendNet::getName(char*, size_t) const noexcept
{
}
size_t InfEngineBackendNet::layerCount() noexcept
{
return layers.size();
......
......@@ -46,7 +46,9 @@ public:
virtual InferenceEngine::InputInfo::Ptr getInput(const std::string &inputName) noexcept CV_OVERRIDE;
virtual void getName(char *pName, size_t len) noexcept CV_OVERRIDE;
virtual void getName(char *pName, size_t len) noexcept;
virtual void getName(char *pName, size_t len) const noexcept;
virtual size_t layerCount() noexcept CV_OVERRIDE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment