<cfcomponent name="interface"
             extends="baseInterface">

    <!--- these are the interfaced methods --->
	<cffunction name="doFoo" access="public" output="false" returntype="string">

		<cfreturn variables.innerCfC.doFoo() />

	</cffunction>

	<cffunction name="doBar" access="public" output="false" returntype="string">

		<cfreturn variables.innerCfC.doBar() />

	</cffunction>

</cfcomponent>