data: complex typename parsing

Added DataType class that can be constructed with a clang::qualType.
DataType keeps an internal QualifierList and ModifierStack.
This commit is contained in:
malte_langkabel
2014-07-09 11:00:35 +02:00
parent f6e6c93f71
commit 78704b6407
20 changed files with 410 additions and 28 deletions
+5
View File
@@ -0,0 +1,5 @@
#include "utility/utilityClang.h"
namespace utility
{
}
+14
View File
@@ -0,0 +1,14 @@
#ifndef UTILITY_CLANG_H
#define UTILITY_CLANG_H
#include <memory>
#include "clang/AST/Type.h"
class DataType;
namespace utility
{
}
#endif // UTILITY_CLANG_H