Started implementing various things.
commit4f825dac6cfc648c803bd549127bebad34725dcf
authorEthereal <ethereal.visage@gmail.com>
Sat, 19 Feb 2011 20:30:57 +0000 (19 13:30 -0700)
committerEthereal <ethereal.visage@gmail.com>
Sat, 19 Feb 2011 20:30:57 +0000 (19 13:30 -0700)
tree515d8891709e4edd707c955506db980d420491f4
parent8f1655c874e822c42ee111a7134bca5bc4c618ef
Started implementing various things.

I have, however, come to the conclusion that there will be quite a bit of
shared code between the monitor and the visualizer. Placing some of these
shared classes in a common source directory may be a good idea. (Some examples
include the rtree, mempool, and configuration system implementations.)
18 files changed:
include/visualizer/RootWindow.h
include/visualizer/storage/MemoryPool.h [new file with mode: 0644]
include/visualizer/storage/MemoryPoolEntry.h [new file with mode: 0644]
include/visualizer/storage/MemoryPoolItem.h [new file with mode: 0644]
include/visualizer/storage/RTree.h [new file with mode: 0644]
include/visualizer/visualization/AbstractObject.h [new file with mode: 0644]
include/visualizer/visualization/AbstractRangeMatcher.h [new file with mode: 0644]
include/visualizer/visualization/AbstractVisualization.h [new file with mode: 0644]
include/visualizer/visualization/Viewport.h [new file with mode: 0644]
visualizer/src/RootWindow.cpp
visualizer/src/storage/MemoryPool.cpp [new file with mode: 0644]
visualizer/src/storage/MemoryPoolEntry.cpp [new file with mode: 0644]
visualizer/src/storage/MemoryPoolItem.cpp [new file with mode: 0644]
visualizer/src/storage/RTree.cpp [new file with mode: 0644]
visualizer/src/visualization/AbstractObject.cpp [new file with mode: 0644]
visualizer/src/visualization/AbstractRangeMatcher.cpp [new file with mode: 0644]
visualizer/src/visualization/AbstractVisualization.cpp [new file with mode: 0644]
visualizer/src/visualization/Viewport.cpp [new file with mode: 0644]