Initial
This commit is contained in:
39
remotepsapp/ProcessList.hpp
Normal file
39
remotepsapp/ProcessList.hpp
Normal file
@@ -0,0 +1,39 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user