// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #ifndef __GENERIC_LIST_H__ #define __GENERIC_LIST_H__ // Simple parameterized linked list // with some good ctors template struct list { _T arg; list<_T> *next; list(_T t, list<_T> *n) { arg = t, next = n; } list() : arg(), next(NULL) { } }; #endif // __GENERIC_LIST_H__