gvplugin_device.h 860 B

1234567891011121314151617181920212223242526272829303132
  1. /// @file
  2. /// @ingroup plugin_api
  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. * https://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors: Details at https://graphviz.org
  11. *************************************************************************/
  12. #pragma once
  13. #include "types.h"
  14. #include "gvplugin.h"
  15. #include "gvcjob.h"
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /// @ingroup plugin_api
  20. struct gvdevice_engine_s {
  21. void (*initialize) (GVJ_t * firstjob);
  22. void (*format) (GVJ_t * firstjob);
  23. void (*finalize) (GVJ_t * firstjob);
  24. };
  25. #ifdef __cplusplus
  26. }
  27. #endif