Blame view

build2/epsilon-master/apps/picview/picview_app.h 252 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef PICVIEW_PICVIEW_APP_H
  #define PICVIEW_PICVIEW_APP_H
  
  #include <escher.h>
  #include "picview_controller.h"
  
  class PicViewApp : public App {
  public:
    PicViewApp(Container * container);
  private:
    PicViewController m_picViewController;
  };
  
  #endif