2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2004-10-29 19:28:38 +00:00
|
|
|
#ifndef __nsUserInfoMac_h
|
|
|
|
#define __nsUserInfoMac_h
|
2001-05-08 07:19:39 +00:00
|
|
|
|
2004-10-29 19:28:38 +00:00
|
|
|
#include "nsIUserInfo.h"
|
2008-08-24 20:44:41 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2004-10-29 19:28:38 +00:00
|
|
|
|
|
|
|
class nsUserInfo: public nsIUserInfo
|
2001-05-08 07:19:39 +00:00
|
|
|
{
|
2004-10-29 19:28:38 +00:00
|
|
|
public:
|
2008-08-24 20:44:41 +00:00
|
|
|
nsUserInfo();
|
2004-10-29 19:28:38 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIUSERINFO
|
2014-07-06 15:25:31 +00:00
|
|
|
|
2017-07-06 12:00:35 +00:00
|
|
|
nsresult GetPrimaryEmailAddress(nsCString &aEmailAddress);
|
2014-07-06 15:25:31 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsUserInfo() {}
|
2001-05-08 07:19:39 +00:00
|
|
|
};
|
|
|
|
|
2004-10-29 19:28:38 +00:00
|
|
|
#endif /* __nsUserInfo_h */
|