35 lines
601 B
C
35 lines
601 B
C
|
/*
|
||
|
* liblogdiag.h
|
||
|
*
|
||
|
* This file is a part of logdiag.
|
||
|
* Copyright Přemysl Janouch 2011. All rights reserved.
|
||
|
*
|
||
|
* See the file LICENSE for licensing information.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __LIBLOGDIAG_H__
|
||
|
#define __LIBLOGDIAG_H__
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
#include <json-glib/json-glib.h>
|
||
|
|
||
|
#include "ld-marshal.h"
|
||
|
#include "ld-types.h"
|
||
|
|
||
|
#include "ld-symbol.h"
|
||
|
#include "ld-symbol-category.h"
|
||
|
#include "ld-library.h"
|
||
|
|
||
|
#include "ld-diagram-object.h"
|
||
|
#include "ld-diagram-symbol.h"
|
||
|
#include "ld-diagram.h"
|
||
|
|
||
|
#include "ld-canvas.h"
|
||
|
|
||
|
#include "ld-lua.h"
|
||
|
#include "ld-lua-symbol.h"
|
||
|
|
||
|
#endif /* ! __LIBLOGDIAG_H__ */
|
||
|
|