mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
994 B
49 lines
994 B
/************************************************************************ |
|
* |
|
* CppSharp |
|
* Licensed under the simplified BSD license. All rights reserved. |
|
* |
|
************************************************************************/ |
|
|
|
#include "Target.h" |
|
|
|
namespace CppSharp { namespace CppParser { |
|
|
|
ParserTargetInfo::ParserTargetInfo() : |
|
boolAlign(0), |
|
boolWidth(0), |
|
charAlign(0), |
|
charWidth(0), |
|
char16Align(0), |
|
char16Width(0), |
|
char32Align(0), |
|
char32Width(0), |
|
halfAlign(0), |
|
halfWidth(0), |
|
floatAlign(0), |
|
floatWidth(0), |
|
doubleAlign(0), |
|
doubleWidth(0), |
|
shortAlign(0), |
|
shortWidth(0), |
|
intAlign(0), |
|
intWidth(0), |
|
intMaxTWidth(0), |
|
longAlign(0), |
|
longWidth(0), |
|
longDoubleAlign(0), |
|
longDoubleWidth(0), |
|
longLongAlign(0), |
|
longLongWidth(0), |
|
pointerAlign(0), |
|
pointerWidth(0), |
|
wCharAlign(0), |
|
wCharWidth(0), |
|
float128Align(0), |
|
float128Width(0) |
|
{ |
|
} |
|
|
|
ParserTargetInfo::~ParserTargetInfo() {} |
|
|
|
} } |