summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tools/echoplugin/plugin/echoplugin.cpp
blob: 55ccedb39e0ad93929845b0e328a9e83031d7879 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "echoplugin.h"

//! [0]
QString EchoPlugin::echo(const QString &message)
{
    return message;
}
//! [0]