Subversion Repositories DevTools

Rev

Rev 882 | Blame | Compare with Previous | Last modification | View Log | RSS feed

//==============================================================================
//
//     Copyright : (C) 2008 Videlli Limited
//     This file belongs to Videlli Limited
//
//==============================================================================
//
//     Purpose :
//     Process entity class. A container of name, path, identifier,
//     parent identifier and creation time attributes.
//     
//==============================================================================
#include <windows.h>
#include <string>

class Process
{
public:
        Process( const std::string &path, const std::string &name, const int pid, const int ppid, ULONGLONG creationTime );
        virtual ~Process();
        std::string mName;
        std::string mPath;
        int mPid;
        int mPpid;
        ULONGLONG mTime;
};