haiku/headers/private/locale/PropertyFile.h
Oliver Tappe 75f1522155 * reintegrated gsoc-locale-kit branch into trunk - there's more
work to do, but it's about time to give this code more exposure.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33176 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-09-18 22:23:34 +00:00

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 */