| 249 | // Cache entry, useful to abstract Windows and linux |
| 250 | // cache entry file descriptor |
| 251 | struct CacheEntry |
| 252 | { |
| 253 | CacheEntry(const std::string & filename); |
| 254 | bool exclusive_create(); |
| 255 | void close(); |
| 256 | bool successful_creation(); |
| 257 | |
| 258 | private: |
| 259 | std::string m_filename; |
| 260 | bool m_successful_creation; |
| 261 | void * m_handle; |
| 262 | }; |
| 263 | |
| 264 | // Variants |
| 265 | std::vector<Variant> m_variants; |
nothing calls this directly
no outgoing calls
no test coverage detected