]> git.treefish.org Git - phys/latlib.git/blob - hypercache_test.cpp
hypercache now working.
[phys/latlib.git] / hypercache_test.cpp
1 #include "hypercache.h"
2
3 #include <string>
4
5 using namespace std;
6
7 int main() {
8   char *test;
9   char *test2;
10
11   hypercache::initO("hallo", 100, 10, "", &test, sizeof(int), CACHE_MODE_READ);
12
13   hypercache::addPara("kappa", 1);
14
15   hypercache::readO();
16 }