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.
20 lines
487 B
20 lines
487 B
using System; |
|
using System.Runtime.InteropServices; |
|
using Mono.Cxxi; |
|
|
|
namespace Qt.Gui { |
|
public partial class QApplication { |
|
|
|
public partial interface IQApplication { |
|
[Constructor] CppInstancePtr QApplication (CppInstancePtr @this, [MangleAs ("int&")] IntPtr argc, [MangleAs ("char**")] IntPtr argv, int version); |
|
} |
|
|
|
public QApplication () : base (impl.TypeInfo) |
|
{ |
|
InitArgcAndArgv (); |
|
Native = impl.QApplication (impl.Alloc (this), argc, argv, 0x040602); |
|
} |
|
|
|
} |
|
} |
|
|
|
|