You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/engine/helix/helix-sp/hspauthmgr.h

38 lines
975 B

/*
*
* This software is released under the provisions of the GPL version 2.
* see file "COPYING". If that file is not available, the full statement
* of the license can be found at
*
* http://www.fsf.org/licensing/licenses/gpl.txt
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
* Portions (c) Paul Cifarelli 2005
*
*/
#ifndef _HSPAUTHMGR_H_
#define _HSPAUTHMGR_H_
#include "hxauth.h"
class HelixSimplePlayer;
class HSPAuthenticationManager : public IHXAuthenticationManager
{
private:
INT32 m_lRefCount;
BOOL m_bSentPassword;
HelixSimplePlayer *m_splayer;
public:
HSPAuthenticationManager(HelixSimplePlayer *pSplay);
virtual ~HSPAuthenticationManager();
STDTQT_METHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj);
STDMETHOD_(UINT32,AddRef) (THIS);
STDMETHOD_(UINT32,Release) (THIS);
STDTQT_METHOD(HandleAuthenticationRequest) (IHXAuthenticationManagerResponse* pResponse);
};
#endif