--- a/usbengines/usbotgwatcher/src/cusbstate.cpp Thu Dec 17 09:14:30 2009 +0200
+++ b/usbengines/usbotgwatcher/src/cusbstate.cpp Thu Jan 07 13:25:34 2010 +0200
@@ -42,6 +42,37 @@
//
// ---------------------------------------------------------------------------
//
+CUsbState* CUsbState::NewL(CUsbOtgWatcher* aWatcher)
+ {
+ CUsbState* self = new (ELeave) CUsbState(aWatcher);
+ CleanupStack::PushL(self);
+ self->ConstructL();
+ CleanupStack::Pop(self);
+ return self;
+ }
+
+// ---------------------------------------------------------------------------
+//
+// ---------------------------------------------------------------------------
+//
+void CUsbState::ConstructL()
+ {
+
+ }
+
+// ---------------------------------------------------------------------------
+//
+// ---------------------------------------------------------------------------
+//
+TUsbStateIds CUsbState::Id()
+ {
+ return EUsbStateUndefined;
+ }
+
+// ---------------------------------------------------------------------------
+//
+// ---------------------------------------------------------------------------
+//
void CUsbState::JustAdvancedToThisStateL()
{
}