/* QtDcm is a C++ Qt based library for communication and conversion of Dicom images. Copyright (C) 2011 Alexandre Abadie 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef QTDCMSERIE_H_ #define QTDCMSERIE_H_ #include class QtDcmSeriePrivate; class QtDcmStudy; class QtDcmImage; /** * This class is a representation of a dicom serie */ class QtDcmSerie { public: /** * Default constructor */ QtDcmSerie(); /** * Default destructor */ virtual ~QtDcmSerie(); /** * Serie Id getter * * @return _id a QString */ QString id() const; /** * Serie Id setter * * @param id is a QString */ void setId ( const QString & id ); /** * Serie date getter * * @return _date a QString */ QString date() const; /** * Serie date setter * * @param date is a QString */ void setDate ( const QString & date ); /** * Serie description getter * * @return _description a QString */ QString description() const; /** * Serie description setter * * @param description a QString */ void setDescription ( const QString & description ); /** * Image list getter * * @return _images a QList of images * @see QtDcmImage */ QList images() const; /** * Image list setter * * @param images a QList of images * @see QtDcmImage */ void setImages ( const QList & images ); /** * Parent study getter * * @return _p_study a pointer on the parent study * @see QtDcmStudy */ QtDcmStudy study() const; /** * Parent study setter * * @param study a pointer on the parent study * @see QtDcmStudy */ void setStudy ( const QtDcmStudy & study ); private: class Private; Private * d; }; #endif /* QTDCMSERIE_H_ */