File indexing completed on 2024-04-28 04:18:58

0001 /*
0002     SPDX-FileCopyrightText: 2023 Nicolas Fella <nicolas.fella@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "kameralist.h"
0008 
0009 KameraList::KameraList()
0010 {
0011     gp_list_new(&m_list);
0012 }
0013 
0014 KameraList::~KameraList()
0015 {
0016     gp_list_free(m_list);
0017 }
0018 
0019 KameraList::operator CameraList *()
0020 {
0021     return m_list;
0022 };