In the command-line client, forbid
[svn.git] / subversion / tests / libsvn_repos / dir-delta-editor.h
blobf3dd3a798846e2a405fbf5bb6efbe355b0a86678
1 /*
2 * svn_tests_editor.c: a `dummy' editor implementation for testing
4 * ====================================================================
5 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
7 * This software is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at http://subversion.tigris.org/license-1.html.
10 * If newer versions of this license are posted there, you may use a
11 * newer version instead, at your option.
13 * This software consists of voluntary contributions made by many
14 * individuals. For exact contribution history, see the revision
15 * history and logs, available at http://subversion.tigris.org/.
16 * ====================================================================
19 /* ==================================================================== */
23 #ifndef SVN_TEST__DIR_DELTA_EDITOR_H
24 #define SVN_TEST__DIR_DELTA_EDITOR_H
26 #include <stdio.h>
28 #include <apr_pools.h>
30 #include "svn_types.h"
31 #include "svn_error.h"
32 #include "svn_delta.h"
34 #ifdef __cplusplus
35 extern "C" {
36 #endif /* __cplusplus */
39 svn_error_t *
40 dir_delta_get_editor(const svn_delta_editor_t **editor,
41 void **edit_baton,
42 svn_fs_t *fs,
43 svn_fs_root_t *txn_root,
44 const char *path,
45 apr_pool_t *pool);
48 #ifdef __cplusplus
50 #endif /* __cplusplus */
52 #endif /* SVN_TEST__DIR_DELTA_EDITOR_H */