#include #include #include #include #include using namespace std; #include #include namespace std { namespace tr1 = boost; } // 테스트용 클래스 class CInt { public: CInt(int n = 0) { n_ = n; } CInt(const CInt &t) { n_ = t.n_; } const CInt& operator=(const CInt &t) { if (this != &t) { n_ = t.n_; } return *this; } const CInt& operator=(int n) { n_ = n; return *this; } ~CInt() {} public: void Print(string..