//----------------------------------------------------------------------// This software is part of the OpenBeOS distribution and is covered// by the OpenBeOS license.//// Copyright (c) 2003 Tyler Dauwalder, tyler@dauwalder.net//----------------------------------------------------------------------/*! \file Attribute.hBDataIO wrapper around a given attribute for a file. (implementation)*/#include "Attribute.h"Attribute::Attribute(BNode &node, const char *attribute): fNode(node), fAttribute(attribute){}ssize_tAttribute::Read(void *buffer, size_t size){return B_ERROR;}ssize_tAttribute::Write(const void *buffer, size_t size){return B_ERROR;}