aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Requirements/src/location.cc
blob: d4c8aef4d3c8bb20ab20314ed7368a9ce9ef5e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <location.hh>
#include <iostream>

namespace Requirements {

  void location_t::output(ostream& os) const
  {
    os << "vi:"  << vi << ",it:" << it << ", ";
    os << "[rl:" << rl << ",";
    os <<  "tl:" << tl << ",";
    os <<  "m:"  << m << "]";
  }
}