File indexing completed on 2024-06-02 05:41:18

0001 /*
0002     SPDX-FileCopyrightText: 2008-2016 Aaron Seigo <aseigo@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PLASMA_ACTIVITIES_VERSION_BIN_H
0008 #define PLASMA_ACTIVITIES_VERSION_BIN_H
0009 
0010 /** @file version.h <PlasmaActivities/Version> */
0011 
0012 #include "plasma_activities_export.h"
0013 #include <plasma_activities_version.h>
0014 
0015 #define PLASMA_ACTIVITIES_VERSION_RELEASE PLASMA_ACTIVITIES_VERSION_PATCH
0016 
0017 /**
0018  * Namespace for everything in libkactivities
0019  */
0020 namespace KActivities
0021 {
0022 /**
0023  * The runtime version of libkactivities
0024  */
0025 PLASMA_ACTIVITIES_EXPORT unsigned int version();
0026 
0027 /**
0028  * The runtime major version of libkactivities
0029  */
0030 PLASMA_ACTIVITIES_EXPORT unsigned int versionMajor();
0031 
0032 /**
0033  * The runtime major version of libkactivities
0034  */
0035 PLASMA_ACTIVITIES_EXPORT unsigned int versionMinor();
0036 
0037 /**
0038  * The runtime major version of libkactivities
0039  */
0040 PLASMA_ACTIVITIES_EXPORT unsigned int versionRelease();
0041 
0042 /**
0043  * The runtime version string of libkactivities
0044  */
0045 PLASMA_ACTIVITIES_EXPORT const char *versionString();
0046 
0047 } // KActivities namespace
0048 
0049 #endif // PLASMA_ACTIVITIES_VERSION_BIN_H