<cfcomponent name="a">

	<cffunction name="doFoo" access="public" output="false" returntype="string">
		<cfreturn "this is a.cfc doing the foo"/>
	</cffunction>

	<cffunction name="doBar" access="public" output="false" returntype="string">
		<cfreturn "this is a.cfc doing the bar"/>
	</cffunction>

	<cffunction name="doCat" access="public" output="false" returntype="string">
		<cfreturn "this is a.cfc doing the cat"/>
	</cffunction>

</cfcomponent>