This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
/***************************************************************************
Convert File Control Header ( ConvertFileControl.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_FILE_CONTROL_H__
#define __CONVERT_FILE_CONTROL_H__
class CConvert;
class CConvertFileControl : public CConvert
{
public:
CConvertFileControl(string subkey = "");
virtual ~CConvertFileControl();
virtual int ToJobData(int nServiceType, void* pFrom, void *pTo);
virtual void *ToClientData(int nServiceType, int nEnd, void* pFrom, int & outlen);
protected:
private:
string m_subkey;
};
#endif // __CONVERT_FILE_CONTROL_H__