ProSHADE  0.7.6.6 (JUL 2022)
Protein Shape Detection
bin.cpp
Go to the documentation of this file.
1 
26 //==================================================== DOxygen main page specifications
27 
1473 //==================================================== ProSHADE
1474 #include "../proshade/ProSHADE.hpp"
1475 
1476 //==================================================== Main
1477 int main ( int argc, char **argv )
1478 {
1479  //================================================ Create the settings object and parse the command line arguments
1480  ProSHADE_settings* settings = new ProSHADE_settings ( );
1481  settings->getCommandLineParams ( argc, argv );
1482 
1483  //================================================ Execute
1484  ProSHADE_run *run = new ProSHADE_run ( settings );
1485 
1486  //================================================ Release the settings object
1487  delete settings;
1488 
1489  //================================================ Release the executive object
1490  delete run;
1491 
1492  //================================================ DONE
1493  return ( EXIT_SUCCESS );
1494 }
ProSHADE_run
This class provides the access point to the library.
Definition: ProSHADE.hpp:39
ProSHADE_settings
This class stores all the settings and is passed to the executive classes instead of a multitude of p...
Definition: ProSHADE_settings.hpp:37
ProSHADE_settings::getCommandLineParams
void getCommandLineParams(int argc, char **argv)
This function parses the command line arguments into the settings object.
Definition: ProSHADE.cpp:2112