~mwinter4/maus/ckov-update

« back to all changes in this revision

Viewing changes to src/common_cpp/JsonCppProcessors/Common/ObjectProcessorNS/PointerRefItem-inl.hh

  • Committer: Chris Rogers
  • Date: 2013-03-19 14:21:55 UTC
  • mfrom: (659.1.63 release-candidate)
  • Revision ID: chris.rogers@stfc.ac.uk-20130319142155-65vwtifralro5ukv
Tags: MAUS-v0.5.1
MAUS-v0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
template <class ParentType, class ChildType>
29
29
PointerRefItem<ParentType, ChildType>::PointerRefItem(
30
30
                   std::string branch_name,
31
 
                   ProcessorBase<ChildType>* child_processor,
32
31
                   GetMethod getter,
33
32
                   SetMethod setter,
34
33
                   bool is_required)
35
34
    : BaseItem<ParentType>(), _branch(branch_name),
36
 
      _processor(child_processor), _setter(setter),
 
35
      _setter(setter),
37
36
      _getter(getter), _required(is_required) {
38
37
}
39
38