//============================================================================== // // 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 #include 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; };