Blame view

emulateur/epsilon-nofrendo/apps/usb/app.cpp 618 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  #include "app.h"
  #include "../apps_container.h"
  #include <assert.h>
  
  namespace USB {
  
  I18n::Message App::Descriptor::name() {
    return upperName();
  }
  
  I18n::Message App::Descriptor::upperName() {
    return I18n::Message::USBAppCapital;
  }
  
  App * App::Snapshot::unpack(Container * container) {
    return new App(container, this);
  }
  
  App::Descriptor * App::Snapshot::descriptor() {
    static Descriptor descriptor;
    return &descriptor;
  }
  
  App::App(Container * container, Snapshot * snapshot) :
    ::App(container, snapshot, &m_usbConnectedController)
  {
  }
  
  bool App::processEvent(Ion::Events::Event e) {
    return false;
  }
  
  }