r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / sharedlocation.h
blob0906f2978b521da21d0598b7d002ebdc8617a9cb
1 #ifndef SHAREDPLUGINLOCATION_H
2 #define SHAREDPLUGINLOCATION_H
4 #include "edl.inc"
5 #include "filexml.inc"
7 class SharedLocation
9 public:
10 SharedLocation();
11 SharedLocation(int module, int plugin);
13 void save(FileXML *file);
14 void load(FileXML *file);
15 int operator==(const SharedLocation &that);
16 SharedLocation& operator=(const SharedLocation &that);
17 int get_type();
18 void calculate_title(char *string,
19 EDL *edl,
20 double position,
21 int convert_units,
22 int plugin_type,
23 int use_nudge);
25 int module, plugin;
30 #endif