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
+51
View File
@@ -0,0 +1,51 @@
/***************************************************************************
Process Dummy Class
-----------------------------------------
begin : 2015/05/28
copyright : (C) 2005 Solbox Inc.
author : Dev 1 Team
email : storage.sd@solbox.com
version : 3.5.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 __TRANSFER_STAT_DATA_H__
#define __TRANSFER_STAT_DATA_H__
#include <string.h>
#include "Logger.h"
#include "FimngdData.h"
class CTransferStatData
{
public:
CTransferStatData();
CTransferStatData(const CTransferStatData& other);
virtual ~CTransferStatData();
const CTransferStatData& operator=(const CTransferStatData& other);
inline void* GetPtr() { return &m_tsData; };
inline static int GetSize() { return (int)sizeof( struct Transfer_stat ); };
inline Transfer_stat GetData() const { return m_tsData; };
inline unsigned int GetUserSeq() { return m_tsData.nUserSeq; };
inline unsigned int GetServiceSeq() { return m_tsData.nServiceSeq; };
inline std::string GetFilenameHash() { return std::string( m_tsData.filename_hash ); };
// return value GET : 0 , PUT : non zero
inline short int GetDirection() { return m_tsData.nInOut; };
void SetTransferStatData( struct Transfer_stat tsData);
private:
struct Transfer_stat m_tsData;
};
#endif // __TRANSFER_STAT_DATA_H__