#include #include #include int main( int argc, char* argv[] ) { // Get plugins loader std::string error_message = ""; cpPlugins::Interface::Loader loader; loader.GuessEnvironment( cpPlugins::OS::FileSystem::CanonicalPath( "." ) ); // Show loader information std::cout << "---------------------------" << std::endl; std::cout << loader << std::endl; std::cout << "---------------------------" << std::endl; // Close connection to loaded plugins file loader.UnRegisterAll( ); // Just a last check std::cout << "---------------------------" << std::endl; std::cout << loader << std::endl; std::cout << "---------------------------" << std::endl; return( 0 ); } // eof - $RCSfile$