~ubuntu-branches/ubuntu/trusty/gnuradio/trusty-updates

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/gengen/gr_multiply_XX.h.t

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2012-02-26 21:26:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120226212616-vsfkbi1158xshdql
Tags: 3.5.1-1
* new upstream version, re-packaged from scratch with modern tools
    closes: #642716, #645332, #394849, #616832, #590048, #642580,
    #647018, #557050, #559640, #631863
* CMake build

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#ifndef @GUARD_NAME@
26
26
#define @GUARD_NAME@
27
27
 
 
28
#include <gr_core_api.h>
28
29
#include <gr_sync_block.h>
29
30
 
30
31
class @NAME@;
31
32
typedef boost::shared_ptr<@NAME@> @SPTR_NAME@;
32
33
 
33
 
@SPTR_NAME@ gr_make_@BASE_NAME@ (size_t vlen = 1);
 
34
GR_CORE_API @SPTR_NAME@ gr_make_@BASE_NAME@ (size_t vlen = 1);
34
35
 
35
36
/*!
36
37
 * \brief output = prod (input_0, input_1, ...)
38
39
 *
39
40
 * Multiply across all input streams.
40
41
 */
41
 
class @NAME@ : public gr_sync_block
 
42
class GR_CORE_API @NAME@ : public gr_sync_block
42
43
{
43
 
  friend @SPTR_NAME@ gr_make_@BASE_NAME@ (size_t vlen);
 
44
  friend GR_CORE_API @SPTR_NAME@ gr_make_@BASE_NAME@ (size_t vlen);
44
45
 
45
46
  @NAME@ (size_t vlen);
46
47