Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

UnrealScriptTest.Test0004_BaseClass


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
/**
 * Testing extending a base class implementing an interface and having
 * a derived class overriding a subset of the functions
 *
 * Copyright 1998-2007 Epic Games, Inc. All Rights Reserved
 **/

class Test0004_BaseClass extends Object
   implements( Test0004_Interface );


function Test0004_FunctionA()
{
  LogInternal("");
}

function bool Test0004_FunctionB()
{
   return TRUE;
}

function string Test0004_FunctionC()
{
   return "Test0004_FunctionC()";
}

function int Test0004_FunctionD()
{
   return 1;
}

function float Test0004_FunctionE()
{
   return 1.0f;
}

function byte Test0004_FunctionF()
{
   return 1;
}

defaultproperties
{
   Name="Default__Test0004_BaseClass"
   ObjectArchetype=Object'Core.Default__Object'
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: tr 31-1-2018 17:18:34.000 - Creation time: sk 18-3-2018 10:01:15.357 - Created with UnCodeX