Skip to content
OE_waitcolor.cpp 567 B
Newer Older
3dsman's avatar
3dsman committed
* This file is part of project OpenEmbroidery. It's copyrighted by
* the contributors recorded in the version control history of the file.
* Original project location https://code.electrolab.fr/openEmbroidery/openEmbroidery_software
*
* SPDX-License-Identifier: CECILL-2.1
* License-Filename: Licence_CeCILL_V2.1-en.txt
*/

#include "instructions/OE_waitcolor.h"

OE_waitcolor::OE_waitcolor(int index, OE_color color)
	threadColor = color;
	idPoint = index;
}

OE_waitcolor::~OE_waitcolor()
{
}

raoul's avatar
raoul committed
OE_color OE_waitcolor::getThreadColor()
{
	return threadColor;
}