// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet; // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons. // (c) For more information, see http://www.rosettacommons.org. Questions about this can be // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu. /// @file project/subproject/StandaloneClass.cc /// /// @brief /// @author // Unit header or inline function header #include // Other project headers or inline function headers // External library headers // C++ headers // Operating system headers // Forward declarations namespace project { namespace subproject { namespace { // Local types // Local constants // Local (static) variables // Local function _declarations_ // Local inline free functions // Local non-inline free function } // All of the following should be ordered to match the header // Static (class) constants // Static (class) variables // Private _inline_ methods -- and definitions // Methods // StandaloneClass::StandaloneClass( /* parameters */ ) // : // fields // { // } // StandaloneClass::~StandaloneClass() // { // } // StandaloneClass::StandaloneClass( StandaloneClass const & other ) // : // fields // { // } // StandaloneClass& // StandaloneClass::operator=( StandaloneClass const & other ) // { // // fields // return * this; // } // void owning_ptr_acquire(StandaloneClass * p) // { // } // void owning_ptr_release(StandaloneClass * p) // { // } } // namespace subproject } // namespace project