Add cpp_scope base

This commit is contained in:
Jonathan Müller 2017-01-20 23:10:04 +01:00
commit 865217a190
4 changed files with 94 additions and 0 deletions

16
src/cpp_entity_type.cpp Normal file
View file

@ -0,0 +1,16 @@
// Copyright (C) 2017 Jonathan Müller <jonathanmueller.dev@gmail.com>
// This file is subject to the license terms in the LICENSE file
// found in the top-level directory of this distribution.
#include <cppast/cpp_entity_type.hpp>
using namespace cppast;
bool cppast::is_scope(cpp_entity_type type) noexcept
{
switch (type)
{
}
return false;
}