]> Creatis software - cpPlugins.git/blob - appli/examples/example_LoadPluginsFromPath.cxx
ba684ce52e9eeb39d704cfa9678fa72468747aa0
[cpPlugins.git] / appli / examples / example_LoadPluginsFromPath.cxx
1 #include <iostream>
2 #include <string>
3
4 #include <cpPlugins/Interface/Interface.h>
5
6 // -------------------------------------------------------------------------
7 typedef cpPlugins::Interface::Interface TInterface;
8
9 // -------------------------------------------------------------------------
10 int main( int argc, char* argv[] )
11 {
12   if( argc < 2 )
13   {
14     std::cerr << "Usage: " << argv[ 0 ] << " plugins_file(s)" << std::endl;
15     return( 1 );
16
17   } // fi
18
19   // Create interface and load plugins
20   TInterface interface;
21   interface.LoadFromFolder( argv[ 1 ], true );
22
23   // Show info
24   auto i = interface.GetLoadedPlugins( ).begin( );
25   for( ; i != interface.GetLoadedPlugins( ).end( ); ++i )
26   {
27     std::cout << "Folder: " << i->first << std::endl;
28     auto j = i->second.begin( );
29     for( ; j != i->second.end( ); ++j )
30       std::cout << "\tPlugin: " << *j << std::endl;
31
32   } // rof
33
34     // Show loaded classes
35   auto c = interface.GetClasses( ).begin( );
36   for( ; c != interface.GetClasses( ).end( ); ++c )
37     std::cout << "Class -> " << c->first << std::endl;
38
39   return( 0 );
40 }
41
42 // eof - $RCSfile$