summaryrefslogtreecommitdiffstats
path: root/Source/cmAbstractFilesCommand.cxx
diff options
context:
space:
mode:
authorWill Schroeder <will.schroeder@kitware.com>2001-01-18 16:20:24 (GMT)
committerWill Schroeder <will.schroeder@kitware.com>2001-01-18 16:20:24 (GMT)
commit658614ff6a14411e2a697fac1f1717a7f4370bf0 (patch)
tree42702fd2580f03b4553d385afeaf42608700758b /Source/cmAbstractFilesCommand.cxx
parentcacd6d160410660bcbc27f02b267833448c1eef1 (diff)
downloadCMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.zip
CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.gz
CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.bz2
ENH:Reworked CMake for consistency
Diffstat (limited to 'Source/cmAbstractFilesCommand.cxx')
-rw-r--r--Source/cmAbstractFilesCommand.cxx41
1 files changed, 41 insertions, 0 deletions
diff --git a/Source/cmAbstractFilesCommand.cxx b/Source/cmAbstractFilesCommand.cxx
new file mode 100644
index 0000000..2e8ed2f
--- /dev/null
+++ b/Source/cmAbstractFilesCommand.cxx
@@ -0,0 +1,41 @@
+/*=========================================================================
+
+ 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 "cmAbstractFilesCommand.h"
+
+// cmAbstractFilesCommand
+bool cmAbstractFilesCommand::Invoke(std::vector<std::string>& args)
+{
+ if(args.size() < 1 )
+ {
+ this->SetError("called with incorrect number of arguments");
+ return false;
+ }
+ for(std::vector<std::string>::iterator j = args.begin();
+ j != args.end(); ++j)
+ {
+ std::vector<cmClassFile>& Classes = m_Makefile->GetClasses();
+ for(int i = 0; i < Classes.size(); i++)
+ {
+ if(Classes[i].m_ClassName == (*j))
+ {
+ Classes[i].m_AbstractClass = true;
+ break;
+ }
+ }
+ }
+ return true;
+}
+