Began proof-of-concept memory module.
[aesalon.git] / modules / memory / src / artisan / Interface.cpp
blobf1855f60aad71c4eb036913c7b8bab51c9086484
1 #include "Interface.h"
2 #include "Viewport.h"
4 InstantiateArtisan(Interface)
6 Interface::Interface() {
7 m_storage = new DataStore();
10 Interface::~Interface() {
14 Artisan::DataStore *Interface::dataStore() {
15 return m_storage;
18 Artisan::Viewport *Interface::createViewport() {
19 return new Viewport(m_storage);