Line data Source code
1 : /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 : /* This Source Code Form is subject to the terms of the Mozilla Public
3 : * License, v. 2.0. If a copy of the MPL was not distributed with this
4 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 :
6 : #ifndef nsPackageKitService_h_
7 : #define nsPackageKitService_h_
8 :
9 : #include "nsIPackageKitService.h"
10 :
11 : #define NS_PACKAGEKITSERVICE_CID \
12 : {0x9c95515e, 0x611d, 0x11e4, {0xb9, 0x7e, 0x60, 0xa4, 0x4c, 0x71, 0x70, 0x42}}
13 :
14 0 : class nsPackageKitService final : public nsIPackageKitService
15 : {
16 : public:
17 : NS_DECL_ISUPPORTS
18 : NS_DECL_NSIPACKAGEKITSERVICE
19 :
20 : nsresult Init();
21 :
22 : private:
23 : ~nsPackageKitService();
24 : };
25 :
26 : #endif
|