diff include/urweb/urweb_cpp.h @ 2234:2f7ed04332a0

Progress on LRU cache but still more known bugs to fix.
author Ziv Scully <ziv@mit.edu>
date Sun, 28 Jun 2015 12:46:51 -0700
parents 5709482a2afd
children 88cc0f44c940
line wrap: on
line diff
--- a/include/urweb/urweb_cpp.h	Wed May 06 23:11:30 2015 -0400
+++ b/include/urweb/urweb_cpp.h	Sun Jun 28 12:46:51 2015 -0700
@@ -402,4 +402,12 @@
 
 void uw_Basis_writec(struct uw_context *, char);
 
+// Sqlcache.
+
+#include "uthash.h"
+
+CacheValue *check(Cache *, char **);
+CacheValue *store(Cache *, char **, CacheValue *);
+CacheValue *flush(Cache *, char **);
+
 #endif