//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: viciface_impl.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/01 13:47:42 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jussi Turunen
//
//Description:
//      Definition for vic's IDL-interface implementation class.
//
//Copyright:
//
//
//Licence:
//
//
//History:

#ifndef __VIC_VICIFACE_IMPL_H__
#define __VIC_VICIFACE_IMPL_H__

#include "viciface_skel.h"

class vic_control_impl : public vic_control_skel
{
    public:
        vic_control_impl(void);
        virtual ~vic_control_impl();
        
        virtual void start(const char *addr_);
        virtual void stop(void);

    private:
        // pid of the forked process
        int _cpid;
};

#endif // __VIC_VICIFACE_IMPL_H__
