michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * vim:expandtab:shiftwidth=2:tabstop=2:cin: michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef __nsDBusHandlerAppImpl_h__ michael@0: #define __nsDBusHandlerAppImpl_h__ michael@0: michael@0: #include "nsString.h" michael@0: #include "nsIMIMEInfo.h" michael@0: michael@0: class nsDBusHandlerApp : public nsIDBusHandlerApp michael@0: { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSIHANDLERAPP michael@0: NS_DECL_NSIDBUSHANDLERAPP michael@0: michael@0: nsDBusHandlerApp() { } michael@0: michael@0: virtual ~nsDBusHandlerApp() { } michael@0: michael@0: protected: michael@0: nsString mName; michael@0: nsString mDetailedDescription; michael@0: nsCString mService; michael@0: nsCString mMethod; michael@0: nsCString mInterface; michael@0: nsCString mObjpath; michael@0: michael@0: }; michael@0: #endif