Fixed- and floating-point inputs.

This commit is contained in:
Marcel Keller
2019-07-11 14:59:18 +10:00
parent 8f0f25fa5b
commit 5ef70589cb
34 changed files with 304 additions and 83 deletions

14
Processor/IntInput.cpp Normal file
View File

@@ -0,0 +1,14 @@
/*
* IntInput.cpp
*
*/
#include "IntInput.h"
const char* IntInput::NAME = "integer";
void IntInput::read(std::istream& in, const int* params)
{
(void) params;
in >> items[0];
}