/*============================================================================= CAProcess.h $Log: CAProcess.h,v $ Revision 1.1 2003/02/17 20:37:33 jcm10 moved here from AudioHardware/Utility Revision 1.2 2002/03/14 20:06:18 jcm10 add GetPID() Revision 1.1 2002/03/01 02:05:44 jcm10 moved here from ../../Utility Revision 1.1 2001/08/14 21:26:10 jcm10 first checked in Revision 0.0 2001/08/09 19:59:32 jcm10 created $NoKeywords: $ =============================================================================*/ #if !defined(__CAProcess_h__) #define __CAProcess_h__ //============================================================================= // Includes //============================================================================= #include //============================================================================= // CAProcess // // Wrapper for utilities for dealing with Unix Processes. //============================================================================= class CAProcess { // operations public: static bool ProcessExists(pid_t inPID); static pid_t GetPID(); private: static pid_t sPID; }; #endif