2011-01-10 11:20:14 +01:00
|
|
|
/*
|
|
|
|
* liblogdiag.h
|
|
|
|
*
|
|
|
|
* This file is a part of logdiag.
|
2012-10-08 10:35:09 +02:00
|
|
|
* Copyright Přemysl Janouch 2011, 2012. All rights reserved.
|
2011-01-10 11:20:14 +01:00
|
|
|
*
|
|
|
|
* 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"
|
2012-08-29 18:44:47 +02:00
|
|
|
#include "ld-category.h"
|
2011-01-10 11:20:14 +01:00
|
|
|
#include "ld-library.h"
|
|
|
|
|
2011-01-31 21:58:41 +01:00
|
|
|
#include "ld-undo-action.h"
|
2011-01-10 11:20:14 +01:00
|
|
|
#include "ld-diagram-object.h"
|
|
|
|
#include "ld-diagram-symbol.h"
|
2011-02-02 17:22:34 +01:00
|
|
|
#include "ld-diagram-connection.h"
|
2011-01-10 11:20:14 +01:00
|
|
|
#include "ld-diagram.h"
|
|
|
|
|
2011-02-16 07:50:07 +01:00
|
|
|
#include "ld-diagram-view.h"
|
2012-08-30 00:54:38 +02:00
|
|
|
#include "ld-category-view.h"
|
2012-10-08 09:11:32 +02:00
|
|
|
#include "ld-category-symbol-view.h"
|
|
|
|
#include "ld-category-tree-view.h"
|
2011-01-10 11:20:14 +01:00
|
|
|
|
|
|
|
#include "ld-lua.h"
|
|
|
|
#include "ld-lua-symbol.h"
|
|
|
|
|
|
|
|
#endif /* ! __LIBLOGDIAG_H__ */
|
|
|
|
|