~ubuntu-branches/ubuntu/trusty/nordugrid-arc/trusty

« back to all changes in this revision

Viewing changes to src/hed/libs/compute/EntityRetriever.cpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2013-11-29 13:39:10 UTC
  • mfrom: (3.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20131129133910-sy6ayoavphc5hozs
Tags: 4.0.0-1
4.0.0 Release (Closes: #715131) (LP: #1049798)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
namespace Arc {
12
12
 
 
13
  template<> Logger EntityRetriever<Endpoint>::logger(Logger::getRootLogger(), "ServiceEndpointRetriever");
 
14
  template<> Logger EntityRetriever<ComputingServiceType>::logger(Logger::getRootLogger(), "TargetInformationRetriever");
 
15
  template<> Logger EntityRetriever<Job>::logger(Logger::getRootLogger(), "JobListRetriever");
 
16
 
13
17
  template<typename T>
14
18
  EntityRetriever<T>::EntityRetriever(const UserConfig& uc, const EndpointQueryOptions<T>& options)
15
19
    : common(new Common(this, uc)),
481
485
  }
482
486
 
483
487
  template class EntityRetriever<Endpoint>;
484
 
  template<> Logger EntityRetriever<Endpoint>::logger(Logger::getRootLogger(), "ServiceEndpointRetriever");
485
 
 
486
488
  template class EntityRetriever<ComputingServiceType>;
487
 
  template<> Logger EntityRetriever<ComputingServiceType>::logger(Logger::getRootLogger(), "TargetInformationRetriever");
488
 
 
489
489
  template class EntityRetriever<Job>;
490
 
  template<> Logger EntityRetriever<Job>::logger(Logger::getRootLogger(), "JobListRetriever");
491
490
 
492
491
} // namespace Arc