#ifndef _REMOTEPSAPP_PROCESSLIST_HPP_ #define _REMOTEPSAPP_PROCESSLIST_HPP_ #ifndef _REMOTEPSAPP_PROCESSITEM_HPP_ #include #endif class ProcessList : public Block { public: ProcessList(void); virtual ~ProcessList(); const String &computerName(void)const; void computerName(const String &strComputerName); private: String mStrComputerName; }; inline ProcessList::ProcessList(void) { } inline ProcessList::~ProcessList() { } inline const String &ProcessList::computerName(void)const { return mStrComputerName; } inline void ProcessList::computerName(const String &strComputerName) { mStrComputerName=strComputerName; } #endif