Files
hailort/hailort/libhailort/bindings/gstreamer/gst-hailo/common.cpp
HailoRT-Automation dd37bf9936 v4.6.0
2022-03-29 19:08:05 +03:00

28 lines
1.0 KiB
C++

/*
* Copyright (c) 2021-2022 Hailo Technologies Ltd. All rights reserved.
* Distributed under the LGPL 2.1 license (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "common.hpp"
template<>
HailoElemProperty<gchar*>::~HailoElemProperty()
{
if (nullptr != m_value) {
g_free(m_value);
}
}