Add a few more fields for future
This commit is contained in:
parent
1fe46cdf8d
commit
7e363f6058
1 changed files with 6 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
|||
#ifndef INCLUDED_LOOLSESSION_HPP
|
||||
#define INCLUDED_LOOLSESSION_HPP
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#define LOK_USE_UNSTABLE_API
|
||||
#include <LibreOfficeKit/LibreOfficeKit.h>
|
||||
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
||||
|
@ -19,7 +21,6 @@
|
|||
|
||||
struct LOOLSession
|
||||
{
|
||||
public:
|
||||
LOOLSession(Poco::Net::WebSocket& ws, LibreOfficeKit *loKit);
|
||||
~LOOLSession();
|
||||
bool handleInput(char *buffer, int length);
|
||||
|
@ -29,6 +30,10 @@ public:
|
|||
std::string getStatus();
|
||||
void sendTile(Poco::StringTokenizer& tokens);
|
||||
|
||||
bool _haveSeparateProcess;
|
||||
pid_t _pid;
|
||||
int _pipe;
|
||||
|
||||
Poco::Net::WebSocket& _ws;
|
||||
LibreOfficeKit *_loKit;
|
||||
LibreOfficeKitDocument *_loKitDocument;
|
||||
|
|
Loading…
Reference in a new issue