GDCM 3.0.24
gdcmNormalizedMessageFactory.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: GDCM (Grassroots DICOM). A DICOM library
4
5 Copyright (c) 2006-2014 Mathieu Malaterre
6 All rights reserved.
7 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the above copyright notice for more information.
12
13=========================================================================*/
14#ifndef GDCMNORMALIZEDMESSAGEFACTORY_H
15#define GDCMNORMALIZEDMESSAGEFACTORY_H
16
18#include "gdcmULConnection.h"
19
20namespace gdcm {
21 class BaseQuery;
22 class File;
23 namespace network {
24 class BasePDU;
25
27{
28 public:
29 static std::vector<PresentationDataValue> ConstructNEventReport (const ULConnection& inConnection, const BaseQuery* inQuery);
30 static std::vector<PresentationDataValue> ConstructNGet (const ULConnection& inConnection, const BaseQuery* inQuery);
31 static std::vector<PresentationDataValue> ConstructNSet (const ULConnection& inConnection, const BaseQuery* inQuery);
32 static std::vector<PresentationDataValue> ConstructNAction (const ULConnection& inConnection, const BaseQuery* inQuery);
33 static std::vector<PresentationDataValue> ConstructNCreate (const ULConnection& inConnection, const BaseQuery* inQuery);
34 static std::vector<PresentationDataValue> ConstructNDelete (const ULConnection& inConnection, const BaseQuery* inQuery);
35
36
37 };
38 }
39}
40
41#endif // GDCMNORMALIZEDMESSAGEFACTORY_H
BaseQuery.
Definition gdcmBaseQuery.h:42
Definition gdcmNormalizedMessageFactory.h:27
static std::vector< PresentationDataValue > ConstructNGet(const ULConnection &inConnection, const BaseQuery *inQuery)
static std::vector< PresentationDataValue > ConstructNDelete(const ULConnection &inConnection, const BaseQuery *inQuery)
static std::vector< PresentationDataValue > ConstructNCreate(const ULConnection &inConnection, const BaseQuery *inQuery)
static std::vector< PresentationDataValue > ConstructNEventReport(const ULConnection &inConnection, const BaseQuery *inQuery)
static std::vector< PresentationDataValue > ConstructNSet(const ULConnection &inConnection, const BaseQuery *inQuery)
static std::vector< PresentationDataValue > ConstructNAction(const ULConnection &inConnection, const BaseQuery *inQuery)
ULConnection.
Definition gdcmULConnection.h:58
Definition gdcmASN1.h:21