예제 #1
0
파일: Generate.cs 프로젝트: afrog33k/mcocoa
        public TypeInfo(ObjectModel objects, NativeInterface ni, NativeMethod method)
        {
            Native = method.ReturnType;

            string type = objects.MapResult(ni.Name, method.Name, method.ReturnType);
            Managed = MapType(objects, type);
            if (Managed == "IBAction")
                Managed = "void";
        }