Skip to content

Commit

Permalink
STYLE: fixed format in rtkIterationCommands.h
Browse files Browse the repository at this point in the history
  • Loading branch information
acoussat committed Mar 23, 2020
1 parent 7287863 commit 324f060
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions include/rtkIterationCommands.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ class IterationCommand : public itk::Command
typedef itk::Command Superclass;
typedef itk::SmartPointer<Self> Pointer;

itkSetMacro(TriggerEvery, unsigned int)
itkSetMacro(TriggerEvery, unsigned int);

void Execute(itk::Object * caller, const itk::EventObject & event) override
void
Execute(itk::Object * caller, const itk::EventObject & event) override
{
Execute((const itk::Object *)caller, event);
}
Expand Down Expand Up @@ -128,13 +129,11 @@ class OutputIterationCommand : public IterationCommand<TCaller>
typedef itk::SmartPointer<Self> Pointer;
itkNewMacro(Self);

itkSetMacro(FileFormat, std::string)

protected
:
itkSetMacro(FileFormat, std::string);

/** Output file name, where %d is the current iteration number */
std::string m_FileFormat;
protected:
/** Output file name, where %d is the current iteration number */
std::string m_FileFormat;

void
Run(const TCaller * caller) override
Expand Down

0 comments on commit 324f060

Please sign in to comment.