mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-02-07 12:21:50 +03:00
13 lines
238 B
C++
13 lines
238 B
C++
|
|
#ifndef slic3r_CpuMemory_hpp_
|
||
|
|
#define slic3r_CpuMemory_hpp_
|
||
|
|
|
||
|
|
namespace Slic3r {
|
||
|
|
#define LOD_FREE_MEMORY_SIZE 5
|
||
|
|
class CpuMemory
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static bool cur_free_memory_less_than_specify_size_gb(int size);
|
||
|
|
};
|
||
|
|
} // namespace Slic3r
|
||
|
|
#endif
|