diff -r e1b950c65cb4 -r 837f303aceeb epoc32/include/mw/mobexnotify.h --- a/epoc32/include/mw/mobexnotify.h Wed Mar 31 12:27:01 2010 +0100 +++ b/epoc32/include/mw/mobexnotify.h Wed Mar 31 12:33:34 2010 +0100 @@ -1,9 +1,9 @@ // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members +// under the terms of "Eclipse Public License v1.0" // which accompanies this distribution, and is available -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". +// at the URL "http://www.eclipse.org/legal/epl-v10.html". // // Initial Contributors: // Nokia Corporation - initial contribution. @@ -23,7 +23,9 @@ /** @internalComponent -Provides the call back interface for anything owned by CObex. +This class is only for internal use. + +Originally it provided the call back interface for anything owned by CObex. Note: This is an internal class which is not intended for use outside of the Transport<->Obex interface. Even where access rules allow it, external users should not call these functions as their implementation may change. @@ -31,11 +33,11 @@ NONSHARABLE_CLASS(MObexNotify) { - public: - virtual void Process(CObexPacket &aPacket) =0; - virtual void Error(TInt aError) =0; - virtual void TransportUp() =0; // Call back to start the obex session - virtual void TransportDown(TBool aForceTransportDeletion) =0; +public: + virtual void Process(CObexPacket &aPacket) =0; + virtual void Error(TInt aError) =0; + virtual void TransportUp() =0; + virtual void TransportDown(TBool aForceTransportDeletion) =0; }; #endif // __MOBEXNOTIFY_H__