| 5 | namespace fs{ |
| 6 | |
| 7 | class FsVolume{ |
| 8 | public: |
| 9 | volume_id_t volumeID; |
| 10 | FsNode* mountPoint; |
| 11 | DirectoryEntry mountPointDirent; |
| 12 | }; |
| 13 | |
| 14 | class LinkVolume : public FsVolume{ |
| 15 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected