blob: 6841687d50506542815d68bbc3004c2bcf64bf1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2018 Luxoft GmbH
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef PROCESSINGSERVICE_H
#define PROCESSINGSERVICE_H
//! [0]
#include "rep_processingservice_source.h"
class ProcessingService : public ProcessingServiceSimpleSource
{
public:
ProcessingService(QObject *parent);
QVariant process(const QString & data) override;
};
//! [0]
#endif // PROCESSINGSERVICE_H
|