<?php /** * @interface InputOutputInterface * @brief Interface used to translate input data from client to AMDA_Integration module and translate output data from AMDA_Integration module to client * @details */ Interface InputOutputInterface { /* * @brief translate input data from client to AMDA_Integration module */ public function getInputData($input,$function); /* * @brief translate output data from AMDA_Integration module to client */ public function getOutput($data); } ?>