Torc  0.1
testtorclocalcontext.h
Go to the documentation of this file.
1 #ifndef TESTTORCLOCALCONTEXT_H
2 #define TESTTORCLOCALCONTEXT_H
3 
4 #include <QObject>
5 
6 class TestTorcLocalContext : public QObject
7 {
8  Q_OBJECT
9 
10  public:
11  TestTorcLocalContext(int argc, char **argv)
12  : mArgc(argc),
13  mArgv(argv)
14  {
15  }
16 
17  private slots:
18  void testTorcLocalContext(void);
19 
20  private:
21  Q_DISABLE_COPY(TestTorcLocalContext)
22  int mArgc;
23  char **mArgv;
24 };
25 
26 #endif // TESTTORCLOCALCONTEXT_H
TestTorcLocalContext(int argc, char **argv)