Ejemplo n.º 1
0
    //Public method that allows to stop recording
    //It saves the reports list in the indicated path
    public void StopRecording()
    {
        VRPNEventManager.StopListeningAnalog(AnalogType, AnalogName, Record);
        BinaryFormatter bf   = new BinaryFormatter();
        FileStream      file = File.Create(path);

        bf.Serialize(file, data);
        file.Close();
        data        = new VRPNAnalog.AnalogReports();
        firstReport = true;
        isRecording = false;
    }