DotNetGnat
Programmer
Guys,
I tried something like this:
Is this correct way of doing it...I am getting lot of errors...
thanks
-DNG
I tried something like this:
Code:
template <class Type>
class dblLinkList
{
public:
dblLinkList();
~dblLinkList();
private:
struct Node
{
Type info;
Node<Type> *next;
Node<Type> *back;
};
static bool bAllowDuplicates;
static stcdata<Type> *first;
static bool bIsAscending;
};
Is this correct way of doing it...I am getting lot of errors...
thanks
-DNG