Rearrange logging headers

Ref #270
This commit is contained in:
Drew DeVault 2015-11-28 08:49:02 -05:00
parent 9b62a98f3e
commit e0cb8284fb
5 changed files with 7 additions and 4 deletions

View file

@ -2,6 +2,7 @@
#define _SWAY_LAYOUT_H
#include <wlc/wlc.h>
#include "log.h"
#include "list.h"
#include "container.h"
#include "focus.h"
@ -59,4 +60,7 @@ swayc_t *get_swayc_in_direction_under(swayc_t *container, enum movement_directio
void recursive_resize(swayc_t *container, double amount, enum wlc_resize_edge edge);
void layout_log(const swayc_t *c, int depth);
void swayc_log(log_importance_t verbosity, swayc_t *cont, const char* format, ...) __attribute__((format(printf,3,4)));
#endif