~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to src/legacy/Interface/Squeak.cc

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  return (*output[level]);
39
39
}
40
40
 
41
 
std::ostream & Squeak::mout(Squeal::exceptionLevel level) {
 
41
std::ostream & Squeak::mout(MAUS::Exception::exceptionLevel level) {
42
42
  getInstance();
43
43
  // eventually a map or somesuch I suspect
44
 
  if (level == Squeal::recoverable)
 
44
  if (level == MAUS::Exception::recoverable)
45
45
    return (*output[Squeak::error]);
46
46
  else
47
47
    return (*output[Squeak::fatal]);