diff options
author | Josh Blum | 2012-09-10 00:07:24 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-10 00:07:24 -0700 |
commit | da20a4f4ca1b314db6d1f45a0018343cc2cc2151 (patch) | |
tree | 924844375a1442fe428ec572fa2972e8e854b487 /include/gnuradio/gras.hpp | |
parent | 0ed890033370ae853014f0d34065d9f566e86e54 (diff) | |
download | sandhi-da20a4f4ca1b314db6d1f45a0018343cc2cc2151.tar.gz sandhi-da20a4f4ca1b314db6d1f45a0018343cc2cc2151.tar.bz2 sandhi-da20a4f4ca1b314db6d1f45a0018343cc2cc2151.zip |
created gras.hpp header for common defs
Diffstat (limited to 'include/gnuradio/gras.hpp')
-rw-r--r-- | include/gnuradio/gras.hpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/gnuradio/gras.hpp b/include/gnuradio/gras.hpp new file mode 100644 index 0000000..c8b217c --- /dev/null +++ b/include/gnuradio/gras.hpp @@ -0,0 +1,34 @@ +// +// Copyright 2012 Josh Blum +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with io_sig program. If not, see <http://www.gnu.org/licenses/>. + +#ifndef INCLUDED_GNURADIO_GRAS_HPP +#define INCLUDED_GNURADIO_GRAS_HPP + +#include <boost/shared_ptr.hpp> +#include <boost/weak_ptr.hpp> + +//this is part of core for now, treat it as such +#include <gr_core_api.h> +#define GRAS_API GR_CORE_API + +namespace gnuradio +{ + +struct ElementImpl; + +} //namespace gnuradio + +#endif /*INCLUDED_GNURADIO_GRAS_HPP*/ |