00001 /* 00002 ----------------------------------------------------------------------------- 00003 00004 File: Attribute.h 00005 00006 Description: Attribute structure used by the stream classes 00007 00008 Copyright 2004, yellowTAB GmbH, All rights reserved. 00009 00010 Developer: Frans van Nispen 00011 00012 ----------------------------------------------------------------------------- 00013 */ 00014 00015 #ifndef __ATTRIBUTE_H 00016 #define __ATTRIBUTE_H 00017 00018 class BString; 00019 00020 struct Attribute 00021 { 00022 Attribute(const char *name, const char *value) 00023 { 00024 fName = name; 00025 fValue = value; 00026 } 00027 00028 BString fName; 00029 BString fValue; 00030 }; 00031 00032 #endif