1 /* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */ 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 nsMacSharingService_h_ 7 #define nsMacSharingService_h_ 8 9 #include "nsIMacSharingService.h" 10 11 class nsMacSharingService : public nsIMacSharingService { 12 public: nsMacSharingService()13 nsMacSharingService() {} 14 15 NS_DECL_ISUPPORTS 16 NS_DECL_NSIMACSHARINGSERVICE 17 18 protected: ~nsMacSharingService()19 virtual ~nsMacSharingService() {} 20 }; 21 22 #endif // nsMacSharingService_h_ 23