2 * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
7 #include "ShellParameters.h"
12 ShellParameters::ShellParameters(int argc
, const char* const* argv
,
13 const BString
& currentDirectory
)
17 fCurrentDirectory(currentDirectory
),
24 ShellParameters::SetArguments(int argc
, const char* const* argv
)
27 fArgumentCount
= argc
;
32 ShellParameters::SetCurrentDirectory(const BString
& currentDirectory
)
34 fCurrentDirectory
= currentDirectory
;
39 ShellParameters::SetEncoding(int encoding
)