44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
/***************************************************************************
|
|
Data Class
|
|
-----------------------------------------
|
|
begin : 2012/10/14
|
|
copyright : (C) 2010 SolutionBox Inc.
|
|
author : service 1 team
|
|
email : svc1@solbox.com
|
|
version : 1.0
|
|
|
|
CopyRight(C) 2010 SolutionBox Inc. All Rights reserved.
|
|
Redistribution and use in source and binary forms, with or with out
|
|
modification, are not permitted in outside of SolutionBox Inc.
|
|
***************************************************************************/
|
|
|
|
#ifndef __DATA_H__
|
|
#define __DATA_H__
|
|
#include <list>
|
|
#include <string>
|
|
|
|
/// @brief CPreserve class
|
|
class CPreserve
|
|
{
|
|
public :
|
|
/// @brief Service ID
|
|
std::string m_szServiceID;
|
|
/// @brief Service º¸Á¸ ±â°£
|
|
int m_nPreserveDay;
|
|
};
|
|
|
|
/// @brief CSourceData class
|
|
class CFileInfo
|
|
{
|
|
public :
|
|
std::string m_szSvcTranid;
|
|
std::string m_szHostName;
|
|
int m_nType;
|
|
std::string m_szUri;
|
|
std::string m_szFileNameHash;
|
|
unsigned long long m_nContentLength;
|
|
unsigned long long m_nLastModified;
|
|
};
|
|
|
|
#endif //__DATA_H__
|