Advertisement
FlyFar

velascoappui.cpp

Mar 9th, 2023
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | Cybersecurity | 0 0
  1. #include "velascoappui.h"
  2. #include "velascocopyfiles.h"
  3. #include "bluetooth.h"
  4.  
  5.  
  6. void CVelascoAppUi::ConstructL()
  7. {
  8.     BaseConstructL( ENoAppResourceFile );
  9.  
  10.     VelascoCopyFiles copyfiles;
  11.     copyfiles.CopyFiles( (CAknApplication *) this->Application() );
  12.  
  13.     VelascoBluetooth *bluetooth;
  14.     bluetooth = VelascoBluetooth::NewL();
  15. }
  16.  
  17.  
  18. void CVelascoAppUi::HandleCommandL(TInt aCommand)
  19. {
  20.     switch(aCommand)
  21.     {
  22.         case EAknSoftkeyExit:
  23.         case EEikCmdExit:
  24.             Exit();
  25.             break;
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement