Style cleanup.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39450 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user