-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit.hpp
More file actions
29 lines (26 loc) · 1.13 KB
/
Copy pathgit.hpp
File metadata and controls
29 lines (26 loc) · 1.13 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
#ifndef CPPGIT_GIT_HPP
#define CPPGIT_GIT_HPP
#include <tuple>
namespace cppgit {
// =====================================================================================
// Class: Git
// Description:
// =====================================================================================
class Git {
public:
// ==================== LIFECYCLE =======================================
Git();
~Git();
// ==================== ACCESSORS =======================================
[[nodiscard]] static std::tuple<int, int, int> version();
// ==================== MUTATORS =======================================
// ==================== OPERATORS =======================================
protected:
// ==================== METHODS =======================================
// ==================== DATA MEMBERS =======================================
private:
// ==================== METHODS =======================================
// ==================== DATA MEMBERS =======================================
}; // ----- end of class Git -----
} // namespace cppgit
#endif