summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/XML_Helpers/test.cad
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/XML_Helpers/test.cad')
-rw-r--r--TAO/CIAO/tools/XML_Helpers/test.cad90
1 files changed, 0 insertions, 90 deletions
diff --git a/TAO/CIAO/tools/XML_Helpers/test.cad b/TAO/CIAO/tools/XML_Helpers/test.cad
deleted file mode 100644
index 30d14d60d59..00000000000
--- a/TAO/CIAO/tools/XML_Helpers/test.cad
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0"?> <!-- -*- SGML -*- -->
-
-<!-- If this file is moved to a different directory, make sure to change the
- path to the DTD below. Otherwise the examples won't work. -->
-<!DOCTYPE componentassembly SYSTEM "../../docs/XML/componentassembly.dtd">
-
-<!-- This file is taken from the OEP/Display example and shows how to -->
-<!-- specify the RTCAD extension in a componentassembly file. -->
-<!-- Just look for <extension> elements for more info. -->
-
-<componentassembly id="Single-process HUDisplay assembly">
- <componentfiles>
- <componentfile id="com-RateGen">
- <fileinarchive name="RateGen.csd"/>
- </componentfile>
- <componentfile id="com-GPS">
- <fileinarchive name="GPS.csd"/>
- </componentfile>
- <componentfile id="com-NavDisplay">
- <fileinarchive name="NavDisplay.csd"/>
- </componentfile>
- </componentfiles>
-
- <partitioning>
-
- <!-- A plain vanilla partition. We don't even need the processcollocation tag here. -->
- <homeplacement id="a_RateGenHome">
- <componentfileref idref="com-RateGen"/>
- <componentinstantiation id="a_RateGen">
- <registercomponent>
- <!-- writeiortofile is a non-standard CIAO extension. -->
- <writeiortofile name="rategen.ior"/>
- </registercomponent>
- </componentinstantiation>
- </homeplacement>
-
- <homeplacement id="a_GPSHome">
- <componentfileref idref="com-GPS"/>
- <componentinstantiation id="a_GPS"/>
- </homeplacement>
-
- <processcollocation>
- <homeplacement id="a_NavDisplayHome">
- <componentfileref idref="com-NavDisplay"/>
- <componentinstantiation id="a_NavDisplay"/>
- <extension class="RT-POLICY-SET" origin="CIAO">faster</extension>
- </homeplacement>
- <extension class="RT-CAD-EXT" origin="CIAO">KOOKOOnest</extension>
- <destination>Remote</destination>
- </processcollocation>
- </partitioning>
-
- <connections>
-
- <connectevent>
- <consumesport>
- <consumesidentifier>Refresh</consumesidentifier>
- <componentinstantiationref idref="a_GPS"/>
- </consumesport>
- <publishesport>
- <publishesidentifier>Pulse</publishesidentifier>
- <componentinstantiationref idref="a_RateGen"/>
- </publishesport>
- </connectevent>
-
- <connectevent>
- <consumesport>
- <consumesidentifier>Refresh</consumesidentifier>
- <componentinstantiationref idref="a_NavDisplay"/>
- </consumesport>
- <publishesport>
- <publishesidentifier>Ready</publishesidentifier>
- <componentinstantiationref idref="a_GPS"/>
- </publishesport>
- </connectevent>
-
- <connectinterface>
- <usesport>
- <usesidentifier>GPSLocation</usesidentifier>
- <componentinstantiationref idref="a_NavDisplay"/>
- </usesport>
- <providesport>
- <providesidentifier>MyLocation</providesidentifier>
- <componentinstantiationref idref="a_GPS"/>
- </providesport>
- </connectinterface>
-
- </connections>
-
-</componentassembly>