/**
@file kommunikation.h
@brief  the heart of the voice transmission
*/

#ifndef VOICETRANS_COMM_H
#define VOICETRANS_COMM_H




namespace iwear {
    namespace voicetransmission {



/** transmitting data through the network  */
int senderWork(void *);

/** receiving data of the network */
int receiverWork(void *);


int main(int argc, char **argv);

/** starts the menue of the voice_transmission */
void menu();

/** waiting for user input */
int auswahl();

/** asks for IP and password */
void userIP();

/** clear screen */
void clrscr();

 int sendAndHear(int);

    } // namespace voicetransmission

} // namespace iwear

#endif


