Make memory_kokkos its own class

This commit is contained in:
Stan Moore
2017-12-01 09:13:31 -07:00
parent 83ec9815fe
commit 15a3364c2c
87 changed files with 850 additions and 826 deletions

View File

@ -57,6 +57,7 @@ class Pointers {
screen(ptr->screen),
logfile(ptr->logfile),
atomKK(ptr->atomKK),
memoryKK(ptr->memoryKK),
python(ptr->python) {}
virtual ~Pointers() {}
@ -84,6 +85,7 @@ class Pointers {
FILE *&logfile;
class AtomKokkos *&atomKK;
class MemoryKokkos *&memoryKK;
class Python *&python;
};