fork download
  1. template <typename type>
  2. class SnglLnkLstDmHdr
  3. {
  4. public:
  5. SnglLnkLstDmHdr()
  6. {
  7. this->Start = nullptr;
  8. }
  9. private:
  10. struct Node
  11. {
  12. type Data;
  13. Node *link;
  14. };
  15.  
  16. Node *Start;
  17. static Node *DummyHead;
  18. };
  19.  
  20. template <typename type>
  21. typename SnglLnkLstDmHdr<type>::Node* SnglLnkLstDmHdr<type>::DummyHead = nullptr;
  22.  
  23. int main()
  24. {
  25. SnglLnkLstDmHdr<int> f;
  26. }
  27.  
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty