ln.perfdb/IPerfFileProvider.cs

19 lines
426 B
C#

// /**
// * File: IPerfFileProvider.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
using ln.perfdb.storage;
namespace ln.perfdb
{
public interface IPerfFileProvider
{
NewPerfFile GetPerfFile(string name);
}
}