38 lines
590 B
C++
38 lines
590 B
C++
#ifndef __SCAN_H__
|
|
#define __SCAN_H__
|
|
#include <string>
|
|
struct Scan{
|
|
std::string ScanID;
|
|
std::string StudyUID;
|
|
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;
|
|
};
|
|
|
|
struct MPPSSetting
|
|
{
|
|
int On = 0;
|
|
std::string ServerAETitle;
|
|
std::string IP;
|
|
int Port = 0;
|
|
};
|
|
|
|
|
|
#endif // __SCAN_H__
|