Skip to content

Commit dbe20aa

Browse files
committed
Added a missing file.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent b04531d commit dbe20aa

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

QtSharp/QtModuleInfo.cs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System.Collections.Generic;
2+
3+
namespace QtSharp
4+
{
5+
public class QtModuleInfo
6+
{
7+
public QtModuleInfo(string qmake, string make, string includePath, string libraryPath, string library, string target, IEnumerable<string> systemIncludeDirs, string docs)
8+
{
9+
this.Qmake = qmake;
10+
this.Make = make;
11+
this.IncludePath = includePath;
12+
this.LibraryPath = libraryPath;
13+
this.Library = library;
14+
this.Target = target;
15+
this.SystemIncludeDirs = systemIncludeDirs;
16+
this.Docs = docs;
17+
}
18+
19+
public string Qmake { get; private set; }
20+
21+
public string Make { get; private set; }
22+
23+
public string IncludePath { get; private set; }
24+
25+
public string LibraryPath { get; private set; }
26+
27+
public string Library { get; private set; }
28+
29+
public string Target { get; private set; }
30+
31+
public IEnumerable<string> SystemIncludeDirs { get; private set; }
32+
33+
public string Docs { get; private set; }
34+
}
35+
}

0 commit comments

Comments
 (0)