2009-12-03 Jeffrey Stedfast <fejj@novell.com>
[moon.git] / tools / generators / HeaderCollection.cs
blob73cb4ba7bba86a9de7bdb302d71db5014d2c504d
1 /*
2 * HeaderCollection.cs.
4 * Contact:
5 * Moonlight List (moonlight-list@lists.ximian.com)
7 * Copyright 2008 Novell, Inc. (http://www.novell.com)
9 * See the LICENSE file included with the distribution for details.
13 using System;
14 using System.Collections.Generic;
15 using System.IO;
16 using System.Text;
18 static class HeaderCollection
20 public static void Write (List<string> headers, StringBuilder text)
22 foreach (string header in headers) {
23 text.Append ("#include \"");
24 text.Append (header);
25 text.AppendLine ("\"");