Skip to content

Commit

Permalink
Re #11754 Return string + clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed May 14, 2015
1 parent c0f2d99 commit bc0fe7c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Code/Mantid/Build/class_maker.py
Expand Up @@ -135,10 +135,14 @@ def write_source(subproject, classname, filename, args):
int %s::version() const { return 1; };
/// Algorithm's category for identification. @see Algorithm::category
const std::string %s::category() const { return TODO: FILL IN A CATEGORY;}
const std::string %s::category() const {
return "TODO: FILL IN A CATEGORY";
}
/// Algorithm's summary for use in the GUI and help. @see Algorithm::summary
const std::string %s::summary() const { return TODO: FILL IN A SUMMARY;};
const std::string %s::summary() const {
return "TODO: FILL IN A SUMMARY";
};
//----------------------------------------------------------------------------------------------
/** Initialize the algorithm's properties.
Expand Down

0 comments on commit bc0fe7c

Please sign in to comment.