Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / gr-atsc / src / lib / qa_convolutional_interleaver.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2002 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef _QA_CONVOLUTIONAL_INTERLEAVER_H_
24 #define _QA_CONVOLUTIONAL_INTERLEAVER_H_
25
26 #include <cppunit/extensions/HelperMacros.h>
27 #include <cppunit/TestCase.h>
28
29 #include <convolutional_interleaver.h>
30
31 class qa_convolutional_interleaver : public CppUnit::TestCase {
32  private:
33   convolutional_interleaver<int>        *intl;
34   convolutional_interleaver<int>        *deintl;
35   
36   CPPUNIT_TEST_SUITE (qa_convolutional_interleaver);
37   CPPUNIT_TEST (t0);
38   CPPUNIT_TEST (t1);
39   CPPUNIT_TEST (t2);
40   CPPUNIT_TEST (t3);
41   CPPUNIT_TEST (t4);
42   CPPUNIT_TEST_SUITE_END ();
43
44  public:
45
46   void setUp (){
47     intl = 0;
48     deintl = 0;
49   }
50
51   void tearDown (){
52     delete intl;
53     intl = 0;
54     delete deintl;
55     deintl = 0;
56   }
57
58  private:
59
60   void t0 ();
61   void t1 ();
62   void t2 ();
63   void t3 ();
64   void t4 ();
65
66 };
67
68
69 #endif /* _QA_CONVOLUTIONAL_INTERLEAVER_H_ */