int
main(int argc, char * argv[])
{
myFileOutputWindow::Pointer window = myFileOutputWindow::New();
if (argc > 1)
{
window->SetFileName(argv[1]);
}
window->FlushOn();
itkGenericOutputMacro("This should be in the file: " << window->GetFileName());
TransformType::Pointer transform = TransformType::New();
TransformType::FixedParametersType parameters(3);
transform->SetFixedParameters(parameters);
std::cout << "Look in " << window->GetFileName() << " for the output" << std::endl;
return EXIT_SUCCESS;
}