summaryrefslogtreecommitdiffstats
path: root/examples/corelib/tools/customtypesending/message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/corelib/tools/customtypesending/message.cpp')
-rw-r--r--examples/corelib/tools/customtypesending/message.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/corelib/tools/customtypesending/message.cpp b/examples/corelib/tools/customtypesending/message.cpp
deleted file mode 100644
index dfb5c5359a..0000000000
--- a/examples/corelib/tools/customtypesending/message.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include "message.h"
-
-Message::Message(const QString &body, const QStringList &headers)
- : m_body(body), m_headers(headers)
-{
-}
-
-QString Message::body() const
-{
- return m_body;
-}
-
-QStringList Message::headers() const
-{
- return m_headers;
-}