| 1 | /* vim:set shiftwidth=4 ts=8: */ |
| 2 | |
| 3 | /************************************************************************* |
| 4 | * Copyright (c) 2011 AT&T Intellectual Property |
| 5 | * All rights reserved. This program and the accompanying materials |
| 6 | * are made available under the terms of the Eclipse Public License v1.0 |
| 7 | * which accompanies this distribution, and is available at |
| 8 | * http://www.eclipse.org/legal/epl-v10.html |
| 9 | * |
| 10 | * Contributors: See CVS logs. Details at http://www.graphviz.org/ |
| 11 | *************************************************************************/ |
| 12 | |
| 13 | #ifndef CLUSTER_H |
| 14 | #define CLUSTER_H |
| 15 | |
| 16 | #include "render.h" |
| 17 | |
| 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
| 22 | extern void cluster_layout(Agraph_t * g); |
| 23 | extern void cluster_cleanup(Agraph_t * g); |
| 24 | |
| 25 | #ifdef __cplusplus |
| 26 | } |
| 27 | #endif |
| 28 | #endif |
| 29 | |