00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00021
00022 #ifndef _SERVICEUTIL_H_
00023 #define _SERVICEUTIL_H_
00024
00025 #include "datacontracts/programAndChannel.h"
00026 #include "datacontracts/recRule.h"
00027 #include "datacontracts/artworkInfoList.h"
00028 #include "datacontracts/videoMetadataInfo.h"
00029
00030 #include "programinfo.h"
00031 #include "recordingrule.h"
00032 #include "videometadatalistmanager.h"
00033
00034 void FillProgramInfo( DTC::Program *pProgram,
00035 ProgramInfo *pInfo,
00036 bool bIncChannel = true,
00037 bool bDetails = true );
00038
00039 void FillChannelInfo( DTC::ChannelInfo *pChannel,
00040 ProgramInfo *pInfo,
00041 bool bDetails = true );
00042
00043 void FillRecRuleInfo( DTC::RecRule *pRecRule,
00044 RecordingRule *pRule );
00045
00046 void FillArtworkInfoList( DTC::ArtworkInfoList *pArtworkInfoList,
00047 const QString &sInetref,
00048 uint nSeason );
00049
00050 void FillVideoMetadataInfo (
00051 DTC::VideoMetadataInfo *pVideoMetadataInfo,
00052 VideoMetadataListManager::VideoMetadataPtr pMetadata,
00053 bool bDetails);
00054 #endif