mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/.
|
|
* This Original Code has been modified by IBM Corporation. Modifications made by IBM
|
|
* described herein are Copyright (c) International Business Machines Corporation, 2000.
|
|
* Modifications to Mozilla code or documentation identified per MPL Section 3.3
|
|
*
|
|
* Date Modified by Description of modification
|
|
* 05/11/2000 IBM Corp. Created for OS/2 VisualAge build.
|
|
*/
|
|
|
|
#include "nsUserInfo.h"
|
|
#include "nsString.h"
|
|
#include "nsCRT.h"
|
|
#include "nsXPIDLString.h"
|
|
|
|
nsUserInfo::nsUserInfo()
|
|
{
|
|
}
|
|
|
|
nsUserInfo::~nsUserInfo()
|
|
{
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS1(nsUserInfo,nsIUserInfo)
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetUsername(char **aUsername)
|
|
{
|
|
*aUsername = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetFullname(PRUnichar **aFullname)
|
|
{
|
|
*aFullname = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetDomain(char * *aDomain)
|
|
{
|
|
*aDomain = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsUserInfo::GetEmailAddress(char * *aEmailAddress)
|
|
{
|
|
*aEmailAddress = nullptr;
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|