#include "stdafx.h" #include bool NamespaceSupporter::ImportsNamespace( const std::string &namespaceStr ) { NamespaceScopes namespaceScopes( namespaceStr ); if( !compiler.GetObjectModule().meta.GetNamespaces().IsExist( namespaceScopes ) ){ return false; } this->importedNamespaces.push_back( namespaceScopes ); return true; }