www.pudn.com > BluetoothChat.rar > BluetoothObserver.h
#ifndef BLUETOOTHOBSERVER_H_
#define BLUETOOTHOBSERVER_H_
// CLASS DECLARATION
class MBluetoothObserver
{
public:
virtual void ServerStartedL() = 0;
virtual void DataReceivedL(const TDesC& aMessage) = 0;
virtual void ConnectedL() = 0;
virtual void HandleErrorL(TInt aErrorCode) = 0;
virtual void DeviceFoundL(TInt aResult) = 0;
};
#endif /*BLUETOOTHOBSERVER_H_*/