Updating GraphingInterfaces to use Graphing Engine 2.0 (#561)

* Updated Graphing Interfaces to version 2.0.1
This commit is contained in:
Stephanie Anderl
2019-06-21 13:17:39 -07:00
committed by GitHub
parent 5ffe1bc858
commit c3c001af28
6 changed files with 80 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include "Common.h"
#include "IEquationOptions.h"
namespace Graphing
{
struct IEquation : public NonCopyable, public NonMoveable
{
virtual ~IEquation() = default;
virtual std::shared_ptr<IEquationOptions> GetGraphEquationOptions() const = 0;
virtual unsigned int GetGraphEquationID() const = 0;
virtual bool TrySelectEquation() = 0;
virtual bool IsEquationSelected() const = 0;
};
}