-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibgit4cpp.h
More file actions
37 lines (32 loc) · 1.25 KB
/
Copy pathlibgit4cpp.h
File metadata and controls
37 lines (32 loc) · 1.25 KB
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
/**
* \file libgit4cpp.h
* \author Lars Fröhlich, Jannik Wöhnert
* \date Created on June 7, 2023
* \brief Main include file for libgit4cpp.
*
* \copyright Copyright 2023 Deutsches Elektronen-Synchrotron (DESY), Hamburg
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef LIBGIT4CPP_LIBGIT4CPP_H_
#define LIBGIT4CPP_LIBGIT4CPP_H_
#include "libgit4cpp/Error.h"
#include "libgit4cpp/Repository.h"
#include "libgit4cpp/types.h"
#include "libgit4cpp/wrapper_functions.h"
/// Namespace git contains all functions, classes, and other declarations of libgit4cpp.
namespace git {
}
#endif