65,186
社区成员




#ifndef __STUCT_CPP__
#define __STUCT_CPP__
struct ShareInfo : public TListObj
{
int packetNo;
int hostCnt;
int fileCnt;
public:
ShareInfo(int packetNo = 0);
void LinkList(ShareInfo *top);
};
ShareInfo::ShareInfo(int _packetNo)
{
}
void ShareInfo::LinkList(ShareInfo *top)
{
}
#endif
struct ShareInfo : public TListObj
{
int packetNo;
int hostCnt;
int fileCnt;
public:
inline ShareInfo(int packetNo = 0);
inline void LinkList(ShareInfo *top);
};
struct ShareInfo : public TListObj
{
int packetNo;
int hostCnt;
int fileCnt;
public:
ShareInfo(int packetNo = 0)
{}
void LinkList(ShareInfo *top)
{}
};
//这么定义,把实现塞到类里面。