1<?xml version="1.0" encoding="ISO-8859-1" ?>
2<grammar version="1.0" xml:lang="en-US" mode="voice" root="_boolean">
3<!-- 
4	Boolean yes/no grammar, alternatives for yes and no can be added
5	to the grammar in the ROOT slot but this should be done carefully
6	to avoid confusions.
7 -->
8
9 <rule id="_boolean" scope="public">
10    <one-of>
11      <item>yes <tag>MEANING='1'</tag></item>
12      <item>no <tag>MEANING='0'</tag></item>
13    </one-of>
14 </rule>
15
16</grammar>
17
18
19
20
21
22
23
24
25
26
27