mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 21:25:39 +00:00
oops, add the damn file
svn path=/trunk/gtk-sharp/; revision=18571
This commit is contained in:
parent
c17c41c4a8
commit
27a0c64488
90
generator/AliasGen.cs
Normal file
90
generator/AliasGen.cs
Normal file
|
@ -0,0 +1,90 @@
|
|||
// GtkSharp.Generation.AliasGen.cs - The Alias type Generatable.
|
||||
//
|
||||
// Author: Mike Kestner <mkestner@speakeasy.net>
|
||||
//
|
||||
// (c) 2003 Mike Kestner
|
||||
|
||||
namespace GtkSharp.Generation {
|
||||
|
||||
using System;
|
||||
|
||||
public class AliasGen : IGeneratable {
|
||||
|
||||
string type;
|
||||
string ctype;
|
||||
|
||||
public AliasGen (string ctype, string type)
|
||||
{
|
||||
this.ctype = ctype;
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public string CName {
|
||||
get
|
||||
{
|
||||
return ctype;
|
||||
}
|
||||
}
|
||||
|
||||
public string Name {
|
||||
get
|
||||
{
|
||||
return type;
|
||||
}
|
||||
}
|
||||
|
||||
public string QualifiedName {
|
||||
get
|
||||
{
|
||||
return type;
|
||||
}
|
||||
}
|
||||
|
||||
public string MarshalType {
|
||||
get
|
||||
{
|
||||
return type;
|
||||
}
|
||||
}
|
||||
public virtual string MarshalReturnType {
|
||||
get
|
||||
{
|
||||
return type;
|
||||
}
|
||||
}
|
||||
|
||||
public string CallByName (string var_name)
|
||||
{
|
||||
return var_name;
|
||||
}
|
||||
|
||||
public string FromNative(string var)
|
||||
{
|
||||
return var;
|
||||
}
|
||||
|
||||
public virtual string FromNativeReturn(string var)
|
||||
{
|
||||
return var;
|
||||
}
|
||||
|
||||
public virtual string ToNativeReturn(string var)
|
||||
{
|
||||
return var;
|
||||
}
|
||||
|
||||
public bool DoGenerate {
|
||||
get {
|
||||
return false;
|
||||
}
|
||||
set {
|
||||
}
|
||||
}
|
||||
|
||||
public void Generate ()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue