Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > 87f956008f5479527bcce97ec30dbca7 > files > 186

fityk-debug-0.8.6-3mdv2009.1.i586.rpm

// This file is part of fityk program. Copyright (C) Marcin Wojdyr
// Licence: GNU General Public License version 2
// $Id: gnuplot.h 264 2007-03-01 10:10:54Z wojdyr $

#ifndef FITYK__GNUPLOT__H__
#define FITYK__GNUPLOT__H__
#include <stdio.h>
#include <vector>
#include "../common.h"

class GnuPlot
{
public:
    GnuPlot();
    ~GnuPlot();
    int plot();
    static char path_to_gnuplot[] ; 

private:
    FILE *gnuplot_pipe;

    void fork_and_make_pipe ();
    bool gnuplot_pipe_ok();
};

#endif