5 lines
130 B
C++
5 lines
130 B
C++
#include <device.hh>
|
|
|
|
Device::Device(bool cacheable): cacheable_(cacheable) {}
|
|
|
|
bool Device::is_cacheable() { return cacheable_; } |