File: plotxxx.h

package info (click to toggle)
astrometry.net 0.98%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,428 kB
  • sloc: ansic: 165,791; python: 18,438; makefile: 1,560; sh: 157; cpp: 78; pascal: 67; awk: 56; perl: 9
file content (28 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
*/
#ifndef PLOTXXX_H
#define PLOTXXX_H

#include "astrometry/plotstuff.h"

struct plotxxx_args {
};
typedef struct plotxxx_args plotxxx_t;

plotxxx_t* plot_xxx_get(plot_args_t* pargs);

void* plot_xxx_init(plot_args_t* args);

int plot_xxx_command(const char* command, const char* cmdargs,
					plot_args_t* args, void* baton);

int plot_xxx_plot(const char* command, cairo_t* cr,
					plot_args_t* args, void* baton);

void plot_xxx_free(plot_args_t* args, void* baton);

extern const plotter_t plotter_xxx;

#endif