/* lyxconnect.h * Copyright 1999 Alejandro Aguilar Sierra * * 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 2, or (at your option) * any later version. */ #ifndef _LYXCONNECT_H #define _LYXCONNECT_H class LyXConnect { public: LyXConnect(); ~LyXConnect(); void connect(); void closepipe(); void submit(char *command, const char *argument); private: bool lyx_listen; int pipein, pipeout; std::string pipename; std::string clientname; }; #endif