/* drawing (DXF) to G-code (NGC) converter* Copyright 2013 Stefan Schuermans <stefan@schuermans.info>* Copyleft: CC-BY-SA http://creativecommons.org/licenses/by-sa/3.0/*/#include <iostream>#include "gcmd.h"#include "gfeed.h"/// constructorGFeed::GFeed():mFeed(10.0){}/// virtual destructorGFeed::~GFeed(){}/// output G-code command to streamvoid GFeed::toStrm(std::ostream &strm) const{strm << "F" << mFeed << std::endl;}