Added DataType class that can be constructed with a clang::qualType. DataType keeps an internal QualifierList and ModifierStack.
15 lines
163 B
C++
15 lines
163 B
C++
#ifndef UTILITY_CLANG_H
|
|
#define UTILITY_CLANG_H
|
|
|
|
#include <memory>
|
|
|
|
#include "clang/AST/Type.h"
|
|
|
|
class DataType;
|
|
|
|
namespace utility
|
|
{
|
|
}
|
|
|
|
#endif // UTILITY_CLANG_H
|