1 /**
2 Copyright: Copyright (c) 2016, Joakim Brännström. All rights reserved.
3 License: MPL-2
4 Author: Joakim Brännström (joakim.brannstrom@gmx.com)
5 
6 This Source Code Form is subject to the terms of the Mozilla Public License,
7 v.2.0. If a copy of the MPL was not distributed with this file, You can obtain
8 one at http://mozilla.org/MPL/2.0/.
9 
10 TODO remove the trailing s in the module name, ....symbol.types <---
11 */
12 module cpptooling.data.symbol.types;
13 
14 struct FullyQualifiedNameType {
15     string payload;
16     alias payload this;
17 }
18 
19 struct USRType {
20     string payload;
21     alias payload this;
22 }