VideoCodec/Modules/Inspection/ProgressInformation.h

#ifndef PROGRESSINFORMATION_H_ #define PROGRESSINFORMATION_H_ #include "../../Data/Constants.h" #include "../../Data/PictureInfo.h" #include "../Module.h" namespace VideoCodec {    class ProgressInformation : public VideoCodec::Module    {    public:       ProgressInformation();       virtual ~ProgressInformation();       ConfigurationStatus Configure(ConfigurationElement* configuration);       void DumpPicture(PictureInfo* picture, bool useByteData);       void DumpPicture(PictureInfo* picture, bool useByteData, BlockCount mbIndex);    }; } #endif /*PROGRESSINFORMATION_H_*/