FlightGear next
addon_fwd.hxx
Go to the documentation of this file.
1// -*- coding: utf-8 -*-
2//
3// addon_fwd.hxx --- Forward declarations for the FlightGear add-on
4// infrastructure
5// Copyright (C) 2017 Florent Rougon
6//
7// This program is free software; you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation; either version 2 of the License, or
10// (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License along
18// with this program; if not, write to the Free Software Foundation, Inc.,
19// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21#ifndef FG_ADDON_FWD_HXX
22#define FG_ADDON_FWD_HXX
23
24#include <simgear/structure/SGSharedPtr.hxx>
25
26namespace flightgear
27{
28
29namespace addons
30{
31
32class Addon;
33class AddonManager;
34class AddonVersion;
37
38enum class UrlType;
39class QualifiedUrl;
40
41enum class ContactType;
42class Contact;
43class Author;
44class Maintainer;
45
46using AddonRef = SGSharedPtr<Addon>;
47using AddonVersionRef = SGSharedPtr<AddonVersion>;
48using ContactRef = SGSharedPtr<Contact>;
49using AuthorRef = SGSharedPtr<Author>;
50using MaintainerRef = SGSharedPtr<Maintainer>;
51
67
68} // of namespace addons
69
70} // of namespace flightgear
71
72#endif // of FG_ADDON_FWD_HXX
SGSharedPtr< Author > AuthorRef
Definition addon_fwd.hxx:49
SGSharedPtr< Addon > AddonRef
Definition addon_fwd.hxx:46
SGSharedPtr< Contact > ContactRef
Definition addon_fwd.hxx:48
SGSharedPtr< Maintainer > MaintainerRef
Definition addon_fwd.hxx:50
SGSharedPtr< AddonVersion > AddonVersionRef
Definition addon_fwd.hxx:47
FlightPlan.hxx - defines a full flight-plan object, including departure, cruise, arrival information ...
Definition Addon.cxx:53