// -----------------------------------------------------------------------
//
// Christian Woltering, Triangle.NET, http://triangle.codeplex.com/
//
// -----------------------------------------------------------------------
namespace MeshExplorer.IO
{
using TriangleNet.IO;
///
/// Defines an interface for mesh file formats.
///
public interface IMeshFile : IPolygonFormat, IMeshFormat
{
///
/// The supported file extensions.
///
string[] Extensions { get; }
///
/// Return true, if a (previously saved) mesh is associated with the given file.
///
/// The file name.
/// True, if a mesh is associated with the given file.
bool ContainsMeshData(string filename);
}
}