www.pudn.com > colortracker.rar > box.h
#ifndef _BOX_H_ #define _BOX_H_ /* ================================================================ */ templateclass TBox { public: T x; T y; T size; T scale; TBox (T size_, T x_, T y_, T scale_); TBox ():x(0),y(0),size(0),scale(0){}; TBox (TBox &other) { x = other.x; y = other.y; size = other.size; scale = other.scale; } }; /* ================================================================ */ #endif _BOX_H_