Add cpp_scope base
This commit is contained in:
parent
9a944cd500
commit
865217a190
4 changed files with 94 additions and 0 deletions
16
src/cpp_entity_type.cpp
Normal file
16
src/cpp_entity_type.cpp
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue