blob: 10ef70c5aaf67fdadac78d65acdf9738daff44e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
#ifndef INCLUDED_GRAS_BLOCK_I
#define INCLUDED_GRAS_BLOCK_I
%{
#include <gras/block.hpp>
%}
%include <gras/element.i>
%import <gras/tags.i>
%include <gras/tag_iter.i>
%import <gras/sbuffer.i>
%include <gras/buffer_queue.hpp>
%include <gras/block.hpp>
////////////////////////////////////////////////////////////////////////
// Create pythonic gateway to get and set
////////////////////////////////////////////////////////////////////////
%extend gras::Block
{
%insert("python")
%{
def set(self, key, value):
self._set_property(key, PMC_M(value))
def get(self, key):
return self._get_property(key)()
%}
}
#endif /*INCLUDED_GRAS_BLOCK_I*/
|