// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information. #ifndef INCLUDED_GRAS_BLOCK_I #define INCLUDED_GRAS_BLOCK_I %module (package="gras") GRAS_Block %{ #include %} %import %import %include %import %include %include %include %include //////////////////////////////////////////////////////////////////////// // Create pythonic methods //////////////////////////////////////////////////////////////////////// %pythoncode %{ from PMC import * %} %extend gras::Block { %insert("python") %{ def post_output_msg(self, which_output, value): if not isinstance(value, PMCC): value = PMC_M(value) self._post_output_msg(which_output, value) def post_input_msg(self, which_input, value): if not isinstance(value, PMCC): value = PMC_M(value) self._post_input_msg(which_input, value) %} } #endif /*INCLUDED_GRAS_BLOCK_I*/