os/graphics/windowing/windowserver/nonnga/CLIENT/advancedpointerevent.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Contains dummy implementations for exported methods implemented in NGA version
    15 // of this file which share def files with WSERV NONNGA.
    16 // 
    17 //
    18 
    19 #include <w32std.h>
    20 #include "advancedpointerevent.inl"
    21 
    22 EXPORT_C TInt TAdvancedPointerEvent::DoGetPointerNumber() const
    23 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    24     @internalComponent */ 
    25 	{
    26 	ASSERT(0);
    27 	return 0;
    28 	}
    29 
    30 EXPORT_C TInt TAdvancedPointerEvent::DoGetProximity() const
    31 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    32     @internalComponent */ 
    33 	{
    34 	ASSERT(0);
    35 	return 0;
    36 	}
    37 
    38 EXPORT_C TInt TAdvancedPointerEvent::DoGetPressure() const
    39 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    40     @internalComponent */ 
    41 	{
    42 	ASSERT(0);
    43 	return 0;
    44 	}
    45 
    46 EXPORT_C TInt TAdvancedPointerEvent::DoGetProximityAndPressure() const
    47 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    48     @internalComponent */ 
    49 	{
    50 	ASSERT(0);
    51 	return 0;
    52 	}
    53 
    54 EXPORT_C void TWsEvent::InitAdvancedPointerEvent(TPointerEvent::TType /*aType*/, TUint /*aModifiers*/, const TPoint3D &/*aPoint3D*/, TUint8 /*aPointerNumber*/)
    55 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    56     @internalComponent */ 
    57 	{ 
    58 	ASSERT(0);
    59 	}
    60 
    61 EXPORT_C void TWsEvent::SetPointerNumber(TUint8 /*aPointerNumber*/)
    62 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    63     @internalComponent */ 
    64 	{
    65 	ASSERT(0);
    66 	}
    67 
    68 EXPORT_C void TWsEvent::SetPointerZ(TInt /*aZ*/)
    69 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    70     @internalComponent */ 
    71 	{
    72 	ASSERT(0);
    73 	}
    74 
    75 EXPORT_C TAdvancedPointerEvent::TAdvancedPointerEvent(const TAdvancedPointerEvent& /*aPointerEvent*/) // Copy Constructor
    76 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    77     @internalComponent */ 
    78 	{
    79 	ASSERT(0);
    80 	}
    81 
    82 EXPORT_C TAdvancedPointerEvent& TAdvancedPointerEvent::operator=(const TAdvancedPointerEvent& /*aPointerEvent*/) // Operator = overload
    83 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
    84     @internalComponent */ 
    85 	{
    86 	ASSERT(0);
    87 	return *this;
    88 	}