/* * This file is automatically Generated by ProtoGen r1.3. * Do not edit it. * * Copyright (c) 1995, 1996 Gunther Schadow. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef HL7_UNITSOFMEAISO1977CODE_H_ #define HL7_UNITSOFMEAISO1977CODE_H_ #pragma interface #include /* * CODE * * UnitsOfMeaIso1977Code(unused) -- units of measure iso528,1977 */ class UnitsOfMeaIso1977Code : public LinearCode { public: enum Value { invalid = LinearCode::invalid, not_present = LinearCode::not_present, null = LinearCode::null, first = LinearCode::first, Bot = first + 0, BTval = first + 0,//bottle Each = first + 1, EAval = first + 1,//each Grams = first + 2, GMval = first + 2,//grams KiloGrams = first + 3, KGval = first + 3,//kilograms Pou = first + 4, LBval = first + 4,//pounds MilliEqu = first + 5, MEQval = first + 5,//milliequivalent MilliGrams = first + 6, MGval = first + 6,//milligrams MilliLit = first + 7, MLval = first + 7,//milliliters Oun = first + 8, OZval = first + 8,//ounces SquCentiMet = first + 9, SCval = first + 9,//square centimeters Tab = first + 10, TBval = first + 10,//tablet Vial = first + 11, VLval = first + 11,//vial last = 11, size = last - first + 1 }; UnitsOfMeaIso1977Code(); UnitsOfMeaIso1977Code(Value val); UnitsOfMeaIso1977Code(const char *s); operator Value () const; private: static const char *_table[size]; }; inline UnitsOfMeaIso1977Code::UnitsOfMeaIso1977Code() : LinearCode(_table,(size_t)size) {} inline UnitsOfMeaIso1977Code::UnitsOfMeaIso1977Code(Value val) : LinearCode((int)val,_table,(size_t)size) {} inline UnitsOfMeaIso1977Code::UnitsOfMeaIso1977Code(const char *s) : LinearCode(s,_table,(size_t)size) {} inline UnitsOfMeaIso1977Code::operator UnitsOfMeaIso1977Code::Value () const { return (Value)(LinearCode::operator int()); } #endif /* ! HL7_UNITSOFMEAISO1977CODE_H_ */