# HG changeset patch # User klao # Date 1081016528 0 # Node ID 91e78d9b78f4266e536ee7314f160811b583253f # Parent 7f85e99502db8c26d81836a9807cc11084d8f2dd map tests (not yet) diff -r 7f85e99502db -r 91e78d9b78f4 src/work/klao/Makefile --- a/src/work/klao/Makefile Sat Apr 03 18:21:25 2004 +0000 +++ b/src/work/klao/Makefile Sat Apr 03 18:22:08 2004 +0000 @@ -1,4 +1,4 @@ -BINARIES = path_test +BINARIES = path_test map_test INCLUDEDIRS= -I. -I.. -I../../include -I../{marci,jacint,alpar,johanna,akos} include ../makefile diff -r 7f85e99502db -r 91e78d9b78f4 src/work/klao/map_test.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/work/klao/map_test.cc Sat Apr 03 18:22:08 2004 +0000 @@ -0,0 +1,14 @@ +#include + +#include + +using namespace std; +using namespace hugo::skeleton; + +int main() +{ + ReadableMap a; + + cout << sizeof a << endl; + +}