diff --git a/src/lib/io/kfilesystemtype.h b/src/lib/io/kfilesystemtype.h index e2d58de..65e1fec 100644 --- a/src/lib/io/kfilesystemtype.h +++ b/src/lib/io/kfilesystemtype.h @@ -1,49 +1,49 @@ /* This file is part of the KDE libraries Copyright (c) 2011 David Faure This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2.1 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KFILESYSTEMTYPE_P_H #define KFILESYSTEMTYPE_P_H #include #include /** * @namespace KFileSystemType * Provides utility functions for the type of file systems. */ namespace KFileSystemType { enum Type { Unknown, - Nfs, // NFS or other full-featured networked filesystems (autofs, subfs, cachefs, sshfs) - Smb, // SMB/CIFS mount (networked but with some FAT-like behavior) - Fat, // FAT or similar (msdos, fat, vfat) - Ramfs, // RAMDISK mount - Other // ext, reiser, and so on. "Normal" local filesystems. + Nfs, ///< NFS or other full-featured networked filesystems (autofs, subfs, cachefs, sshfs) + Smb, ///< SMB/CIFS mount (networked but with some FAT-like behavior) + Fat, ///< FAT or similar (msdos, fat, vfat) + Ramfs, ///< RAMDISK mount + Other ///< ext, reiser, and so on. "Normal" local filesystems. }; /** * Returns the file system type at a given path, as much as we are able to figure it out. * @since 5.0 */ KCOREADDONS_EXPORT Type fileSystemType(const QString &path); } #endif diff --git a/src/lib/kcoreaddons.h b/src/lib/kcoreaddons.h index b678797..aaa33ea 100644 --- a/src/lib/kcoreaddons.h +++ b/src/lib/kcoreaddons.h @@ -1,57 +1,57 @@ /* * This file is part of the KDE Libraries * Copyright (C) 2016 David Edmundson * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef KCOREADDONS_H #define KCOREADDONS_H #include #include /** * @namespace KCoreAddons * Provides utility functions for metadata about the KCoreAddons library. */ namespace KCoreAddons { - /* + /** * Returns the version number of KCoreAddons at run-time as a string (for example, "5.19.0"). * This may be a different version than the version the application was compiled against. * @since 5.20 */ KCOREADDONS_EXPORT QString versionString(); - /* + /** * Returns a numerical version number of KCoreAddons at run-time in the form 0xMMNNPP * (MM = major, NN = minor, PP = patch) * This can be compared using the macro QT_VERSION_CHECK. * * For example: * \code * if (KCoreAddons::version() < QT_VERSION_CHECK(5,19,0)) * \endcode * * This may be a different version than the version the application was compiled against. * @since 5.20 */ KCOREADDONS_EXPORT unsigned int version(); } #endif