repo.or.cz
/
aesalon.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git]
/
modules
/
memory
/
src
/
artisan
/
Interface.cpp
blob
20d32b1b74069de08536fb9ae6d4a79139e4a648
1
#include
"Interface.h"
2
3
#include
"Viewport.h"
4
5
InstantiateArtisan
(
Interface
)
6
7
Interface
::
Interface
() {
8
m_storage
=
new
DataStore
();
9
}
10
11
Interface
::~
Interface
() {
12
13
}
14
15
Artisan
::
Viewport
*
Interface
::
createViewport
() {
16
return new
Viewport
(
m_storage
->
data
());
17
}