1*fce4895dSRene Gollent /* 2*fce4895dSRene Gollent * Copyright 2015, Rene Gollent, rene@gollent.com. 3*fce4895dSRene Gollent * Distributed under the terms of the MIT License. 4*fce4895dSRene Gollent */ 5*fce4895dSRene Gollent #ifndef ENUMERATION_VALUE_FORMATTER_H 6*fce4895dSRene Gollent #define ENUMERATION_VALUE_FORMATTER_H 7*fce4895dSRene Gollent 8*fce4895dSRene Gollent 9*fce4895dSRene Gollent #include "IntegerValueFormatter.h" 10*fce4895dSRene Gollent 11*fce4895dSRene Gollent 12*fce4895dSRene Gollent class EnumerationValueFormatter : public IntegerValueFormatter { 13*fce4895dSRene Gollent public: 14*fce4895dSRene Gollent EnumerationValueFormatter(Config* config); 15*fce4895dSRene Gollent virtual ~EnumerationValueFormatter(); 16*fce4895dSRene Gollent 17*fce4895dSRene Gollent virtual status_t FormatValue(Value* value, BString& _output); 18*fce4895dSRene Gollent }; 19*fce4895dSRene Gollent 20*fce4895dSRene Gollent 21*fce4895dSRene Gollent #endif // ENUMERATION_VALUE_FORMATTER_H 22