summaryrefslogtreecommitdiffstats
path: root/Source/cmConfigureHeaderCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmConfigureHeaderCommand.cxx')
-rw-r--r--Source/cmConfigureHeaderCommand.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/Source/cmConfigureHeaderCommand.cxx b/Source/cmConfigureHeaderCommand.cxx
deleted file mode 100644
index 28f6cb8..0000000
--- a/Source/cmConfigureHeaderCommand.cxx
+++ /dev/null
@@ -1,34 +0,0 @@
-/*=========================================================================
-
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
-
-
- Copyright (c) 2000 National Library of Medicine
- All rights reserved.
-
- See COPYRIGHT.txt for copyright details.
-
-=========================================================================*/
-#include "cmConfigureHeaderCommand.h"
-
-// cmConfigureHeaderCommand
-bool cmConfigureHeaderCommand::Invoke(std::vector<std::string>& args)
-{
- if(args.size() != 2 )
- {
- this->SetError("called with incorrect number of arguments, expected 2");
- return false;
- }
- m_InputFile = args[0];
- m_OuputFile = args[1];
- return true;
-}
-
-void cmConfigureHeaderCommand::FinalPass()
-{
-
-}