diff options
author | Josh Blum | 2012-09-29 09:33:54 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-29 09:33:54 -0700 |
commit | ba9ed63e59c1fc92bc823d11d779fe162df0aca1 (patch) | |
tree | 99dba0d3a89965fd1884f09af315db82a3e034d1 /lib/block_actor.cpp | |
parent | c92b1c1b320cb05c858bd0dcf4850de6e666e171 (diff) | |
download | sandhi-ba9ed63e59c1fc92bc823d11d779fe162df0aca1.tar.gz sandhi-ba9ed63e59c1fc92bc823d11d779fe162df0aca1.tar.bz2 sandhi-ba9ed63e59c1fc92bc823d11d779fe162df0aca1.zip |
ported allocator and block handler to apology
Diffstat (limited to 'lib/block_actor.cpp')
-rw-r--r-- | lib/block_actor.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/block_actor.cpp b/lib/block_actor.cpp index 3ba6c79..af59009 100644 --- a/lib/block_actor.cpp +++ b/lib/block_actor.cpp @@ -24,5 +24,10 @@ static Theron::Framework global_framework(8); //TODO needs API config BlockActor::BlockActor(void): Apology::Worker(global_framework) { - + this->register_handlers(); +} + +BlockActor::~BlockActor(void) +{ + //NOP } |