// File: scipiodata.h
// Created by: <Joern Reimerdes>
// Created on: 22.03.2005

/**
 * scipiodata.h - is part of the iwear-framework
 * @file
 * $Id: scipiodata.h 2376 2005-09-20 20:48:48Z jrei $
 * $Revision: 2376 $
 * $Author: jrei $
 * $Date: 2005-09-20 22:48:48 +0200 (Di, 20 Sep 2005) $
 *
 * This file is part of The iWear Framework.
 * In particular this file is part of the Framework Input Library
 *
 * The iWear Framework 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 as in version 2 of the License.

 * 
 * The iWear Framework is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * The iWear Framework; if not, write to the Free Software Foundation, Inc., 59
 * Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef __IWEAR_SCIPIODATA_H
#define __IWEAR_SCIPIODATA_H

#include <string>

namespace iwear {
namespace scipio{

using namespace std;

class ScipioData
{
public:

    ScipioData( string address, int32_t channel );
    
    ~ScipioData( void );

    /** The mac address (bluetooth), hostname (tcp) or  device name
	(serial) of the scipio */
    string address;

    /** The channel (bluetooth), port (tcp) or bits per second (serial) */
    int32_t channel;

    int32_t x;

    int32_t y;

    int32_t z;

    int32_t button;
    
protected:
    

private: 

};

} // scipio
} // iwear
#endif	//__IWEAR_SCIPIODATA_H


