Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
init.release.cc
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file src/devel/init.release.cc
11 /// @brief Initialization function to ensure all load-time factory registration occurs
12 /// for classes that live in the devel library. devel::init() calls
13 /// protocols::init::init(), which in turn calls core::init::init(). Devel library does
14 /// not exist in release; so the release version of this file is nearly empty.
15 /// @author Steven Lewis (smlewi@gmail.com)
16 
17 #include <devel/init.hh>
18 #include <devel/svn_version.hh>
19 #include <protocols/init/init.hh>
20 
21 namespace devel {
22 
23 void init( int argc, char * argv [] )
24 {
26  protocols::init::init( argc, argv );
27 }
28 
30 {
32  protocols::init::init( args );
33 } // init
34 
35 } // devel
void init(int argc, char *argv[])
Command line init() version.
Definition: init.cc:23
void register_version_with_core()
void init()
set global 'init_was_called' to true
Definition: init.cc:26