| 6 | #include <logging.h> |
| 7 | |
| 8 | enum DeviceType{ |
| 9 | TypeGenericDevice, |
| 10 | TypeDiskDevice, |
| 11 | TypePartitionDevice, |
| 12 | TypeNetworkAdapterDevice, |
| 13 | TypePseudoterminalDevice, |
| 14 | TypeInputDevice, |
| 15 | }; |
| 16 | |
| 17 | class Device : public FsNode { |
| 18 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected