#pragma once namespace ActiveBasic{ namespace Compiler{ class LexicalAnalyzer { public: static bool CollectNamespaces( const char *source, NamespaceScopesCollection &namespaceScopesCollection ); static Symbol FullNameToSymbol( const char *fullName ); static Symbol FullNameToSymbol( const std::string &fullName ); }; }}