40 lines
683 B
C++
40 lines
683 B
C++
#ifndef _REMOTEPSAPP_PROCESSLIST_HPP_
|
|
#define _REMOTEPSAPP_PROCESSLIST_HPP_
|
|
#ifndef _REMOTEPSAPP_PROCESSITEM_HPP_
|
|
#include <remotepsapp/processitem.hpp>
|
|
#endif
|
|
|
|
class ProcessList : public Block<ProcessItem>
|
|
{
|
|
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
|