blockpath.h 784 B

12345678910111213141516171819202122232425262728
  1. /*************************************************************************
  2. * Copyright (c) 2011 AT&T Intellectual Property
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: Details at https://graphviz.org
  9. *************************************************************************/
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include <circogen/circular.h>
  15. #include <circogen/nodelist.h>
  16. nodelist_t layout_block(Agraph_t *g, block_t *sn, double, circ_state *state);
  17. #ifdef DEBUG
  18. extern void prTree(Agraph_t * g);
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif