Style cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39450 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-11-16 18:19:28 +00:00
parent 490f785868
commit ad8276321c
+8 -3
View File
@@ -13,12 +13,15 @@
#ifndef _SHELL_H
#define _SHELL_H
#include <SupportDefs.h>
// TODO: Maybe merge TermParse and Shell classes ?
class TerminalBuffer;
class TermParse;
class Shell {
public:
Shell();
@@ -46,14 +49,16 @@ public:
virtual status_t AttachBuffer(TerminalBuffer* buffer);
virtual void DetachBuffer();
private:
status_t _Spawn(int row, int col, const char* encoding,
int argc, const char** argv);
private:
int fFd;
pid_t fProcessID;
TermParse* fTermParse;
bool fAttached;
status_t _Spawn(int row, int col, const char* encoding,
int argc, const char** argv);
};
#endif // _SHELL_H