Files
UnrealEngineUWP/Engine/Source/Programs/UnrealCodeAnalyzer/Private/Consumer.cpp

20 lines
398 B
C++
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "UnrealCodeAnalyzerPCH.h"
#include "Consumer.h"
using namespace clang;
namespace UnrealCodeAnalyzer
{
void FConsumer::HandleTranslationUnit(ASTContext& Context)
{
Visitor.TraverseDecl(Context.getTranslationUnitDecl());
}
FConsumer::FConsumer(ASTContext* Context, StringRef InFile) :
Visitor(Context, InFile)
{ }
}