1//----------------------------------------------------------------------
2//  This software is part of the OpenBeOS distribution and is covered
3//  by the OpenBeOS license.
4//
5//  Copyright (c) 2003 Tyler Dauwalder, tyler@dauwalder.net
6//----------------------------------------------------------------------
7
8/*! \file Attribute.h
9
10	BDataIO wrapper around a given attribute for a file. (implementation)
11*/
12
13#include "Attribute.h"
14
15Attribute::Attribute(BNode &node, const char *attribute)
16	: fNode(node)
17	, fAttribute(attribute)
18{
19}
20
21ssize_t
22Attribute::Read(void *buffer, size_t size)
23{
24	return B_ERROR;
25}
26
27ssize_t
28Attribute::Write(const void *buffer, size_t size)
29{
30	return B_ERROR;
31}
32