mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
79 lines
1.7 KiB
C++
79 lines
1.7 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsIClassInfoImpl.h"
|
|
#include "nsIProgrammingLanguage.h"
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
GenericClassInfo::AddRef()
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
GenericClassInfo::Release()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
NS_IMPL_QUERY_INTERFACE1(GenericClassInfo, nsIClassInfo)
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetInterfaces(PRUint32* countp, nsIID*** array)
|
|
{
|
|
return mData->getinterfaces(countp, array);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetHelperForLanguage(PRUint32 language, nsISupports** helper)
|
|
{
|
|
if (mData->getlanguagehelper)
|
|
return mData->getlanguagehelper(language, helper);
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetContractID(char** contractid)
|
|
{
|
|
NS_ERROR("GetContractID not implemented");
|
|
*contractid = NULL;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetClassDescription(char** description)
|
|
{
|
|
*description = NULL;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetClassID(nsCID** classid)
|
|
{
|
|
NS_ERROR("GetClassID not implemented");
|
|
*classid = NULL;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetImplementationLanguage(PRUint32* language)
|
|
{
|
|
*language = nsIProgrammingLanguage::CPLUSPLUS;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetFlags(PRUint32* flags)
|
|
{
|
|
*flags = mData->flags;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
GenericClassInfo::GetClassIDNoAlloc(nsCID* aClassIDNoAlloc)
|
|
{
|
|
*aClassIDNoAlloc = mData->cid;
|
|
return NS_OK;
|
|
}
|