Reshuffling directories to separate include and sources, part one.
[fail.git] / include / core / idlast / paramlist.cpp
blob6c57e59dded96ed448033ad64dab138bb129728f
1 #include "paramlist.h"
2 #include "class.h"
4 using namespace awful;
5 using namespace awful::idlast;
7 void ParamList::resolveRefs( const Class* pClass_, DependencyList& DepList_ ) const
9 if( m_pReturnType )
10 m_pReturnType->resolveRefs( pClass_, DepList_ );
12 vector_type::const_iterator it;
13 for( it = begin(); it != end(); ++it )
14 it->second->resolveRefs( pClass_, DepList_ );