Began proof-of-concept memory module.
[aesalon.git] / modules / memory / src / artisan / Interface.h
blobb7d938629ab07796bc69ec8156677fea0be57861
1 #ifndef AesalonArtisan_cpuTime_Interface_H
2 #define AesalonArtisan_cpuTime_Interface_H
4 #include "artisan/Interface.h"
5 #include "DataStore.h"
7 class Interface : public Artisan::Interface {
8 private:
9 DataStore *m_storage;
10 public:
11 Interface();
12 virtual ~Interface();
14 virtual Artisan::DataStore *dataStore();
15 virtual Artisan::Viewport *createViewport();
18 #endif