You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef MODGMT_FUNC_H
|
|
|
|
#define MODGMT_FUNC_H
|
|
|
|
#include "modgmt_objects.h"
|
|
|
|
|
|
|
|
ObjectBase* GMT_Header(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Footer(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Coord(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Region(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Projection(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Color(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_ColorGray(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_ColorRGB(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_ColorHSV(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_ColorCMYK(const ObjectList* input);
|
|
|
|
ObjectBase* GMT_Pen(const ObjectList* input);
|
|
|
|
|
|
|
|
#endif
|