]> git.mxchange.org Git - simgear.git/blob - simgear/io/SVNRepository.hxx
Introduce SGBinaryFile
[simgear.git] / simgear / io / SVNRepository.hxx
1 // DAVMirrorTree.hxx - mirror a DAV tree to the local file system
2 //
3 // Copyright (C) 2012  James Turner <zakalawe@mac.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19
20 #ifndef SG_IO_SVN_REPOSITORY_HXX
21 #define SG_IO_SVN_REPOSITORY_HXX
22
23 #include <simgear/io/AbstractRepository.hxx>
24 #include <memory>
25
26 namespace simgear  {
27
28 class SVNDirectory;
29 class SVNRepoPrivate;
30
31 class SVNRepository : public AbstractRepository
32 {
33 public:
34
35     SVNRepository(const SGPath& root, HTTP::Client* cl);
36     virtual ~SVNRepository();
37
38     SVNDirectory* rootDir() const;
39     virtual SGPath fsBase() const;
40
41     virtual void setBaseUrl(const std::string& url);
42     virtual std::string baseUrl() const;
43
44     virtual HTTP::Client* http() const;
45
46     virtual void update();
47
48     virtual bool isDoingSync() const;
49
50     virtual ResultCode failure() const;
51 private:
52     bool isBare() const;
53
54     std::auto_ptr<SVNRepoPrivate> _d;
55 };
56
57 } // of namespace simgear
58
59 #endif // of SG_IO_SVN_REPOSITORY_HXX