Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / bin / makeudfimage / Attribute.cpp
blobeb0bdd9b94ea3fe8166e46d6bd6e895286cbe658
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 //----------------------------------------------------------------------
8 /*! \file Attribute.h
10 BDataIO wrapper around a given attribute for a file. (implementation)
13 #include "Attribute.h"
15 Attribute::Attribute(BNode &node, const char *attribute)
16 : fNode(node)
17 , fAttribute(attribute)
21 ssize_t
22 Attribute::Read(void *buffer, size_t size)
24 return B_ERROR;
27 ssize_t
28 Attribute::Write(const void *buffer, size_t size)
30 return B_ERROR;