move static functions out of Value, add test driver to ensure linking works properly

This commit is contained in:
Sean Middleditch
2010-01-18 18:50:13 -08:00
parent 95bf762eeb
commit ef6c35ae1b
5 changed files with 138 additions and 134 deletions

7
driver.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "jansson.hpp"
extern int json_cpp_tests();
int main() {
return json_cpp_tests();
}