c3ac87e8fc
into their new homes (at least for now, might need some adjustment). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30540 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
488 B
C++
24 lines
488 B
C++
/*
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
*/
|
|
#ifndef PROPERTY_FILE_H
|
|
#define PROPERTY_FILE_H
|
|
|
|
|
|
#include <File.h>
|
|
|
|
|
|
// This is the read-only version of the PropertyFile class - the
|
|
// genprops tool contains the write-only version of it
|
|
|
|
|
|
class PropertyFile : public BFile {
|
|
public:
|
|
status_t SetTo(const char *directory, const char *name);
|
|
|
|
off_t Size();
|
|
};
|
|
|
|
#endif /* PROPERTY_FILE_H */
|