//-----------------------------------------------------------------------
//
// Copyright (c) 2009 Deltares. All rights reserved.
//
// B. Faassen
// B. Faassen@deltares.nl
//
// Defines an interface for exporters
//-----------------------------------------------------------------------
namespace Deltares.Dam.Data.IO
{
public interface IExport
{
///
/// Sets the name of the file without extension
///
string Name { set; }
///
/// Sets the path of the output folder
///
string Path { set; }
///
/// Sets the data to export
///
object Data { set; }
///
/// Exports the data to the file(s)
///
void Export();
}
}