www.pudn.com > colortracker.rar > box.cpp


#include "pp_preprocessor.h" 
#include "box.h"
 
/* ================================================================ */ 

template <>
TBox::TBox(TBox &other){
	x = (int) other.x;
	y = (int) other.y;
	size = (int) other.size;
	scale = (int) other.scale;
}
 
/* ================================================================ */