Made it possible for a library provider to describe that it should not be shown.

This commit is contained in:
Lars Brubaker 2015-09-02 14:06:35 -07:00
parent 809d3639dd
commit 179da8280a
2 changed files with 31 additions and 24 deletions

View file

@ -51,6 +51,11 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
throw new NotImplementedException();
}
public virtual bool ShouldBeShown(Action functionToCallIfStateChanges)
{
return true;
}
public virtual string ProviderKey
{
get { throw new NotImplementedException(); }