]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/file_driver.h
Apply patches from bugs #2325 and #2326 to fix FIFO bugs
[bacula/bacula] / bacula / src / stored / file_driver.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2017 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  * Routines for writing to the Cloud using S3 protocol.
21  *
22  * Written by Kern Sibbald, May MMXVI
23  */
24
25 #ifndef _FILE_DRV_H
26 #define _FILE_DRV_H
27
28 #include "bacula.h"
29 #include "stored.h"
30 #include "cloud_driver.h"   /* get base class definitions */
31
32 class file_driver: public cloud_driver {
33 public:
34    file_driver() {
35    };
36    ~file_driver() {
37    };
38 };
39
40 #endif /* _FILE_DRV_H */