1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "picview_controller.h" PicViewController::PicViewController(Responder * parentResponder) : ViewController(parentResponder), m_view(PicView()) { } View * PicViewController::view() { return &m_view; } /* const char * PicViewController::title() { return "PicView"; } */