blob: 085b45f766c43d4639f153ab0d6764c6b96d3154 [file] [log] [blame]
piotr66292512014-03-03 18:23:34 +01001/* -*- c++ -*- */
2/*
3 * Copyright 2014 <+YOU OR YOUR COMPANY+>.
4 *
5 * This is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
8 * any later version.
9 *
10 * This software is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street,
18 * Boston, MA 02110-1301, USA.
19 */
20
21//this is just a stub created by gr_modtool
22
23#ifndef _QA_RECEIVER_H_
24#define _QA_RECEIVER_H_
25
26#include <cppunit/extensions/HelperMacros.h>
27#include <cppunit/TestCase.h>
28
29namespace gr {
30 namespace gsm {
31
32 class qa_receiver : public CppUnit::TestCase
33 {
34 public:
35 CPPUNIT_TEST_SUITE(qa_receiver);
36 CPPUNIT_TEST(t1);
37 CPPUNIT_TEST_SUITE_END();
38
39 private:
40 void t1();
41 };
42
43 } /* namespace gsm */
44} /* namespace gr */
45
46#endif /* _QA_RECEIVER_H_ */
47