Move struct datbase def to settings.h from session.h
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 17 Jul 2013 11:09:05 +0000 (13:09 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 17 Jul 2013 11:09:05 +0000 (13:09 +0200)
src/pazpar2_config.c
src/session.h
src/settings.h

index 79e7ad2..447c396 100644 (file)
@@ -45,7 +45,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include "settings.h"
 #include "eventl.h"
 #include "http.h"
-#include "session.h"
 
 struct conf_config
 {
index 732efbc..de5427f 100644 (file)
@@ -26,9 +26,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include <yaz/yaz-ccl.h>
 
 #include "facet_limit.h"
-#include "termlists.h"
 #include "reclists.h"
-#include "http.h"
 
 struct record;
 struct client;
@@ -54,15 +52,6 @@ enum pazpar2_error_code {
     PAZPAR2_LAST_ERROR
 };
 
-// Represents a database
-struct database {
-    char *id;
-    int num_settings;
-    struct setting **settings;
-    struct database *next;
-};
-
-
 // Represents a database as viewed from one session, possibly with settings overriden
 // for that session
 struct session_database
index b0da583..d36a5a2 100644 (file)
@@ -66,6 +66,14 @@ struct setting
     struct setting *next;
 };
 
+// Represents a database
+struct database {
+    char *id;
+    int num_settings;
+    struct setting **settings;
+    struct database *next;
+};
+
 struct settings_array
 {
     // Array of pointer setting, index is looked up in setting_dictionary