d25dd4b920
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36203 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
483 B
C++
24 lines
483 B
C++
/*
|
|
* Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT 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 */
|