2001-02-28 00:48:15 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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 "cmWrapExcludeFilesCommand.h"
|
|
|
|
|
|
|
|
// cmWrapExcludeFilesCommand
|
|
|
|
bool cmWrapExcludeFilesCommand::Invoke(std::vector<std::string>& args)
|
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
|
|
|
cmMakefile::ClassMap &Classes = m_Makefile->GetClasses();
|
2001-02-28 00:48:15 +03:00
|
|
|
for(std::vector<std::string>::iterator j = args.begin();
|
|
|
|
j != args.end(); ++j)
|
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
for(cmMakefile::ClassMap::iterator l = Classes.begin();
|
|
|
|
l != Classes.end(); l++)
|
2001-02-28 00:48:15 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
for(std::vector<cmClassFile>::iterator i = l->second.begin();
|
|
|
|
i != l->second.end(); i++)
|
2001-02-28 00:48:15 +03:00
|
|
|
{
|
2001-04-11 22:59:02 +04:00
|
|
|
if(i->m_ClassName == (*j))
|
|
|
|
{
|
|
|
|
i->m_WrapExclude = true;
|
|
|
|
}
|
2001-02-28 00:48:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|