Skip to content
OE_instruction.cpp 580 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_instruction.h"

raoul's avatar
raoul committed
OE_instruction::OE_instruction() : idPoint(0)
{
}

OE_instruction::~OE_instruction()
{
}

int OE_instruction::getIdPoint()
{
	return idPoint;
}

void OE_instruction::setIdPoint(int index)
{
	idPoint = index;
}