[RTL]
[reactos.git] / reactos / tools / sysgen / RosFramework / RBuildCompilationUnit.cs
1 using System;
2 using System.IO;
3 using System.Collections.Generic;
4 using System.Text;
5
6 namespace SysGen.RBuild.Framework
7 {
8 /// <summary>
9 /// A compilationunit element specifies that one or more source code
10 /// files are to be compiled as a single compilation unit.
11 /// </summary>
12 public class RBuildCompilationUnitFile : RBuildSourceFile , IRBuildSourceFilesContainer
13 {
14 private RBuildSourceFileCollection m_SourceFiles = new RBuildSourceFileCollection();
15
16 /// <summary>
17 /// Gets the collection of <see cref="RBuildSourceFile"/>.
18 /// </summary>
19 public RBuildSourceFileCollection SourceFiles
20 {
21 get { return m_SourceFiles; }
22 }
23 }
24 }