Example #1
0
  // コピー代入演算子。
  Job& Job::operator=(const Job& job) {
    ScanMember(job);

    return *this;
  }
Example #2
0
  // ムーブ代入演算子。
  Job& Job::operator=(Job&& job) {
    ScanMember(job);

    return *this;
  }
Example #3
0
 // ムーブコンストラクタ。
 Job::Job(Job&& job) {
   ScanMember(job);
 }
Example #4
0
 // コピーコンストラクタ。
 Job::Job(const Job& job) {
   ScanMember(job);
 }
Example #5
0
 // コピー代入演算子。
 Cache& Cache::operator=(const Cache& cache) {
   ScanMember(cache);
   return *this;
 }
Example #6
0
 // ムーブコンストラクタ。
 Cache::Cache(Cache&& cache) {
   ScanMember(cache);
 }
Example #7
0
 // コピーコンストラクタ。
 Cache::Cache(const Cache& cache) {
   ScanMember(cache);
 }