#include #include int main( int argc, char* argv[] ) { // Load interface cpPlugins::Interface interface; interface.GuessAccesiblePlugins( ); // Show loaded filters auto filters = interface.GetFilters( ); for( auto cIt = filters.begin( ); cIt != filters.end( ); ++cIt ) { std::cout << "Category: " << cIt->first << std::endl; for( auto nIt = cIt->second.begin( ); nIt != cIt->second.end( ); ++nIt ) std::cout << "\tFilter: " << *nIt << std::endl; } // rof return( 0 ); } // eof - $RCSfile$