1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef ADDRESS_VALUE_H
6#define ADDRESS_VALUE_H
7
8
9#include "IntegerValue.h"
10
11
12class AddressValue : public IntegerValue {
13public:
14								AddressValue(const BVariant& value);
15	virtual						~AddressValue();
16
17	virtual	bool				ToString(BString& _string) const;
18};
19
20
21#endif	// ADDRESS_VALUE_H
22