예제 #1
0
 String(mojo::temporary<String> src) 
 {
   String& rhs = src.get();
   data_.swap(rhs.data_);
 }
예제 #2
0
파일: mojo.cpp 프로젝트: IMCG/cpptruths
 MoveOnlyString (mojo::temporary<char> t) throw () // The proxy move constructor
   : data_(t.get())
 {
   printf("mojo::temporary to MoveOnlyString constructor\n");
 }