45 lines
715 B
C++
45 lines
715 B
C++
#ifndef __SCAN_H__
|
|
#define __SCAN_H__
|
|
#include <string>
|
|
struct Scan{
|
|
std::string ScanID;
|
|
std::string MPPSUID;
|
|
std::string ReferenceID;
|
|
std::string ReferencePath;
|
|
int Type;
|
|
};
|
|
|
|
struct TaskQueryResult
|
|
{
|
|
std::string ScanID;
|
|
std::string ReconID;
|
|
int SeqID ;
|
|
bool Start ;
|
|
};
|
|
|
|
struct PACSSetting
|
|
{
|
|
std::string AETitle;
|
|
std::string ServerAETitle;
|
|
std::string ServerIP;
|
|
int Port = 0;
|
|
bool StorageCommitment = false;
|
|
};
|
|
|
|
struct MPPSSetting
|
|
{
|
|
int On = 0;
|
|
std::string ServerAETitle;
|
|
std::string IP;
|
|
int Port = 0;
|
|
};
|
|
|
|
|
|
struct ServerSideMessage
|
|
{
|
|
int ErrorCode = 0;
|
|
std::string MessageContent;
|
|
std::string MessageUUID;
|
|
};
|
|
|
|
#endif // __SCAN_H__
|