using System;
using System.Collections.Generic;
using System.Text;
namespace Developpez.Dotnet.System.Providers
{
///
/// Fournisseur d'informations systèmes sur l'environnement Unix
///
/// Non supporté
public class UnixProvider : NullSystemProvider
{
///
/// Substitue NullSystemProvider.DirectXVersion. Renvoie toujours NotSupported
///
public override DirectXVersion DirectXVersion
{
get
{
return DirectXVersion.NotSupported;
}
}
}
}