1999-07-03 00:08:27 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-07-03 00:08:27 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-07-03 00:08:27 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-03 00:08:27 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2000-01-24 18:41:03 +03:00
|
|
|
* Contributor(s): Judson Valeski
|
1999-07-03 00:08:27 +04:00
|
|
|
*/
|
|
|
|
#ifndef __nsmimeinfoimpl_h___
|
|
|
|
#define __nsmimeinfoimpl_h___
|
|
|
|
|
|
|
|
#include "nsIMIMEInfo.h"
|
|
|
|
#include "nsIAtom.h"
|
2000-03-26 11:55:46 +04:00
|
|
|
#include "nsString.h"
|
2000-01-24 18:41:03 +03:00
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsCOMPtr.h"
|
1999-07-03 00:08:27 +04:00
|
|
|
|
|
|
|
class nsMIMEInfoImpl : public nsIMIMEInfo {
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2000-01-24 18:41:03 +03:00
|
|
|
NS_DECL_NSIMIMEINFO
|
1999-07-03 00:08:27 +04:00
|
|
|
|
|
|
|
// nsMIMEInfoImpl methods
|
2000-04-05 07:03:50 +04:00
|
|
|
nsMIMEInfoImpl();
|
2000-01-24 18:41:03 +03:00
|
|
|
nsMIMEInfoImpl(const char *aMIMEType);
|
|
|
|
virtual ~nsMIMEInfoImpl() {};
|
2000-01-25 05:40:16 +03:00
|
|
|
PRUint32 GetExtCount(); // returns the number of extensions associated.
|
1999-07-03 00:08:27 +04:00
|
|
|
|
2000-01-24 18:41:03 +03:00
|
|
|
// member variables
|
2000-01-25 05:40:16 +03:00
|
|
|
nsCStringArray mExtensions; // array of file extensions associated w/ this MIME obj
|
2000-01-24 18:41:03 +03:00
|
|
|
nsAutoString mDescription; // human readable description
|
|
|
|
nsCOMPtr<nsIURI> mURI; // URI pointing to data associated w/ this obj
|
2000-04-05 07:03:50 +04:00
|
|
|
PRUint32 mMacType, mMacCreator; // Mac file type and creator
|
2000-01-24 18:41:03 +03:00
|
|
|
protected:
|
2000-04-19 08:45:30 +04:00
|
|
|
nsCString mMIMEType;
|
1999-07-03 00:08:27 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
1999-07-06 18:37:24 +04:00
|
|
|
#endif //__nsmimeinfoimpl_h___
|