Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main_tester.hpp « qt_tstfrm - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c72bec542eeb37f99e88991d9e71f6c2a1ca152a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "../std/function.hpp"

class QWidget;

namespace tst
{
  /// Base tester. Can work with any widgets from widgets.hpp
  /// Works in screen coordinates with user defined widget.
  class BaseTester
  {
  public:

    /// Main run function.
    int Run(char const * name, function<QWidget * (void)> const & fn);
  };
}