mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 23:38:06 -06:00
Our XML files had incorrect schema paths, so they needed to be corrected or removed. Because of the upcoming transition to F'' YAML modeling, removing the schema refrences is an easier approach than correcting all component xml files.
15 lines
487 B
XML
15 lines
487 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface name="TEST" namespace="SRC" priority="high">
|
|
<include_header>test/file/one</include_header>
|
|
<comment>Interface Testing</comment>
|
|
<args>
|
|
<arg name="argOne" type="string" size="2"></arg>
|
|
</args>
|
|
<return type="ENUM" >
|
|
<enum name="returned">
|
|
<item name="itemOne" comment="Item One"></item>
|
|
<item name="itemTwo" comment="Item Two"></item>
|
|
</enum>
|
|
</return>
|
|
</interface>
|