| 226 | |
| 227 | template <typename T> |
| 228 | tRECT<T>::tRECT( T left, T top, T right, T bottom ) : |
| 229 | Left( left ), Right( right ), Top( top ), Bottom( bottom ) {} |
| 230 | |
| 231 | template <typename T> tRECT<T> tRECT<T>::copy() const { |
| 232 | return tRECT<T>( Left, Top, Right, Bottom ); |