YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
genericviewwidget.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#include "genericviewwidget.h"
7
8GenericViewWidget::GenericViewWidget(QWidget *parent) : QWidget(parent),
9 type(yarp::manager::NodeType::NODE_OTHER),
10 m_modified(false)
11{}
12
18
20{
21 return m_modified;
22}
23
25{
26 m_modified=mod;
27}
28
30{
31 this->m_modified = mod;
32 emit modified(m_modified);
33
34}
GenericViewWidget(QWidget *parent=0)
void modified(bool)
void onModified(bool mod)
yarp::manager::NodeType type
yarp::manager::NodeType getType()
return the type of the list
void setModified(bool mod)
enum yarp::manager::__NodeType NodeType
The main, catch-all namespace for YARP.
Definition dirs.h:16