Bari.Core.Model.SourceSet.SourceSet C# (CSharp) Method

SourceSet() public method

Creates an empty source set
public SourceSet ( SourceSetType type ) : System.Collections.Generic
type SourceSetType Type of sources in this set
return System.Collections.Generic
        public SourceSet(SourceSetType type)
        {
            Contract.Requires(type != null);

            this.type = type;
        }