QuicMaf/QuicMaf/maths/terms/Constant.h

18 lines
296 B
C++

#ifndef CONSTANT_H
#define CONSTANT_H
#pragma once
#include "../defines.h"
#include "Term.h"
using namespace std;
class Constant : public Term {
public:
Constant(NValue val = 0, NValue pwr = 1) {
Term();
mValue = val;
mPower = pwr;
mType = TermTypes::Const;
}
};
#endif // !CONSTANT_H