| 1234567891011121314151617181920212223 |
- #ifndef ALBUM_H
- #define ALBUM_H
- #include <QString>
- #include "gallery-core_global.h"
- class GALLERYCORE_EXPORT Album {
- public:
- explicit Album(const QString& name = "");
- int id() const;
- void setId(int id);
- QString name() const;
- void setName(const QString& name);
- private:
- int mId;
- QString mName;
- };
- #endif // ALBUM_H
|