2 * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include "communication.h"
19 #include <QGuiApplication>
22 communication::communication(QObject *parent) : QObject(parent)
27 communication::~communication()
31 void communication::setWidth(const unsigned int &w)
37 void communication::setHeight(const unsigned int &h)
43 void communication::setColor(const QString &c)
49 void communication::setAppName(const QString &a)
52 emit appNameChanged();
55 void communication::setQuit(const bool &q)
63 unsigned int communication::getWidth() const
68 unsigned int communication::getHeight() const
73 QString communication::getColor() const
78 QString communication::getAppName() const
83 bool communication::getQuit() const