Akonadi

typehelper.h
1/*
2 SPDX-FileCopyrightText: 2017 Daniel Vrátil <dvratil@kde.og>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9class QString;
10
11namespace TypeHelper
12{
13bool isNumericType(const QString &name);
14bool isBoolType(const QString &name);
15
16/**
17 * Returns true if @p node is of C++ or Qt type, C++ if it's a generated type
18 */
19bool isBuiltInType(const QString &type);
20
21bool isContainer(const QString &type);
22
23QString containerType(const QString &type);
24QString containerName(const QString &type);
25bool isPointerType(const QString &type);
26
27}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:38 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.