Changed: #1440 Change some parameter names

--HG--
branch : build_pipeline_v3
hg/feature/build_pipeline_v3
kaetemi 13 years ago
parent 55911f694a
commit 91add4e0f2

@ -40,7 +40,11 @@ using namespace std;
namespace PIPELINE {
void sjdflkmsdjfmlkqsjlkfdj() { }
void IProcessInfo::getDependentPaths(std::vector<std::string> &resultAppend)
{
getDependentDirectories(resultAppend);
getDependentFiles(resultAppend);
}
} /* namespace PIPELINE */

@ -66,6 +66,8 @@ public:
virtual void getDependentDirectories(std::vector<std::string> &resultAppend) = 0;
/// Must return all files on which the process handler depends, ONLY if these are not in dependent directories.
virtual void getDependentFiles(std::vector<std::string> &resultAppend) = 0;
/// Combines getDependentDirectories and getDependentFiles.
void getDependentPaths(std::vector<std::string> &resultAppend);
}; /* class IProcessInfo */

@ -51,7 +51,7 @@ CProcessInterfaceInfo::~CProcessInterfaceInfo()
}
void CProcessInterfaceInfo::getDependentDirectories(std::vector<std::string> &result)
void CProcessInterfaceInfo::getDependentDirectories(std::vector<std::string> &resultAppend)
{
{
uint nb;
@ -61,7 +61,7 @@ void CProcessInterfaceInfo::getDependentDirectories(std::vector<std::string> &re
{
std::stringstream ss;
ss << "Interface.Atlas[" << i << "].SrcDirectories";
m_PipelineProcess->getValues(result, ss.str());
m_PipelineProcess->getValues(resultAppend, ss.str());
}
}
}
@ -73,23 +73,23 @@ void CProcessInterfaceInfo::getDependentDirectories(std::vector<std::string> &re
{
std::stringstream ss;
ss << "Interface.AtlasDxtc[" << i << "].SrcDirectories";
m_PipelineProcess->getValues(result, ss.str());
m_PipelineProcess->getValues(resultAppend, ss.str());
}
}
}
{
std::stringstream ss;
ss << "Interface.Fullscreen.SrcDirectories";
m_PipelineProcess->getValues(result, ss.str());
m_PipelineProcess->getValues(resultAppend, ss.str());
}
{
std::stringstream ss;
ss << "Interface.3D.SrcDirectories";
m_PipelineProcess->getValues(result, ss.str());
m_PipelineProcess->getValues(resultAppend, ss.str());
}
}
void CProcessInterfaceInfo::getDependentFiles(std::vector<std::string> &result)
void CProcessInterfaceInfo::getDependentFiles(std::vector<std::string> &resultAppend)
{
}

@ -56,8 +56,8 @@ public:
CProcessInterfaceInfo();
virtual ~CProcessInterfaceInfo();
virtual void getDependentDirectories(std::vector<std::string> &result);
virtual void getDependentFiles(std::vector<std::string> &result);
virtual void getDependentDirectories(std::vector<std::string> &resultAppend);
virtual void getDependentFiles(std::vector<std::string> &resultAppend);
NLMISC_DECLARE_CLASS(CProcessInterfaceInfo)
}; /* class CProcessInterfaceInfo */

Loading…
Cancel
Save