Blame view

src/InputOutput/InputOutputInterface.php 517 Bytes
22521f1c   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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);
}

?>