/* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . */ _CONFIGINCLUDE(giommconfig.h) #include #include #include _DEFS(giomm,gio) namespace Gio { _WRAP_ENUM(FileAttributeType, GFileAttributeType, decl_prefix GIOMM_API) _WRAP_ENUM(FileAttributeStatus, GFileAttributeStatus, decl_prefix GIOMM_API) /** Information about a specific attribute - see FileAttributeInfoList. * * @newin{2,16} */ class FileAttributeInfo { _CLASS_GENERIC(FileAttributeInfo, GFileAttributeInfo, decl_prefix GIOMM_API) public: _WRAP_ENUM(Flags, GFileAttributeInfoFlags) GIOMM_API explicit FileAttributeInfo(const GFileAttributeInfo* ginfo); GIOMM_API FileAttributeInfo(const FileAttributeInfo& other); GIOMM_API FileAttributeInfo& operator=(const FileAttributeInfo& other); GIOMM_API FileAttributeInfo(FileAttributeInfo&& other) noexcept; GIOMM_API FileAttributeInfo& operator=(FileAttributeInfo&& other) noexcept; GIOMM_API ~FileAttributeInfo(); GIOMM_API std::string get_name() const; GIOMM_API FileAttributeType get_type() const; GIOMM_API Flags get_flags() const; protected: std::string m_name; FileAttributeType m_type; Flags m_flags; }; } // namespace Gio