1 #ifndef _FILE_OPERATION_CALLBACK_H_ 2 #define _FILE_OPERATION_CALLBACK_H_ 10 virtual void on_files_deleted_sorted(t_pathlist p_items) = 0;
12 virtual void on_files_moved_sorted(t_pathlist p_from,t_pathlist p_to) = 0;
14 virtual void on_files_copied_sorted(t_pathlist p_from,t_pathlist p_to) = 0;
66 #endif //_FILE_OPERATION_CALLBACK_H_ void on_files_moved_sorted(const pfc::list_base_const_t< const char * > &p_from, const pfc::list_base_const_t< const char * > &p_to)
p_from is a metadb::path_compare sorted list of files that have been moved, p_to is a list of corresp...
const pfc::list_base_const_t< const char * > & t_pathlist
Base class for all service classes. Provides interfaces for reference counter and querying for differ...
Bit array interface class, variable version (you can both set and retrieve values). As with the constant version, valid index range depends on the context.
void on_files_deleted_sorted(const pfc::list_base_const_t< const char * > &p_items)
p_items is a metadb::path_compare sorted list of files that have been deleted.
Helper template used to easily access core services. Usage: static_api_ptr_t<myclass> api; api->doso...
Interface to notify component system about files being deleted or moved. Operates in app's main threa...
~file_operation_callback_dynamic_impl_base()
void on_files_copied_sorted(const pfc::list_base_const_t< const char * > &p_from, const pfc::list_base_const_t< const char * > &p_to)
p_from is a metadb::path_compare sorted list of files that have been copied, p_to is a list of corres...
file_operation_callback_dynamic_impl_base()