1.1 --- a/epoc32/include/app/vobserv.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/app/vobserv.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 // All rights reserved.
1.6 // This component and the accompanying materials are made available
1.7 -// 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
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -253,5 +253,36 @@
1.16 private:
1.17 IMPORT_C virtual void Reserved2();
1.18 };
1.19 +
1.20 +/** Extension interface UID
1.21 +@publishedAll
1.22 +@released
1.23 +*/
1.24 +const TUid KUidVersitPluginExtensionBase64Termination = {0x10285A92};
1.25 +
1.26 +/**
1.27 +Provides an extension to the MVersitPlugIn interface to allow a different ending of
1.28 +the base64 multi-lines from the default format.
1.29 +
1.30 +Implementation of this interface is optional. Parser behaviour is not modified
1.31 +if the function MVersitPlugIn::GetInterface() has not been implemented or does
1.32 +not return an instance of a class implementing this interface when passed the
1.33 +Uid parameter value KUidVersitPluginExtensionBase64Termination.
1.34 +
1.35 +@publishedAll
1.36 +@released
1.37 +*/
1.38 +class MVersitPlugInExtensionBase64Ending
1.39 + {
1.40 +public:
1.41 +
1.42 + /** Allows Base64 encoding multi-lines without leading space and/or a blank line at the end
1.43 +
1.44 + @return ETrue, if the base64 data doesn't have leading spaces and/or a blank line at the end. The
1.45 + versit parser will then search for ":" to determine if the next line is a continuation or a
1.46 + new property
1.47 + */
1.48 + virtual TBool BlankLineAndLeadingSpaceNotRequired()=0;
1.49 + };
1.50
1.51 #endif