Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef GDCMCSTOREMESSAGES_H
00019 #define GDCMCSTOREMESSAGES_H
00020
00021 #include "gdcmBaseCompositeMessage.h"
00022
00023 namespace gdcm{
00024 class File;
00025 namespace network{
00026 class BasePDU;
00031 class CStoreRQ : public BaseCompositeMessage {
00032 std::vector<PresentationDataValue> ConstructPDV(const ULConnection &inConnection, const BaseRootQuery* inRootQuery);
00033 public:
00034 std::vector<PresentationDataValue> ConstructPDV(const ULConnection &inConnection,
00035 const File& file);
00036 };
00037
00042 class CStoreRSP : public BaseCompositeMessage {
00043 std::vector<PresentationDataValue> ConstructPDV(const ULConnection &inConnection, const BaseRootQuery* inRootQuery);
00044 public:
00045 std::vector<PresentationDataValue> ConstructPDV(const DataSet* inDataSet, const BasePDU* inPC);
00046 };
00047 }
00048 }
00049 #endif // GDCMCSTOREMESSAGES_H