I start converting the above C code to C++ code as below..
class clsTagInfo
{
public:
int siVar1;
struct sTag *next;
struct sTag *pfnGetInfo();
};
Here the problem occurs. I dont get how to convert the structure sTag *next as class object and how to further proceed with function returning the type struct.