| 1 | // LAF Base Library |
| 2 | // Copyright (c) 2001-2016 David Capello |
| 3 | // |
| 4 | // This file is released under the terms of the MIT license. |
| 5 | // Read LICENSE.txt for more information. |
| 6 | |
| 7 | #ifndef BASE_MEMORY_DUMP_NONE_H_INCLUDED |
| 8 | #define BASE_MEMORY_DUMP_NONE_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | class base::MemoryDump::MemoryDumpImpl |
| 12 | { |
| 13 | public: |
| 14 | MemoryDumpImpl() { |
| 15 | // Do nothing |
| 16 | } |
| 17 | |
| 18 | ~MemoryDumpImpl() { |
| 19 | // Do nothing |
| 20 | } |
| 21 | |
| 22 | void setFileName(const std::string& fileName) { |
| 23 | // Do nothing |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | #endif // BASE_MEMORY_DUMP_NONE_H_INCLUDED |
| 28 | |