This commit is contained in:
spider%netscape.com 1998-10-30 00:50:04 +00:00
Родитель c28e2df887
Коммит 56c337efcb
3 изменённых файлов: 119 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,38 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef nsMIMEService_h___
#define nsMIMEService_h___
#include "nsIMIMEService.h"
class nsMIMEService : public nsIMIMEService
{
public:
nsMIMEService();
NS_DECL_ISUPPORTS
NS_IMETHOD Init() ;
protected:
~nsMIMEService();
};
#endif /* nsMIMEService_h___ */

Просмотреть файл

@ -0,0 +1,39 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef nsIMIMEService_h___
#define nsIMIMEService_h___
#include "nsISupports.h"
#include "nsString.h"
//08d3c0f0-6f90-11d2-8dbc-00805f8a7ab6
#define NS_IMIME_SERVICE_IID \
{ 0x08d3c0f0, 0x6f90, 0x11d2, \
{ 0x8d, 0xbc, 0x00, 0x80, 0x5f, 0x8a, 0x7a, 0xb6 } }
class nsIMIMEService : public nsISupports
{
public:
NS_IMETHOD Init() = 0;
};
#endif /* nsIMIMEService_h___ */

Просмотреть файл

@ -0,0 +1,42 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "nsMIMEService.h"
#include "nsxpfcCIID.h"
static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
static NS_DEFINE_IID(kMIMEServiceIID, NS_IMIME_SERVICE_IID);
nsMIMEService :: nsMIMEService()
{
NS_INIT_REFCNT();
}
nsMIMEService :: ~nsMIMEService()
{
}
NS_IMPL_ADDREF(nsMIMEService)
NS_IMPL_RELEASE(nsMIMEService)
NS_IMPL_QUERY_INTERFACE(nsMIMEService, kMIMEServiceIID)
nsresult nsMIMEService::Init()
{
return NS_OK;
}