File indexing completed on 2025-01-05 05:14:46

0001 /*
0002 SPDX-FileCopyrightText: 2021 Hamed Masafi <hamed.masfi@gmail.com>
0003 
0004 SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QSharedPointer>
0010 
0011 #include "libkommit_export.h"
0012 
0013 namespace Git
0014 {
0015 
0016 class Tree;
0017 class LIBKOMMIT_EXPORT ITree
0018 {
0019 public:
0020     virtual ~ITree();
0021     virtual QSharedPointer<Tree> tree() const = 0;
0022 };
0023 
0024 inline ITree::~ITree()
0025 {
0026 }
0027 
0028 }