trick/trick_source/sim_services/MemoryManager/RefParseContext.cpp
Michael Vetter 18f0d7e871 Remove trailing whitespaces
Makes it easier to edit the files. So if we press 'end of line' we are
really at the end of line.
2016-11-08 10:25:07 +01:00

28 lines
476 B
C++

#include <stdio.h>
#include <stdlib.h>
#include "trick/RefParseContext.hh"
/**
Constructor
*/ RefParseContext::RefParseContext( Trick::MemoryManager *in_mem_mgr, std::istream* in_is = &std::cin ) {
// Set verif input and echo input flags.
verify_input = 0;
echo_input = 1;
// Initialize the scanner
init_scanner();
this->is = in_is;
this->mem_mgr = in_mem_mgr;
}
/**
Destructor
*/
RefParseContext::~RefParseContext() {
destroy_scanner();
}