Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / sharedlocation.h
blob3bc521f9d8bf7588e4e99990f65e0d559951fdab
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
32 // Local Variables:
33 // mode: C++
34 // c-file-style: "linux"
35 // End: