00001 #ifndef SHAREDPLUGINLOCATION_H 00002 #define SHAREDPLUGINLOCATION_H 00003 00004 #include "edl.inc" 00005 #include "filexml.inc" 00006 00007 class SharedLocation 00008 { 00009 public: 00010 SharedLocation(); 00011 SharedLocation(int module, int plugin); 00012 00013 void save(FileXML *file); 00014 void load(FileXML *file); 00015 int operator==(const SharedLocation &that); 00016 SharedLocation& operator=(const SharedLocation &that); 00017 int get_type(); 00018 void calculate_title(char *string, 00019 EDL *edl, 00020 double position, 00021 int convert_units, 00022 int plugin_type, 00023 int use_nudge); 00024 00025 int module, plugin; 00026 }; 00027 00028 00029 00030 #endif
1.5.5