/** Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.* Distributed under the terms of the MIT License.*/#include "ActiveProcessInfo.h"ActiveProcessInfo::ActiveProcessInfo():fID(-1),fName(),fCurrentDirectory(){}voidActiveProcessInfo::SetTo(pid_t id, const BString& name,const BString& currentDirectory){fID = id;fName = name;fCurrentDirectory = currentDirectory;}voidActiveProcessInfo::Unset(){fID = -1;fName = BString();fCurrentDirectory = BString();}