| 61 | Attributes(LPCTSTR fileName) :m_fileName{ fileName } {} |
| 62 | |
| 63 | void set(DWORD attribute) |
| 64 | { |
| 65 | if (!SetFileAttributes(m_fileName, attribute)) |
| 66 | throw std::exception{}; |
| 67 | } |
| 68 | |
| 69 | auto get() |
| 70 | { |
nothing calls this directly
no outgoing calls
no test coverage detected