strings.inl

Go to the documentation of this file.
00001 /*  
00002  *      string_protocol.h - def_generics for the string protocol
00003  *
00004  *          Copyright � John Wainwright 1996
00005  *
00006  */
00007 #pragma warning(push)
00008 #pragma warning(disable:4100)
00009     use_generic                     ( plus,             "+");
00010     use_generic                     ( eq,               "=");
00011     use_generic                     ( ne,               "!=");
00012     use_generic                     ( gt,               ">");
00013     use_generic                     ( lt,               "<");
00014     use_generic                     ( ge,               ">=");
00015     use_generic                     ( le,               "<=");
00016     use_generic                     ( get,              "get");
00017     use_generic                     ( put,              "put");
00018 
00019     def_visible_generic_debug_ok    ( findString,       "findString");
00020     def_visible_generic_debug_ok    ( findPattern,      "findPattern");
00021     def_visible_generic_debug_ok    ( substring,        "substring");
00022     def_visible_generic_debug_ok    ( replace,          "replace");
00023 
00024     use_generic                     ( append,           "append"); // LAM - 5/28/02
00025     use_generic                     ( execute,          "execute");
00026     use_generic                     ( coerce,           "coerce");
00027     use_generic                     ( copy,             "copy");
00028 
00029     use_generic                     ( free,             "free");
00030 #pragma warning(pop)