37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/***************************************************************************
|
|
Convert Request Service Link Header ( ConvertReqServiceLink.h )
|
|
-----------------------------------------
|
|
|
|
begin : 2013/03/18
|
|
copyright : (C) 2013 Solbox Inc.
|
|
author : Development 1 Team
|
|
- 2013/03/18 - 1st dadamin
|
|
email : dev1@solbox.com
|
|
version : 3.2.0
|
|
|
|
CopyRight(C) 2005 Solbox Inc. All Rights reserved.
|
|
Redistribution and use in source and binary forms, with or with out
|
|
modification, are not permitted in outside of Solbox Inc.
|
|
***************************************************************************/
|
|
#ifndef __CONVERT_REQ_SERVICE_LINK_H__
|
|
#define __CONVERT_REQ_SERVICE_LINK_H__
|
|
|
|
class CConvert;
|
|
|
|
class CConvertReqSvcLink : public CConvert
|
|
{
|
|
public:
|
|
CConvertReqSvcLink(string subkey = "");
|
|
virtual ~CConvertReqSvcLink();
|
|
|
|
virtual int ToJobData(int nServiceType, void* pFrom, void *pTo);
|
|
virtual void *ToClientData(int nServiceType, int nEnd, void* pFrom, int & outlen);
|
|
protected:
|
|
string MakeServiceLinkXML(void* pData);
|
|
|
|
private:
|
|
string m_subkey;
|
|
};
|
|
|
|
#endif // __CONVERT_REQ_SERVICE_MOVE_H__
|