mirror of
https://review.haiku-os.org/haiku
synced 2025-01-27 16:54:49 +01:00
500bb6305c
(console-)tool git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40261 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
340 B
C++
25 lines
340 B
C++
/*
|
|
* Copyright 2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _REPOSITORY_H_
|
|
#define _REPOSITORY_H_
|
|
|
|
|
|
#include <Archivable.h>
|
|
|
|
|
|
class BMessage;
|
|
|
|
|
|
class BRepository {
|
|
public:
|
|
BRepository(const char* url);
|
|
|
|
public:
|
|
static BArchivable* Instantiate(BMessage* archive);
|
|
};
|
|
|
|
|
|
#endif // _REPOSITORY_H_
|