File indexing completed on 2025-03-09 05:11:43

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 <QString>
0010 
0011 #include "checkoutoptions.h"
0012 #include "fetchoptions.h"
0013 #include "libkommit_export.h"
0014 
0015 namespace Git
0016 {
0017 
0018 class LIBKOMMIT_EXPORT AddSubmoduleOptions : public FetchOptions, public CheckoutOptions
0019 {
0020 public:
0021     AddSubmoduleOptions();
0022 
0023     QString url;
0024     QString path;
0025 };
0026 
0027 }