18 lines
228 B
C++
18 lines
228 B
C++
#pragma once
|
|
|
|
#include "Function.h"
|
|
|
|
namespace MbD {
|
|
class FunctionXY : public Function
|
|
{
|
|
//x y
|
|
public:
|
|
FunctionXY();
|
|
FunctionXY(Symsptr base, Symsptr exp);
|
|
|
|
Symsptr x, y;
|
|
|
|
};
|
|
}
|
|
|