Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
camobserver.cpp 303 B
#include "camobserver.h"

#include <VmbCPP/Camera.h>
#include <VmbCPP/VmbCPPCommon.h> //enum

#include <QDebug>

using namespace VmbCPP;

void CamObserver::CameraListChanged(CameraPtr pCam, UpdateTriggerType type)
{
	qDebug() << __LINE__ << "-" << __PRETTY_FUNCTION__;
	emit cameraChanged(pCam,type);
}