29 lines
353 B
C++
29 lines
353 B
C++
|
|
// Mount.h
|
|
// Author: Josh Holtrop
|
|
// Date: 06/16/04
|
|
// Modified: 06/16/04
|
|
|
|
#ifndef __HOS_MOUNT__
|
|
#define __HOS_MOUNT__ __HOS_MOUNT__
|
|
|
|
#include "hos_defines.h"
|
|
|
|
class Mount
|
|
{
|
|
public:
|
|
string mountPoint;
|
|
string device;
|
|
dword major;
|
|
dword minor;
|
|
|
|
Mount();
|
|
Mount(string dev, string mount);
|
|
|
|
bool operator==(const Mount & second) const;
|
|
};
|
|
|
|
|
|
#endif
|
|
|