class Q_EXPORT QValueListNode
{
public:
QValueListNode( const T& t ) : data( t ) { }
QValueListNode() { }
#if defined(Q_TEMPLATEDLL)
// Workaround MS bug in memory de/allocation in DLL vs. EXE
virtual ~QValueListNode() { }
#endif
QValueListNode<T>* next;
QValueListNode<T>* prev;
T data;
};
template<class T>