mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-22 20:29:59 +00:00
7fb0604b76
git-svn-id: https://profuse.googlecode.com/svn/branches/profuse_interim@332 aa027e90-d47c-11dd-86d7-074df07e0730
19 lines
316 B
C++
19 lines
316 B
C++
#ifndef __TRACKSECTOR_H__
|
|
#define __TRACKSECTOR_H__
|
|
|
|
namespace Device {
|
|
|
|
struct TrackSector {
|
|
TrackSector(unsigned, unsigned);
|
|
unsigned track;
|
|
unsigned sector;
|
|
};
|
|
|
|
inline TrackSector::TrackSector(unsigned t, unsigned s)
|
|
{
|
|
track = t;
|
|
sector = s;
|
|
}
|
|
}
|
|
|
|
#endif |