diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-03-24 16:38:47 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-03-24 16:38:47 +0100 |
commit | c5984a9896b39748e61daf6e620483749654b102 (patch) | |
tree | 5576deee2c5bcc92ae85ab07af215295c52d4143 /cmd.c | |
parent | f34478cbe0214a201e7ecef3e79ed6c957b7beee (diff) | |
download | cgit-c5984a9896b39748e61daf6e620483749654b102.tar.gz cgit-c5984a9896b39748e61daf6e620483749654b102.tar.bz2 cgit-c5984a9896b39748e61daf6e620483749654b102.zip |
Add separate header-files for each page/view
Yet another step towards removing cgit.h.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -8,6 +8,17 @@ #include "cgit.h" #include "cmd.h" +#include "ui-blob.h" +#include "ui-commit.h" +#include "ui-diff.h" +#include "ui-log.h" +#include "ui-patch.h" +#include "ui-refs.h" +#include "ui-repolist.h" +#include "ui-snapshot.h" +#include "ui-summary.h" +#include "ui-tag.h" +#include "ui-tree.h" static void blob_fn(struct cgit_context *ctx) { |