20 lines
330 B
C
20 lines
330 B
C
|
|
#ifndef __SCAN_H__
|
||
|
|
#define __SCAN_H__
|
||
|
|
#include <string>
|
||
|
|
struct Scan{
|
||
|
|
std::string ScanID;
|
||
|
|
std::string PatientID;
|
||
|
|
std::string ReferenceID;
|
||
|
|
std::string ReferencePath;
|
||
|
|
int Type;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct TaskQueryResult
|
||
|
|
{
|
||
|
|
std::string ScanID;
|
||
|
|
std::string ReconID;
|
||
|
|
int SeqID ;
|
||
|
|
bool Start ;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // __SCAN_H__
|