00001 /* 00002 * PerUintValue.cc 00003 * PerReadoutEvent 00004 * 00005 * Created by Simon Patton on 2/22/11. 00006 * Copyright 2011 DayaBay Collaboration. All rights reserved. 00007 * 00008 */ 00009 #include "PerReadoutEvent/PerUintValue.h" 00010 00011 PerUintValue::PerUintValue(unsigned int value) : 00012 m_value(value) { 00013 } 00014 00015 PerUintValue::~PerUintValue() { 00016 } 00017 00018 unsigned int PerUintValue::value() const { 00019 return m_value; 00020 }