This file is indexed.

/usr/include/simgear/io/SVNRepository.hxx is in libsimgear-dev 3.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// DAVMirrorTree.hxx - mirror a DAV tree to the local file system
//
// Copyright (C) 2012  James Turner <zakalawe@mac.com>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.


#ifndef SG_IO_DAVMIRRORTREE_HXX
#define SG_IO_DAVMIRRORTREE_HXX

#include <string>
#include <vector>
#include <memory>

#include <simgear/misc/sg_path.hxx>

namespace simgear  {
  
  namespace HTTP {
    class Client;
  }
  
class SVNDirectory;  
class SVNRepoPrivate;

class SVNRepository
{
public:
  
    SVNRepository(const SGPath& root, HTTP::Client* cl);
    ~SVNRepository();

    SVNDirectory* rootDir() const;
    SGPath fsBase() const;

    void setBaseUrl(const std::string& url);
    std::string baseUrl() const;

    HTTP::Client* http() const;

    void update();

    bool isDoingSync() const;
    
    enum ResultCode {
        SVN_NO_ERROR = 0,
        SVN_ERROR_NOT_FOUND,
        SVN_ERROR_SOCKET,
        SVN_ERROR_XML,
        SVN_ERROR_TXDELTA,
        SVN_ERROR_IO,
        SVN_ERROR_CHECKSUM,
        SVN_ERROR_FILE_NOT_FOUND,
        SVN_ERROR_HTTP
    };
    
    ResultCode failure() const;
private:
    bool isBare() const;
    
    std::auto_ptr<SVNRepoPrivate> _d;
};

} // of namespace simgear

#endif // of SG_IO_DAVMIRRORTREE_HXX