21 lines
437 B
C#
21 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Raytheon.Common
|
|
{
|
|
public class YamlConfigurationFileFactory : ConfigurationFileFactoryBase
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="fileName"></param>
|
|
/// <returns></returns>
|
|
public override IConfigurationFile CreateConfigurationFile(string fileName)
|
|
{
|
|
return new YamlConfigurationFile(fileName);
|
|
}
|
|
}
|
|
}
|