BlinkenArea - GitList
Repositories
Blog
Wiki
dxfngc
Code
Commits
Branches
Tags
Search
Tree:
1030916
Branches
Tags
master
dxfngc
src
gdwell.h
license CC-BY-SA --> GPL (more suitable for source code)
Stefan Schuermans
commited
1030916
at 2013-05-27 17:35:02
gdwell.h
Blame
History
Raw
/* drawing (DXF) to G-code (NGC) converter * Copyright 2013 Stefan Schuermans <stefan@schuermans.info> * Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html */ #ifndef GDWELL_H #define GDWELL_H #include <iostream> #include "gcmd.h" /// G-code command dwell (G4) class GDwell: public GCmd { public: /// constructor GDwell(); /// virtual destructor virtual ~GDwell(); /// output G-code command to stream virtual void toStrm(std::ostream &strm) const; double mSec; ///< dwell time in seconds, must always be positive }; #endif // #ifndef GDWELL_H