1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 #include <precomp.h>
23 #include <s2_dsapi/tk_atag2.hxx>
24 
25 
26 // NOT FULLY DEFINED SERVICES
27 #include <s2_dsapi/tokintpr.hxx>
28 
29 
30 
31 using csi::dsapi::Tok_AtTag;
32 
33 lux::EnumValueMap	G_aTokAtTag_EV_TokenId_Values;
34 Tok_AtTag::EV_TokenId ev_none2(Tok_AtTag::e_none,"");
35 Tok_AtTag::EV_TokenId ev_author(Tok_AtTag::author,"@author");
36 Tok_AtTag::EV_TokenId ev_see(Tok_AtTag::see,"@see");
37 Tok_AtTag::EV_TokenId ev_param(Tok_AtTag::param,"@param");
38 Tok_AtTag::EV_TokenId ev_e_return(Tok_AtTag::e_return,"@return");
39 Tok_AtTag::EV_TokenId ev_e_throw(Tok_AtTag::e_throw,"@throws");
40 Tok_AtTag::EV_TokenId ev_example(Tok_AtTag::example,"@example");
41 Tok_AtTag::EV_TokenId ev_deprecated(Tok_AtTag::deprecated,"@deprecated");
42 Tok_AtTag::EV_TokenId ev_suspicious(Tok_AtTag::suspicious,"@suspicious");
43 Tok_AtTag::EV_TokenId ev_missing(Tok_AtTag::missing,"@missing");
44 Tok_AtTag::EV_TokenId ev_incomplete(Tok_AtTag::incomplete,"@incomplete");
45 Tok_AtTag::EV_TokenId ev_version(Tok_AtTag::version,"@version");
46 Tok_AtTag::EV_TokenId ev_guarantees(Tok_AtTag::guarantees,"@guarantees");
47 Tok_AtTag::EV_TokenId ev_exception(Tok_AtTag::exception,"@exception");
48 Tok_AtTag::EV_TokenId ev_since(Tok_AtTag::since,"@since");
49 
50 
51 namespace lux
52 {
53 template<> EnumValueMap &
Values_()54 Tok_AtTag::EV_TokenId::Values_()	{ return G_aTokAtTag_EV_TokenId_Values; }
55 }
56 
57 
58 namespace csi
59 {
60 namespace dsapi
61 {
62 
63 void
Trigger(TokenInterpreter & io_rInterpreter) const64 Tok_AtTag::Trigger( TokenInterpreter &	io_rInterpreter ) const
65 {
66 	io_rInterpreter.Process_AtTag(*this);
67 }
68 
69 const char *
Text() const70 Tok_AtTag::Text() const
71 {
72 	return eTag.Text();
73 }
74 
75 }   // namespace dsapi
76 }   // namespace csi
77 
78