/***************************************************************************
* TCPIPConnectionType.h *
* ------------------- *
* copyright : (C) 2010 by Jesus Garrido *
* email : jgarrido@atc.ugr.es *
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef TCPIPCONNECTIONTYPE_H_
#define TCPIPCONNECTIONTYPE_H_
/*!
* \file TCPIPConnectionType.h
*
* \author Jesus Garrido
* \date December 2010
*
* This file declares an enum type with only two available values (server and client).
*/
enum TCPIPConnectionType {SERVER, CLIENT};
#endif /* TCPIPCONNECTIONTYPE_H_ */