home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / lyrp-inf.zip / LYRISP.INF (.txt) < prev   
OS/2 Help File  |  1996-12-30  |  396KB  |  50,056 lines

  1.  
  2. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3.  
  4.  
  5. lyris_Country Class 
  6.  
  7.      class lyris_Country 
  8.  
  9.      For determining what countries exist, and what languages are spoken & 
  10.      preferred in each country 
  11.  
  12.      Defined in: COUNTRY.H 
  13.  
  14.   Create a new country 
  15.  
  16.       bool createNew() 
  17.  
  18.      Creates a new country/language table row.  LCP: CountryCreate 
  19.      bool updateDatabase() 
  20.  
  21.      Save the current country with the data members that have changed.  LCP: 
  22.      CountryUpdate 
  23.      bool VerifyFields() 
  24.  
  25.      Verify that all required fields are filled in. 
  26.  
  27.   Retrieve data from the database 
  28.      bool fetchAllCountries(vecString &AllCountries) 
  29.  
  30.      Fetch a list of all countries.  LCP: CountryAll 
  31.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32.  
  33.      Fetch a paired list of countries and their native language descriptions, 
  34.      sorted by english description.  LCP: CountryEngNat 
  35.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36.  
  37.      Fetch a paired list of native language country descriptions, and the 
  38.      english name of the country. 
  39.      bool retrieveFromNetCode() 
  40.  
  41.      Determine the country that uses the currently set NetCode.  Fills all the 
  42.      other country attributes with values. LCP: CountryAttNetCode 
  43.      bool retrieveFromDesc() 
  44.  
  45.      Determine the country that uses the currently set description.  Fills all 
  46.      the other country attributes with values.  LCP: CountryAttribs 
  47.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48.  
  49.      Determine the primary language of the current country.  "Desc" must be 
  50.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  51.      CountryPrimLang 
  52.      bool getAllLanguages(vecString &Languages) 
  53.  
  54.      Determine all the languages used by the current country.  "Desc" must be 
  55.      already set.  The result is returned in priority order (highest priority 
  56.      first) in vecString &Languages.  LCP: CountryLanguages 
  57.      bool getLanguageList(vecString &Languages) 
  58.  
  59.      Get a list of all possible languages, in alphabetical order, returned in 
  60.      vecString &Languages.  LCP: CountryLangList 
  61.      bool getLanguageListEngNat(mapString &Languages) 
  62.  
  63.      Get a map of all possible languages, their native description in 
  64.      alphabetical order by english description, returned in in vecString 
  65.      &Languages.  LCP: CountryLangListEngNat 
  66.  
  67.   Delete a country 
  68.      bool deleteFromDesc() 
  69.  
  70.      Delete the country that uses the currently set description.  LCP: 
  71.      CountryDelete 
  72.  
  73.   Set data members 
  74.      bool setAll(mapString &FieldValues) 
  75.  
  76.      Sets all the data members of a topic using the mapString which is passed 
  77.      to it.  Only the fields present in the mapString are updated, the other 
  78.      fields are untouched.  LCP: CountryUpdate 
  79.      bool setDesc(const string &DescSetting) 
  80.  
  81.      Set the short description 
  82.      bool setDescLong(const string &DescLongSetting) 
  83.  
  84.      Set the long description 
  85.      bool setDescNative(const string &DescNativeSetting) 
  86.  
  87.      Set the native language description 
  88.      bool setNetCode(const string &NetCodeSetting) 
  89.  
  90.      Set the internet code for this country 
  91.      bool erase() 
  92.  
  93.      Sets all the data members to empty 
  94.  
  95.   Get data members 
  96.      bool getAll(mapString &FieldValues) 
  97.  
  98.      Return a mapString of all the data members of this topic. The key is the 
  99.      variable name.  LCP: CountryAttribs 
  100.      string getDesc() 
  101.  
  102.      Get the short description 
  103.      string getDescLong() 
  104.  
  105.      Get the long description 
  106.      string getDescNative() 
  107.  
  108.      Get the native language description 
  109.      string getNetCode() 
  110.  
  111.      Get the internet code for this country 
  112.  
  113.  
  114. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  115.  
  116.  
  117. lyris_Country Class 
  118.  
  119.      class lyris_Country 
  120.  
  121.      For determining what countries exist, and what languages are spoken & 
  122.      preferred in each country 
  123.  
  124.      Defined in: COUNTRY.H 
  125.  
  126.   Create a new country 
  127.  
  128.       bool createNew() 
  129.  
  130.      Creates a new country/language table row.  LCP: CountryCreate 
  131.      bool updateDatabase() 
  132.  
  133.      Save the current country with the data members that have changed.  LCP: 
  134.      CountryUpdate 
  135.      bool VerifyFields() 
  136.  
  137.      Verify that all required fields are filled in. 
  138.  
  139.   Retrieve data from the database 
  140.      bool fetchAllCountries(vecString &AllCountries) 
  141.  
  142.      Fetch a list of all countries.  LCP: CountryAll 
  143.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  144.  
  145.      Fetch a paired list of countries and their native language descriptions, 
  146.      sorted by english description.  LCP: CountryEngNat 
  147.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  148.  
  149.      Fetch a paired list of native language country descriptions, and the 
  150.      english name of the country. 
  151.      bool retrieveFromNetCode() 
  152.  
  153.      Determine the country that uses the currently set NetCode.  Fills all the 
  154.      other country attributes with values. LCP: CountryAttNetCode 
  155.      bool retrieveFromDesc() 
  156.  
  157.      Determine the country that uses the currently set description.  Fills all 
  158.      the other country attributes with values.  LCP: CountryAttribs 
  159.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  160.  
  161.      Determine the primary language of the current country.  "Desc" must be 
  162.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  163.      CountryPrimLang 
  164.      bool getAllLanguages(vecString &Languages) 
  165.  
  166.      Determine all the languages used by the current country.  "Desc" must be 
  167.      already set.  The result is returned in priority order (highest priority 
  168.      first) in vecString &Languages.  LCP: CountryLanguages 
  169.      bool getLanguageList(vecString &Languages) 
  170.  
  171.      Get a list of all possible languages, in alphabetical order, returned in 
  172.      vecString &Languages.  LCP: CountryLangList 
  173.      bool getLanguageListEngNat(mapString &Languages) 
  174.  
  175.      Get a map of all possible languages, their native description in 
  176.      alphabetical order by english description, returned in in vecString 
  177.      &Languages.  LCP: CountryLangListEngNat 
  178.  
  179.   Delete a country 
  180.      bool deleteFromDesc() 
  181.  
  182.      Delete the country that uses the currently set description.  LCP: 
  183.      CountryDelete 
  184.  
  185.   Set data members 
  186.      bool setAll(mapString &FieldValues) 
  187.  
  188.      Sets all the data members of a topic using the mapString which is passed 
  189.      to it.  Only the fields present in the mapString are updated, the other 
  190.      fields are untouched.  LCP: CountryUpdate 
  191.      bool setDesc(const string &DescSetting) 
  192.  
  193.      Set the short description 
  194.      bool setDescLong(const string &DescLongSetting) 
  195.  
  196.      Set the long description 
  197.      bool setDescNative(const string &DescNativeSetting) 
  198.  
  199.      Set the native language description 
  200.      bool setNetCode(const string &NetCodeSetting) 
  201.  
  202.      Set the internet code for this country 
  203.      bool erase() 
  204.  
  205.      Sets all the data members to empty 
  206.  
  207.   Get data members 
  208.      bool getAll(mapString &FieldValues) 
  209.  
  210.      Return a mapString of all the data members of this topic. The key is the 
  211.      variable name.  LCP: CountryAttribs 
  212.      string getDesc() 
  213.  
  214.      Get the short description 
  215.      string getDescLong() 
  216.  
  217.      Get the long description 
  218.      string getDescNative() 
  219.  
  220.      Get the native language description 
  221.      string getNetCode() 
  222.  
  223.      Get the internet code for this country 
  224.  
  225.  
  226. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  227.  
  228.  
  229. lyris_Country Class 
  230.  
  231.      class lyris_Country 
  232.  
  233.      For determining what countries exist, and what languages are spoken & 
  234.      preferred in each country 
  235.  
  236.      Defined in: COUNTRY.H 
  237.  
  238.   Create a new country 
  239.  
  240.       bool createNew() 
  241.  
  242.      Creates a new country/language table row.  LCP: CountryCreate 
  243.      bool updateDatabase() 
  244.  
  245.      Save the current country with the data members that have changed.  LCP: 
  246.      CountryUpdate 
  247.      bool VerifyFields() 
  248.  
  249.      Verify that all required fields are filled in. 
  250.  
  251.   Retrieve data from the database 
  252.      bool fetchAllCountries(vecString &AllCountries) 
  253.  
  254.      Fetch a list of all countries.  LCP: CountryAll 
  255.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  256.  
  257.      Fetch a paired list of countries and their native language descriptions, 
  258.      sorted by english description.  LCP: CountryEngNat 
  259.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  260.  
  261.      Fetch a paired list of native language country descriptions, and the 
  262.      english name of the country. 
  263.      bool retrieveFromNetCode() 
  264.  
  265.      Determine the country that uses the currently set NetCode.  Fills all the 
  266.      other country attributes with values. LCP: CountryAttNetCode 
  267.      bool retrieveFromDesc() 
  268.  
  269.      Determine the country that uses the currently set description.  Fills all 
  270.      the other country attributes with values.  LCP: CountryAttribs 
  271.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  272.  
  273.      Determine the primary language of the current country.  "Desc" must be 
  274.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  275.      CountryPrimLang 
  276.      bool getAllLanguages(vecString &Languages) 
  277.  
  278.      Determine all the languages used by the current country.  "Desc" must be 
  279.      already set.  The result is returned in priority order (highest priority 
  280.      first) in vecString &Languages.  LCP: CountryLanguages 
  281.      bool getLanguageList(vecString &Languages) 
  282.  
  283.      Get a list of all possible languages, in alphabetical order, returned in 
  284.      vecString &Languages.  LCP: CountryLangList 
  285.      bool getLanguageListEngNat(mapString &Languages) 
  286.  
  287.      Get a map of all possible languages, their native description in 
  288.      alphabetical order by english description, returned in in vecString 
  289.      &Languages.  LCP: CountryLangListEngNat 
  290.  
  291.   Delete a country 
  292.      bool deleteFromDesc() 
  293.  
  294.      Delete the country that uses the currently set description.  LCP: 
  295.      CountryDelete 
  296.  
  297.   Set data members 
  298.      bool setAll(mapString &FieldValues) 
  299.  
  300.      Sets all the data members of a topic using the mapString which is passed 
  301.      to it.  Only the fields present in the mapString are updated, the other 
  302.      fields are untouched.  LCP: CountryUpdate 
  303.      bool setDesc(const string &DescSetting) 
  304.  
  305.      Set the short description 
  306.      bool setDescLong(const string &DescLongSetting) 
  307.  
  308.      Set the long description 
  309.      bool setDescNative(const string &DescNativeSetting) 
  310.  
  311.      Set the native language description 
  312.      bool setNetCode(const string &NetCodeSetting) 
  313.  
  314.      Set the internet code for this country 
  315.      bool erase() 
  316.  
  317.      Sets all the data members to empty 
  318.  
  319.   Get data members 
  320.      bool getAll(mapString &FieldValues) 
  321.  
  322.      Return a mapString of all the data members of this topic. The key is the 
  323.      variable name.  LCP: CountryAttribs 
  324.      string getDesc() 
  325.  
  326.      Get the short description 
  327.      string getDescLong() 
  328.  
  329.      Get the long description 
  330.      string getDescNative() 
  331.  
  332.      Get the native language description 
  333.      string getNetCode() 
  334.  
  335.      Get the internet code for this country 
  336.  
  337.  
  338. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  339.  
  340.  
  341. lyris_Country Class 
  342.  
  343.      class lyris_Country 
  344.  
  345.      For determining what countries exist, and what languages are spoken & 
  346.      preferred in each country 
  347.  
  348.      Defined in: COUNTRY.H 
  349.  
  350.   Create a new country 
  351.  
  352.       bool createNew() 
  353.  
  354.      Creates a new country/language table row.  LCP: CountryCreate 
  355.      bool updateDatabase() 
  356.  
  357.      Save the current country with the data members that have changed.  LCP: 
  358.      CountryUpdate 
  359.      bool VerifyFields() 
  360.  
  361.      Verify that all required fields are filled in. 
  362.  
  363.   Retrieve data from the database 
  364.      bool fetchAllCountries(vecString &AllCountries) 
  365.  
  366.      Fetch a list of all countries.  LCP: CountryAll 
  367.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  368.  
  369.      Fetch a paired list of countries and their native language descriptions, 
  370.      sorted by english description.  LCP: CountryEngNat 
  371.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  372.  
  373.      Fetch a paired list of native language country descriptions, and the 
  374.      english name of the country. 
  375.      bool retrieveFromNetCode() 
  376.  
  377.      Determine the country that uses the currently set NetCode.  Fills all the 
  378.      other country attributes with values. LCP: CountryAttNetCode 
  379.      bool retrieveFromDesc() 
  380.  
  381.      Determine the country that uses the currently set description.  Fills all 
  382.      the other country attributes with values.  LCP: CountryAttribs 
  383.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  384.  
  385.      Determine the primary language of the current country.  "Desc" must be 
  386.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  387.      CountryPrimLang 
  388.      bool getAllLanguages(vecString &Languages) 
  389.  
  390.      Determine all the languages used by the current country.  "Desc" must be 
  391.      already set.  The result is returned in priority order (highest priority 
  392.      first) in vecString &Languages.  LCP: CountryLanguages 
  393.      bool getLanguageList(vecString &Languages) 
  394.  
  395.      Get a list of all possible languages, in alphabetical order, returned in 
  396.      vecString &Languages.  LCP: CountryLangList 
  397.      bool getLanguageListEngNat(mapString &Languages) 
  398.  
  399.      Get a map of all possible languages, their native description in 
  400.      alphabetical order by english description, returned in in vecString 
  401.      &Languages.  LCP: CountryLangListEngNat 
  402.  
  403.   Delete a country 
  404.      bool deleteFromDesc() 
  405.  
  406.      Delete the country that uses the currently set description.  LCP: 
  407.      CountryDelete 
  408.  
  409.   Set data members 
  410.      bool setAll(mapString &FieldValues) 
  411.  
  412.      Sets all the data members of a topic using the mapString which is passed 
  413.      to it.  Only the fields present in the mapString are updated, the other 
  414.      fields are untouched.  LCP: CountryUpdate 
  415.      bool setDesc(const string &DescSetting) 
  416.  
  417.      Set the short description 
  418.      bool setDescLong(const string &DescLongSetting) 
  419.  
  420.      Set the long description 
  421.      bool setDescNative(const string &DescNativeSetting) 
  422.  
  423.      Set the native language description 
  424.      bool setNetCode(const string &NetCodeSetting) 
  425.  
  426.      Set the internet code for this country 
  427.      bool erase() 
  428.  
  429.      Sets all the data members to empty 
  430.  
  431.   Get data members 
  432.      bool getAll(mapString &FieldValues) 
  433.  
  434.      Return a mapString of all the data members of this topic. The key is the 
  435.      variable name.  LCP: CountryAttribs 
  436.      string getDesc() 
  437.  
  438.      Get the short description 
  439.      string getDescLong() 
  440.  
  441.      Get the long description 
  442.      string getDescNative() 
  443.  
  444.      Get the native language description 
  445.      string getNetCode() 
  446.  
  447.      Get the internet code for this country 
  448.  
  449.  
  450. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  451.  
  452.  
  453. lyris_Country Class 
  454.  
  455.      class lyris_Country 
  456.  
  457.      For determining what countries exist, and what languages are spoken & 
  458.      preferred in each country 
  459.  
  460.      Defined in: COUNTRY.H 
  461.  
  462.   Create a new country 
  463.  
  464.       bool createNew() 
  465.  
  466.      Creates a new country/language table row.  LCP: CountryCreate 
  467.      bool updateDatabase() 
  468.  
  469.      Save the current country with the data members that have changed.  LCP: 
  470.      CountryUpdate 
  471.      bool VerifyFields() 
  472.  
  473.      Verify that all required fields are filled in. 
  474.  
  475.   Retrieve data from the database 
  476.      bool fetchAllCountries(vecString &AllCountries) 
  477.  
  478.      Fetch a list of all countries.  LCP: CountryAll 
  479.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  480.  
  481.      Fetch a paired list of countries and their native language descriptions, 
  482.      sorted by english description.  LCP: CountryEngNat 
  483.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  484.  
  485.      Fetch a paired list of native language country descriptions, and the 
  486.      english name of the country. 
  487.      bool retrieveFromNetCode() 
  488.  
  489.      Determine the country that uses the currently set NetCode.  Fills all the 
  490.      other country attributes with values. LCP: CountryAttNetCode 
  491.      bool retrieveFromDesc() 
  492.  
  493.      Determine the country that uses the currently set description.  Fills all 
  494.      the other country attributes with values.  LCP: CountryAttribs 
  495.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  496.  
  497.      Determine the primary language of the current country.  "Desc" must be 
  498.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  499.      CountryPrimLang 
  500.      bool getAllLanguages(vecString &Languages) 
  501.  
  502.      Determine all the languages used by the current country.  "Desc" must be 
  503.      already set.  The result is returned in priority order (highest priority 
  504.      first) in vecString &Languages.  LCP: CountryLanguages 
  505.      bool getLanguageList(vecString &Languages) 
  506.  
  507.      Get a list of all possible languages, in alphabetical order, returned in 
  508.      vecString &Languages.  LCP: CountryLangList 
  509.      bool getLanguageListEngNat(mapString &Languages) 
  510.  
  511.      Get a map of all possible languages, their native description in 
  512.      alphabetical order by english description, returned in in vecString 
  513.      &Languages.  LCP: CountryLangListEngNat 
  514.  
  515.   Delete a country 
  516.      bool deleteFromDesc() 
  517.  
  518.      Delete the country that uses the currently set description.  LCP: 
  519.      CountryDelete 
  520.  
  521.   Set data members 
  522.      bool setAll(mapString &FieldValues) 
  523.  
  524.      Sets all the data members of a topic using the mapString which is passed 
  525.      to it.  Only the fields present in the mapString are updated, the other 
  526.      fields are untouched.  LCP: CountryUpdate 
  527.      bool setDesc(const string &DescSetting) 
  528.  
  529.      Set the short description 
  530.      bool setDescLong(const string &DescLongSetting) 
  531.  
  532.      Set the long description 
  533.      bool setDescNative(const string &DescNativeSetting) 
  534.  
  535.      Set the native language description 
  536.      bool setNetCode(const string &NetCodeSetting) 
  537.  
  538.      Set the internet code for this country 
  539.      bool erase() 
  540.  
  541.      Sets all the data members to empty 
  542.  
  543.   Get data members 
  544.      bool getAll(mapString &FieldValues) 
  545.  
  546.      Return a mapString of all the data members of this topic. The key is the 
  547.      variable name.  LCP: CountryAttribs 
  548.      string getDesc() 
  549.  
  550.      Get the short description 
  551.      string getDescLong() 
  552.  
  553.      Get the long description 
  554.      string getDescNative() 
  555.  
  556.      Get the native language description 
  557.      string getNetCode() 
  558.  
  559.      Get the internet code for this country 
  560.  
  561.  
  562. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  563.  
  564.  
  565. lyris_Country Class 
  566.  
  567.      class lyris_Country 
  568.  
  569.      For determining what countries exist, and what languages are spoken & 
  570.      preferred in each country 
  571.  
  572.      Defined in: COUNTRY.H 
  573.  
  574.   Create a new country 
  575.  
  576.       bool createNew() 
  577.  
  578.      Creates a new country/language table row.  LCP: CountryCreate 
  579.      bool updateDatabase() 
  580.  
  581.      Save the current country with the data members that have changed.  LCP: 
  582.      CountryUpdate 
  583.      bool VerifyFields() 
  584.  
  585.      Verify that all required fields are filled in. 
  586.  
  587.   Retrieve data from the database 
  588.      bool fetchAllCountries(vecString &AllCountries) 
  589.  
  590.      Fetch a list of all countries.  LCP: CountryAll 
  591.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  592.  
  593.      Fetch a paired list of countries and their native language descriptions, 
  594.      sorted by english description.  LCP: CountryEngNat 
  595.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  596.  
  597.      Fetch a paired list of native language country descriptions, and the 
  598.      english name of the country. 
  599.      bool retrieveFromNetCode() 
  600.  
  601.      Determine the country that uses the currently set NetCode.  Fills all the 
  602.      other country attributes with values. LCP: CountryAttNetCode 
  603.      bool retrieveFromDesc() 
  604.  
  605.      Determine the country that uses the currently set description.  Fills all 
  606.      the other country attributes with values.  LCP: CountryAttribs 
  607.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  608.  
  609.      Determine the primary language of the current country.  "Desc" must be 
  610.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  611.      CountryPrimLang 
  612.      bool getAllLanguages(vecString &Languages) 
  613.  
  614.      Determine all the languages used by the current country.  "Desc" must be 
  615.      already set.  The result is returned in priority order (highest priority 
  616.      first) in vecString &Languages.  LCP: CountryLanguages 
  617.      bool getLanguageList(vecString &Languages) 
  618.  
  619.      Get a list of all possible languages, in alphabetical order, returned in 
  620.      vecString &Languages.  LCP: CountryLangList 
  621.      bool getLanguageListEngNat(mapString &Languages) 
  622.  
  623.      Get a map of all possible languages, their native description in 
  624.      alphabetical order by english description, returned in in vecString 
  625.      &Languages.  LCP: CountryLangListEngNat 
  626.  
  627.   Delete a country 
  628.      bool deleteFromDesc() 
  629.  
  630.      Delete the country that uses the currently set description.  LCP: 
  631.      CountryDelete 
  632.  
  633.   Set data members 
  634.      bool setAll(mapString &FieldValues) 
  635.  
  636.      Sets all the data members of a topic using the mapString which is passed 
  637.      to it.  Only the fields present in the mapString are updated, the other 
  638.      fields are untouched.  LCP: CountryUpdate 
  639.      bool setDesc(const string &DescSetting) 
  640.  
  641.      Set the short description 
  642.      bool setDescLong(const string &DescLongSetting) 
  643.  
  644.      Set the long description 
  645.      bool setDescNative(const string &DescNativeSetting) 
  646.  
  647.      Set the native language description 
  648.      bool setNetCode(const string &NetCodeSetting) 
  649.  
  650.      Set the internet code for this country 
  651.      bool erase() 
  652.  
  653.      Sets all the data members to empty 
  654.  
  655.   Get data members 
  656.      bool getAll(mapString &FieldValues) 
  657.  
  658.      Return a mapString of all the data members of this topic. The key is the 
  659.      variable name.  LCP: CountryAttribs 
  660.      string getDesc() 
  661.  
  662.      Get the short description 
  663.      string getDescLong() 
  664.  
  665.      Get the long description 
  666.      string getDescNative() 
  667.  
  668.      Get the native language description 
  669.      string getNetCode() 
  670.  
  671.      Get the internet code for this country 
  672.  
  673.  
  674. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  675.  
  676.  
  677. lyris_Country Class 
  678.  
  679.      class lyris_Country 
  680.  
  681.      For determining what countries exist, and what languages are spoken & 
  682.      preferred in each country 
  683.  
  684.      Defined in: COUNTRY.H 
  685.  
  686.   Create a new country 
  687.  
  688.       bool createNew() 
  689.  
  690.      Creates a new country/language table row.  LCP: CountryCreate 
  691.      bool updateDatabase() 
  692.  
  693.      Save the current country with the data members that have changed.  LCP: 
  694.      CountryUpdate 
  695.      bool VerifyFields() 
  696.  
  697.      Verify that all required fields are filled in. 
  698.  
  699.   Retrieve data from the database 
  700.      bool fetchAllCountries(vecString &AllCountries) 
  701.  
  702.      Fetch a list of all countries.  LCP: CountryAll 
  703.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  704.  
  705.      Fetch a paired list of countries and their native language descriptions, 
  706.      sorted by english description.  LCP: CountryEngNat 
  707.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  708.  
  709.      Fetch a paired list of native language country descriptions, and the 
  710.      english name of the country. 
  711.      bool retrieveFromNetCode() 
  712.  
  713.      Determine the country that uses the currently set NetCode.  Fills all the 
  714.      other country attributes with values. LCP: CountryAttNetCode 
  715.      bool retrieveFromDesc() 
  716.  
  717.      Determine the country that uses the currently set description.  Fills all 
  718.      the other country attributes with values.  LCP: CountryAttribs 
  719.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  720.  
  721.      Determine the primary language of the current country.  "Desc" must be 
  722.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  723.      CountryPrimLang 
  724.      bool getAllLanguages(vecString &Languages) 
  725.  
  726.      Determine all the languages used by the current country.  "Desc" must be 
  727.      already set.  The result is returned in priority order (highest priority 
  728.      first) in vecString &Languages.  LCP: CountryLanguages 
  729.      bool getLanguageList(vecString &Languages) 
  730.  
  731.      Get a list of all possible languages, in alphabetical order, returned in 
  732.      vecString &Languages.  LCP: CountryLangList 
  733.      bool getLanguageListEngNat(mapString &Languages) 
  734.  
  735.      Get a map of all possible languages, their native description in 
  736.      alphabetical order by english description, returned in in vecString 
  737.      &Languages.  LCP: CountryLangListEngNat 
  738.  
  739.   Delete a country 
  740.      bool deleteFromDesc() 
  741.  
  742.      Delete the country that uses the currently set description.  LCP: 
  743.      CountryDelete 
  744.  
  745.   Set data members 
  746.      bool setAll(mapString &FieldValues) 
  747.  
  748.      Sets all the data members of a topic using the mapString which is passed 
  749.      to it.  Only the fields present in the mapString are updated, the other 
  750.      fields are untouched.  LCP: CountryUpdate 
  751.      bool setDesc(const string &DescSetting) 
  752.  
  753.      Set the short description 
  754.      bool setDescLong(const string &DescLongSetting) 
  755.  
  756.      Set the long description 
  757.      bool setDescNative(const string &DescNativeSetting) 
  758.  
  759.      Set the native language description 
  760.      bool setNetCode(const string &NetCodeSetting) 
  761.  
  762.      Set the internet code for this country 
  763.      bool erase() 
  764.  
  765.      Sets all the data members to empty 
  766.  
  767.   Get data members 
  768.      bool getAll(mapString &FieldValues) 
  769.  
  770.      Return a mapString of all the data members of this topic. The key is the 
  771.      variable name.  LCP: CountryAttribs 
  772.      string getDesc() 
  773.  
  774.      Get the short description 
  775.      string getDescLong() 
  776.  
  777.      Get the long description 
  778.      string getDescNative() 
  779.  
  780.      Get the native language description 
  781.      string getNetCode() 
  782.  
  783.      Get the internet code for this country 
  784.      lyris_Lists Class 
  785.  
  786.      class lyris_Lists 
  787.  
  788.      For creating and retrieving mail lists, and all their attributes. 
  789.  
  790.      Defined in: LISTS.H 
  791.  
  792.   Create a new mailing list 
  793.  
  794.       bool createNew() 
  795.  
  796.      Creates a new mailing list with the currently set data members.  LCP: 
  797.      ListCreate 
  798.      bool updateDatabase() 
  799.  
  800.      Save the current list with the data members that have changed.  LCP: 
  801.      ListUpdate 
  802.      bool VerifyFields() 
  803.  
  804.      Verify that all required fields are filled in. 
  805.  
  806.   Retrieve data from the database 
  807.      bool getAllLists(vecString &Lists) 
  808.  
  809.      Determine all the lists under all topics 
  810.      bool getAllListsAndTopic(const string& Site, multimapString &Lists) 
  811.  
  812.      determine all the lists under all topics, with the topic as the value, the 
  813.      listname as the key 
  814.      bool getAllTopic(vecString &Lists) 
  815.  
  816.      Get a list of names for a topic.  LCP: ListForTopic 
  817.      bool getAllSite(const string &Site, vecString &Lists) 
  818.  
  819.      Get a list of mailing lists a site.  LCP: ListForSite 
  820.      bool getAllTopicLogo(mapString &ListsAndLogo) 
  821.  
  822.      Get a list of names for a topic, along with their logo.  LCP: 
  823.      ListForTopicLogo 
  824.      bool retrieveFromName() 
  825.  
  826.      Retrieve all the data members of a list, based on its name.  LCP: 
  827.      ListAttribs 
  828.      bool CountAllUsers(unsigned long &Count) 
  829.  
  830.      Determine the total number of members for one list.  The List "Name" must 
  831.      be already set. 
  832.      bool CountAllLists(unsigned long &Count) 
  833.  
  834.      Determine the total number of lists for all topics and sites 
  835.  
  836.   Delete a list 
  837.      bool deleteFromName() 
  838.  
  839.      Delete the List that uses the currently set name.  LCP: ListDelete 
  840.  
  841.   Set data members 
  842.      bool setAll(mapString &FieldValues) 
  843.  
  844.      Sets all the data members of a list using the mapString which is passed to 
  845.      it.  Only the fields present in the mapString are updated, the other 
  846.      fields are untouched.  LCP: ListUpdate 
  847.      bool erase() 
  848.  
  849.      Set all the data members to blank 
  850.      bool setName(const string &Setting) 
  851.  
  852.      Set the list name 
  853.      bool setTopic(const string &Setting) 
  854.  
  855.      Set the list topic 
  856.      bool setDescShort(const string &Setting) 
  857.  
  858.      Set the short description 
  859.      bool setDescLong(const string &Setting) 
  860.  
  861.      Set the long description 
  862.      bool setComments(const string &Setting) 
  863.  
  864.      Set the comments 
  865.      bool setPrimLang(const string &Setting) 
  866.  
  867.      Set the primary language 
  868.      bool setSecLang(const string &Setting) 
  869.  
  870.      Set the secondary language 
  871.      bool setAdmin(const string &Setting) 
  872.  
  873.      Set the Administrator reponsible for this list (link to people) 
  874.      bool setSponsOrg(const string &Setting) 
  875.  
  876.      Set the Organization that is sponsoring this list  (link to document, type 
  877.      is organization) 
  878.      bool setURLList(const string &Setting) 
  879.  
  880.      Set the URL to list's home page 
  881.      bool setURLLogo(const string &Setting) 
  882.  
  883.      Set the URL to GIF/JPEG list logo 
  884.      bool setKeywords(const string &Setting) 
  885.  
  886.      Set the Keywords that describe this list 
  887.      bool setActSuspect(const string &Setting) 
  888.  
  889.      Set the action to take on suspect users: none, remove, nomail, 
  890.      notify_admin 
  891.      bool setActBouncng(const string &Setting) 
  892.  
  893.      Set the action to take on users bouncing messages: none, remove, nomail, 
  894.      notify_admin 
  895.      bool setMessageHdr(const string &Setting) 
  896.  
  897.      Set the text that should be pre-prepended to every message 
  898.      bool setMessageFtr(const string &Setting) 
  899.  
  900.      Set the text that should be appended to every message 
  901.      bool setSMTPHdrs(const string &Setting) 
  902.  
  903.      Set the text that should be included in the SMTP header of every message 
  904.      bool setArchivKeep(const string &Setting) 
  905.  
  906.      Set "Keep archives for how many days (0=forever, 1-10,000 days)" 
  907.      bool setRelPending(const string &Setting) 
  908.  
  909.      Set "If a pending message hasn't been aproved after X days, then send it 
  910.      anyway." 
  911.      bool setMaxMessNum(const string &Setting) 
  912.  
  913.      Set the maximum number of messages that can be sent to the list in 24h 
  914.      period (0=unlimited) 
  915.      bool setMaxMessSiz(const string &Setting) 
  916.  
  917.      Set in bytes, the maximum size of allowed messages from non-admin people 
  918.      bool setConfInterv(const string &Setting) 
  919.  
  920.      Set after how many days should we send a "you must confirm your 
  921.      membership" message? (0=never) 
  922.      bool setBouncngNum(const string &Setting) 
  923.  
  924.      Set how many messages can a user bounce before action is taken 
  925.      bool 
  926.  
  927.  
  928. ΓòÉΓòÉΓòÉ <hidden>      ΓòÉΓòÉΓòÉ
  929.  
  930.  
  931. lyris_Country Class 
  932.  
  933.      class lyris_Country 
  934.  
  935.      For determining what countries exist, and what languages are spoken & 
  936.      preferred in each country 
  937.  
  938.      Defined in: COUNTRY.H 
  939.  
  940.   Create a new country 
  941.  
  942.       bool createNew() 
  943.  
  944.      Creates a new country/language table row.  LCP: CountryCreate 
  945.      bool updateDatabase() 
  946.  
  947.      Save the current country with the data members that have changed.  LCP: 
  948.      CountryUpdate 
  949.      bool VerifyFields() 
  950.  
  951.      Verify that all required fields are filled in. 
  952.  
  953.   Retrieve data from the database 
  954.      bool fetchAllCountries(vecString &AllCountries) 
  955.  
  956.      Fetch a list of all countries.  LCP: CountryAll 
  957.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  958.  
  959.      Fetch a paired list of countries and their native language descriptions, 
  960.      sorted by english description.  LCP: CountryEngNat 
  961.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  962.  
  963.      Fetch a paired list of native language country descriptions, and the 
  964.      english name of the country. 
  965.      bool retrieveFromNetCode() 
  966.  
  967.      Determine the country that uses the currently set NetCode.  Fills all the 
  968.      other country attributes with values. LCP: CountryAttNetCode 
  969.      bool retrieveFromDesc() 
  970.  
  971.      Determine the country that uses the currently set description.  Fills all 
  972.      the other country attributes with values.  LCP: CountryAttribs 
  973.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  974.  
  975.      Determine the primary language of the current country.  "Desc" must be 
  976.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  977.      CountryPrimLang 
  978.      bool getAllLanguages(vecString &Languages) 
  979.  
  980.      Determine all the languages used by the current country.  "Desc" must be 
  981.      already set.  The result is returned in priority order (highest priority 
  982.      first) in vecString &Languages.  LCP: CountryLanguages 
  983.      bool getLanguageList(vecString &Languages) 
  984.  
  985.      Get a list of all possible languages, in alphabetical order, returned in 
  986.      vecString &Languages.  LCP: CountryLangList 
  987.      bool getLanguageListEngNat(mapString &Languages) 
  988.  
  989.      Get a map of all possible languages, their native description in 
  990.      alphabetical order by english description, returned in in vecString 
  991.      &Languages.  LCP: CountryLangListEngNat 
  992.  
  993.   Delete a country 
  994.      bool deleteFromDesc() 
  995.  
  996.      Delete the country that uses the currently set description.  LCP: 
  997.      CountryDelete 
  998.  
  999.   Set data members 
  1000.      bool setAll(mapString &FieldValues) 
  1001.  
  1002.      Sets all the data members of a topic using the mapString which is passed 
  1003.      to it.  Only the fields present in the mapString are updated, the other 
  1004.      fields are untouched.  LCP: CountryUpdate 
  1005.      bool setDesc(const string &DescSetting) 
  1006.  
  1007.      Set the short description 
  1008.      bool setDescLong(const string &DescLongSetting) 
  1009.  
  1010.      Set the long description 
  1011.      bool setDescNative(const string &DescNativeSetting) 
  1012.  
  1013.      Set the native language description 
  1014.      bool setNetCode(const string &NetCodeSetting) 
  1015.  
  1016.      Set the internet code for this country 
  1017.      bool erase() 
  1018.  
  1019.      Sets all the data members to empty 
  1020.  
  1021.   Get data members 
  1022.      bool getAll(mapString &FieldValues) 
  1023.  
  1024.      Return a mapString of all the data members of this topic. The key is the 
  1025.      variable name.  LCP: CountryAttribs 
  1026.      string getDesc() 
  1027.  
  1028.      Get the short description 
  1029.      string getDescLong() 
  1030.  
  1031.      Get the long description 
  1032.      string getDescNative() 
  1033.  
  1034.      Get the native language description 
  1035.      string getNetCode() 
  1036.  
  1037.      Get the internet code for this country 
  1038.      lyris_Members Class 
  1039.  
  1040.      class lyris_Members 
  1041.  
  1042.      Keeps track of the members for a mailing list 
  1043.  
  1044.      Defined in: MEMBERS.H 
  1045.  
  1046.   Create a new list member 
  1047.  
  1048.       bool createNew() 
  1049.  
  1050.      Create a new list member.  LCP: MemberCreate 
  1051.      bool updateDatabase() 
  1052.  
  1053.      Save the current member with the data members that have changed.  LCP: 
  1054.      MemberUpdate 
  1055.      bool VerifyFields() 
  1056.  
  1057.      Verify that all required fields are filled in. 
  1058.  
  1059.   Retrieve data from the database 
  1060.      bool findAndExpireMembers(mapString &KeyValuePair) 
  1061.  
  1062.      find all members that have expired, and actually expire them, return a map 
  1063.      of MemberID[EmailAddr] of the people acted on 
  1064.      bool findAndHoldMembers(mapString &KeyValuePair) 
  1065.  
  1066.      hold all members with too many errors for too many days, return MemberID & 
  1067.      email address of the people we held 
  1068.      bool unholdByEmail(vecString &UnHeldLists) 
  1069.  
  1070.      unhold the member currently specified by an email address 
  1071.      bool getAllFromList(vecString &FullNames) 
  1072.  
  1073.      Determine all the Members IDs for a single List.  LCP: MemberFromList 
  1074.      bool getAllListsFromEmail(vecString &Lists) 
  1075.  
  1076.      Determine all the list names that a given email address belongs to 
  1077.      bool getAllListsFromFullName(vecString &Lists) 
  1078.  
  1079.      Determine all the list names that a given full name belongs to 
  1080.      bool getAllFromListText(mapString &MemberText) 
  1081.  
  1082.      Determine all the Members IDs for a single List, return ID and description 
  1083.      (name, email) 
  1084.      bool getAllFromListMail(vecString &EmailAddr) 
  1085.  
  1086.      Determine all the Members EmailAddr for a single List, who want to receive 
  1087.      mail 
  1088.      bool getAllFromListMail(mapString &EmailAddrID) 
  1089.  
  1090.      Determine all the Members EmailAddr &MemberID for a single List, who want 
  1091.      to receive mail 
  1092.      bool getListFromNamePassword(vecString &Lists) 
  1093.  
  1094.      Determine all the Lists that a given name, password combination matches 
  1095.      with 
  1096.      bool purgeHeld() 
  1097.  
  1098.      Deletes all users who have MemberType "held" - the administrator can 
  1099.      choose to do this 
  1100.      bool unHoldAllSinceDateHeld() 
  1101.  
  1102.      Finds all members with status "hold" since (and including) the currently 
  1103.      set DateHeld and sets them to "normal" MemberType 
  1104.      bool getMemberByFullNameAndList() 
  1105.  
  1106.      Find the member with with the currently set "FullName" and "List".  LCP: 
  1107.      MemberAttNameList 
  1108.      bool getMemberByEmailAddrAndList() 
  1109.  
  1110.      Find the member with with the currently set "EmailAddr" and "List".  LCP: 
  1111.      MemberAttEmailList 
  1112.      bool getAllFromMemberType(vecString &MemberIDs) 
  1113.  
  1114.      Determine all the Members IDs of the currently set membertype 
  1115.      bool fetchAllFullNameAndEmailByList(mapString &KeyValuePair) 
  1116.  
  1117.      Return a map of usernames and email addresses for one list.  LCP: 
  1118.      MemberAllNameEmail 
  1119.      bool fetchAllRcvAdmMail(mapString &KeyValuePair) 
  1120.  
  1121.      Return a map of EmailAddr and MemberIDs - all admins who want to receive 
  1122.      admin mail by electonic mail (RcvAdmMail = 'T'); 
  1123.      bool fetchAllRcvErrorMail(mapString &KeyValuePair) 
  1124.  
  1125.      Return a map of EmailAddr and MemberIDs - all admins who want to receive 
  1126.      error mail 
  1127.      bool fetchAllRcvModerated(mapString &KeyValuePair) 
  1128.  
  1129.      Return a map of EmailAddr and MemberIDs - all admins who want to receive 
  1130.      moderated message info 
  1131.      bool fetchAllFullNameAndMemberIDByList(mapString &KeyValuePair) 
  1132.  
  1133.      Return a map of usernames and MemberIDs for one list.  LCP: 
  1134.      MemberAllNameID 
  1135.      bool fetchAllEmailAndMemberIDByList(mapString &KeyValuePair) 
  1136.  
  1137.      Return a map of EmailAddr and MemberIDs for one list.  LCP: 
  1138.      MemberAllEmailID 
  1139.      bool retrieveFromMemberID() 
  1140.  
  1141.      Determine the Member that uses the currently set description.  Fills all 
  1142.      the other Member attributes with values.  LCP: MemberAttribs 
  1143.      bool getAllDigestUsersFromList(mapString &MemberIDEmails) 
  1144.  
  1145.      Determine all the Members IDs for a single List that should receive 
  1146.      digests 
  1147.      bool getAllIndexUsersFromList(mapString &MemberIDEmails) 
  1148.  
  1149.      Determine all the Members IDs for a single List that should receive 
  1150.      indexes 
  1151.      bool CountAllUsers(unsigned long &Count) 
  1152.  
  1153.      Determine the total number of members for one list 
  1154.  
  1155.   Delete members 
  1156.      bool deleteMemberByFullNameAndList() 
  1157.  
  1158.      Delete the member with the currently set "FullName" and "List".  LCP: 
  1159.      MemberDelNameList 
  1160.      bool deleteMemberByEmailAddrAndList() 
  1161.  
  1162.      Delete the member with with the currently set "EmailAddr" and "List". 
  1163.      LCP: MemberDelEmailList 
  1164.      bool deleteFromMemberID() 
  1165.  
  1166.      Delete the member that uses the currently set MemberID.  LCP: MemberDelete 
  1167.  
  1168.   Set data members 
  1169.      bool setAll(mapString &FieldValues) 
  1170.  
  1171.      Sets all the data members of a member using the mapString which is passed 
  1172.      to it.  Only the fields present in the mapString are updated, the other 
  1173.      fields are untouched.  LCP: MemberUpdate 
  1174.      bool erase() 
  1175.  
  1176.      Sets all the data members to blank 
  1177.      bool setMemberID(const string &Setting) 
  1178.  
  1179.      Set the Unique member ID 
  1180.      bool setFullName(const string &Setting) 
  1181.  
  1182.      Set the Full name of this person 
  1183.      bool setEmailAddr(const string &Setting) 
  1184.  
  1185.      Set the Full internet email address 
  1186.      bool setPassword(const string &Setting) 
  1187.  
  1188.      Set the Password this person uses for restricted functions 
  1189.      bool setList(const string &Setting) 
  1190.  
  1191.      Set the list this person is member of (link to lists)) 
  1192.      bool setMemberType(const string &Setting) 
  1193.  
  1194.      Set the kind of member this is (normal, god, admin, forbidden, inactive, 
  1195.      normal_template, admin_template) 
  1196.      bool setSubType(const string &Setting) 
  1197.  
  1198.      Set the kind of subscription (digest, index, nomail, normal) 
  1199.      bool setDateJoined(const string &Setting) 
  1200.  
  1201.      Set the Date when person became a member of this topic 
  1202.      bool 
  1203.  
  1204.  
  1205. ΓòÉΓòÉΓòÉ <hidden> 
  1206.  ΓòÉΓòÉΓòÉ
  1207.  
  1208.  
  1209. lyris_Country Class 
  1210.  
  1211.      class lyris_Country 
  1212.  
  1213.      For determining what countries exist, and what languages are spoken & 
  1214.      preferred in each country 
  1215.  
  1216.      Defined in: COUNTRY.H 
  1217.  
  1218.   Create a new country 
  1219.  
  1220.       bool createNew() 
  1221.  
  1222.      Creates a new country/language table row.  LCP: CountryCreate 
  1223.      bool updateDatabase() 
  1224.  
  1225.      Save the current country with the data members that have changed.  LCP: 
  1226.      CountryUpdate 
  1227.      bool VerifyFields() 
  1228.  
  1229.      Verify that all required fields are filled in. 
  1230.  
  1231.   Retrieve data from the database 
  1232.      bool fetchAllCountries(vecString &AllCountries) 
  1233.  
  1234.      Fetch a list of all countries.  LCP: CountryAll 
  1235.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1236.  
  1237.      Fetch a paired list of countries and their native language descriptions, 
  1238.      sorted by english description.  LCP: CountryEngNat 
  1239.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1240.  
  1241.      Fetch a paired list of native language country descriptions, and the 
  1242.      english name of the country. 
  1243.      bool retrieveFromNetCode() 
  1244.  
  1245.      Determine the country that uses the currently set NetCode.  Fills all the 
  1246.      other country attributes with values. LCP: CountryAttNetCode 
  1247.      bool retrieveFromDesc() 
  1248.  
  1249.      Determine the country that uses the currently set description.  Fills all 
  1250.      the other country attributes with values.  LCP: CountryAttribs 
  1251.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1252.  
  1253.      Determine the primary language of the current country.  "Desc" must be 
  1254.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1255.      CountryPrimLang 
  1256.      bool getAllLanguages(vecString &Languages) 
  1257.  
  1258.      Determine all the languages used by the current country.  "Desc" must be 
  1259.      already set.  The result is returned in priority order (highest priority 
  1260.      first) in vecString &Languages.  LCP: CountryLanguages 
  1261.      bool getLanguageList(vecString &Languages) 
  1262.  
  1263.      Get a list of all possible languages, in alphabetical order, returned in 
  1264.      vecString &Languages.  LCP: CountryLangList 
  1265.      bool getLanguageListEngNat(mapString &Languages) 
  1266.  
  1267.      Get a map of all possible languages, their native description in 
  1268.      alphabetical order by english description, returned in in vecString 
  1269.      &Languages.  LCP: CountryLangListEngNat 
  1270.  
  1271.   Delete a country 
  1272.      bool deleteFromDesc() 
  1273.  
  1274.      Delete the country that uses the currently set description.  LCP: 
  1275.      CountryDelete 
  1276.  
  1277.   Set data members 
  1278.      bool setAll(mapString &FieldValues) 
  1279.  
  1280.      Sets all the data members of a topic using the mapString which is passed 
  1281.      to it.  Only the fields present in the mapString are updated, the other 
  1282.      fields are untouched.  LCP: CountryUpdate 
  1283.      bool setDesc(const string &DescSetting) 
  1284.  
  1285.      Set the short description 
  1286.      bool setDescLong(const string &DescLongSetting) 
  1287.  
  1288.      Set the long description 
  1289.      bool setDescNative(const string &DescNativeSetting) 
  1290.  
  1291.      Set the native language description 
  1292.      bool setNetCode(const string &NetCodeSetting) 
  1293.  
  1294.      Set the internet code for this country 
  1295.      bool erase() 
  1296.  
  1297.      Sets all the data members to empty 
  1298.  
  1299.   Get data members 
  1300.      bool getAll(mapString &FieldValues) 
  1301.  
  1302.      Return a mapString of all the data members of this topic. The key is the 
  1303.      variable name.  LCP: CountryAttribs 
  1304.      string getDesc() 
  1305.  
  1306.      Get the short description 
  1307.      string getDescLong() 
  1308.  
  1309.      Get the long description 
  1310.      string getDescNative() 
  1311.  
  1312.      Get the native language description 
  1313.      string getNetCode() 
  1314.  
  1315.      Get the internet code for this country 
  1316.  
  1317.  
  1318. ΓòÉΓòÉΓòÉ <hidden>   ΓòÉΓòÉΓòÉ
  1319.  
  1320.  
  1321. lyris_Country Class 
  1322.  
  1323.      class lyris_Country 
  1324.  
  1325.      For determining what countries exist, and what languages are spoken & 
  1326.      preferred in each country 
  1327.  
  1328.      Defined in: COUNTRY.H 
  1329.  
  1330.   Create a new country 
  1331.  
  1332.       bool createNew() 
  1333.  
  1334.      Creates a new country/language table row.  LCP: CountryCreate 
  1335.      bool updateDatabase() 
  1336.  
  1337.      Save the current country with the data members that have changed.  LCP: 
  1338.      CountryUpdate 
  1339.      bool VerifyFields() 
  1340.  
  1341.      Verify that all required fields are filled in. 
  1342.  
  1343.   Retrieve data from the database 
  1344.      bool fetchAllCountries(vecString &AllCountries) 
  1345.  
  1346.      Fetch a list of all countries.  LCP: CountryAll 
  1347.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1348.  
  1349.      Fetch a paired list of countries and their native language descriptions, 
  1350.      sorted by english description.  LCP: CountryEngNat 
  1351.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1352.  
  1353.      Fetch a paired list of native language country descriptions, and the 
  1354.      english name of the country. 
  1355.      bool retrieveFromNetCode() 
  1356.  
  1357.      Determine the country that uses the currently set NetCode.  Fills all the 
  1358.      other country attributes with values. LCP: CountryAttNetCode 
  1359.      bool retrieveFromDesc() 
  1360.  
  1361.      Determine the country that uses the currently set description.  Fills all 
  1362.      the other country attributes with values.  LCP: CountryAttribs 
  1363.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1364.  
  1365.      Determine the primary language of the current country.  "Desc" must be 
  1366.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1367.      CountryPrimLang 
  1368.      bool getAllLanguages(vecString &Languages) 
  1369.  
  1370.      Determine all the languages used by the current country.  "Desc" must be 
  1371.      already set.  The result is returned in priority order (highest priority 
  1372.      first) in vecString &Languages.  LCP: CountryLanguages 
  1373.      bool getLanguageList(vecString &Languages) 
  1374.  
  1375.      Get a list of all possible languages, in alphabetical order, returned in 
  1376.      vecString &Languages.  LCP: CountryLangList 
  1377.      bool getLanguageListEngNat(mapString &Languages) 
  1378.  
  1379.      Get a map of all possible languages, their native description in 
  1380.      alphabetical order by english description, returned in in vecString 
  1381.      &Languages.  LCP: CountryLangListEngNat 
  1382.  
  1383.   Delete a country 
  1384.      bool deleteFromDesc() 
  1385.  
  1386.      Delete the country that uses the currently set description.  LCP: 
  1387.      CountryDelete 
  1388.  
  1389.   Set data members 
  1390.      bool setAll(mapString &FieldValues) 
  1391.  
  1392.      Sets all the data members of a topic using the mapString which is passed 
  1393.      to it.  Only the fields present in the mapString are updated, the other 
  1394.      fields are untouched.  LCP: CountryUpdate 
  1395.      bool setDesc(const string &DescSetting) 
  1396.  
  1397.      Set the short description 
  1398.      bool setDescLong(const string &DescLongSetting) 
  1399.  
  1400.      Set the long description 
  1401.      bool setDescNative(const string &DescNativeSetting) 
  1402.  
  1403.      Set the native language description 
  1404.      bool setNetCode(const string &NetCodeSetting) 
  1405.  
  1406.      Set the internet code for this country 
  1407.      bool erase() 
  1408.  
  1409.      Sets all the data members to empty 
  1410.  
  1411.   Get data members 
  1412.      bool getAll(mapString &FieldValues) 
  1413.  
  1414.      Return a mapString of all the data members of this topic. The key is the 
  1415.      variable name.  LCP: CountryAttribs 
  1416.      string getDesc() 
  1417.  
  1418.      Get the short description 
  1419.      string getDescLong() 
  1420.  
  1421.      Get the long description 
  1422.      string getDescNative() 
  1423.  
  1424.      Get the native language description 
  1425.      string getNetCode() 
  1426.  
  1427.      Get the internet code for this country 
  1428.  
  1429.  
  1430. ΓòÉΓòÉΓòÉ <hidden>   ΓòÉΓòÉΓòÉ
  1431.  
  1432.  
  1433. lyris_Country Class 
  1434.  
  1435.      class lyris_Country 
  1436.  
  1437.      For determining what countries exist, and what languages are spoken & 
  1438.      preferred in each country 
  1439.  
  1440.      Defined in: COUNTRY.H 
  1441.  
  1442.   Create a new country 
  1443.  
  1444.       bool createNew() 
  1445.  
  1446.      Creates a new country/language table row.  LCP: CountryCreate 
  1447.      bool updateDatabase() 
  1448.  
  1449.      Save the current country with the data members that have changed.  LCP: 
  1450.      CountryUpdate 
  1451.      bool VerifyFields() 
  1452.  
  1453.      Verify that all required fields are filled in. 
  1454.  
  1455.   Retrieve data from the database 
  1456.      bool fetchAllCountries(vecString &AllCountries) 
  1457.  
  1458.      Fetch a list of all countries.  LCP: CountryAll 
  1459.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1460.  
  1461.      Fetch a paired list of countries and their native language descriptions, 
  1462.      sorted by english description.  LCP: CountryEngNat 
  1463.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1464.  
  1465.      Fetch a paired list of native language country descriptions, and the 
  1466.      english name of the country. 
  1467.      bool retrieveFromNetCode() 
  1468.  
  1469.      Determine the country that uses the currently set NetCode.  Fills all the 
  1470.      other country attributes with values. LCP: CountryAttNetCode 
  1471.      bool retrieveFromDesc() 
  1472.  
  1473.      Determine the country that uses the currently set description.  Fills all 
  1474.      the other country attributes with values.  LCP: CountryAttribs 
  1475.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1476.  
  1477.      Determine the primary language of the current country.  "Desc" must be 
  1478.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1479.      CountryPrimLang 
  1480.      bool getAllLanguages(vecString &Languages) 
  1481.  
  1482.      Determine all the languages used by the current country.  "Desc" must be 
  1483.      already set.  The result is returned in priority order (highest priority 
  1484.      first) in vecString &Languages.  LCP: CountryLanguages 
  1485.      bool getLanguageList(vecString &Languages) 
  1486.  
  1487.      Get a list of all possible languages, in alphabetical order, returned in 
  1488.      vecString &Languages.  LCP: CountryLangList 
  1489.      bool getLanguageListEngNat(mapString &Languages) 
  1490.  
  1491.      Get a map of all possible languages, their native description in 
  1492.      alphabetical order by english description, returned in in vecString 
  1493.      &Languages.  LCP: CountryLangListEngNat 
  1494.  
  1495.   Delete a country 
  1496.      bool deleteFromDesc() 
  1497.  
  1498.      Delete the country that uses the currently set description.  LCP: 
  1499.      CountryDelete 
  1500.  
  1501.   Set data members 
  1502.      bool setAll(mapString &FieldValues) 
  1503.  
  1504.      Sets all the data members of a topic using the mapString which is passed 
  1505.      to it.  Only the fields present in the mapString are updated, the other 
  1506.      fields are untouched.  LCP: CountryUpdate 
  1507.      bool setDesc(const string &DescSetting) 
  1508.  
  1509.      Set the short description 
  1510.      bool setDescLong(const string &DescLongSetting) 
  1511.  
  1512.      Set the long description 
  1513.      bool setDescNative(const string &DescNativeSetting) 
  1514.  
  1515.      Set the native language description 
  1516.      bool setNetCode(const string &NetCodeSetting) 
  1517.  
  1518.      Set the internet code for this country 
  1519.      bool erase() 
  1520.  
  1521.      Sets all the data members to empty 
  1522.  
  1523.   Get data members 
  1524.      bool getAll(mapString &FieldValues) 
  1525.  
  1526.      Return a mapString of all the data members of this topic. The key is the 
  1527.      variable name.  LCP: CountryAttribs 
  1528.      string getDesc() 
  1529.  
  1530.      Get the short description 
  1531.      string getDescLong() 
  1532.  
  1533.      Get the long description 
  1534.      string getDescNative() 
  1535.  
  1536.      Get the native language description 
  1537.      string getNetCode() 
  1538.  
  1539.      Get the internet code for this country 
  1540.  
  1541.  
  1542. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  1543.  
  1544.  
  1545. lyris_Country Class 
  1546.  
  1547.      class lyris_Country 
  1548.  
  1549.      For determining what countries exist, and what languages are spoken & 
  1550.      preferred in each country 
  1551.  
  1552.      Defined in: COUNTRY.H 
  1553.  
  1554.   Create a new country 
  1555.  
  1556.       bool createNew() 
  1557.  
  1558.      Creates a new country/language table row.  LCP: CountryCreate 
  1559.      bool updateDatabase() 
  1560.  
  1561.      Save the current country with the data members that have changed.  LCP: 
  1562.      CountryUpdate 
  1563.      bool VerifyFields() 
  1564.  
  1565.      Verify that all required fields are filled in. 
  1566.  
  1567.   Retrieve data from the database 
  1568.      bool fetchAllCountries(vecString &AllCountries) 
  1569.  
  1570.      Fetch a list of all countries.  LCP: CountryAll 
  1571.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1572.  
  1573.      Fetch a paired list of countries and their native language descriptions, 
  1574.      sorted by english description.  LCP: CountryEngNat 
  1575.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1576.  
  1577.      Fetch a paired list of native language country descriptions, and the 
  1578.      english name of the country. 
  1579.      bool retrieveFromNetCode() 
  1580.  
  1581.      Determine the country that uses the currently set NetCode.  Fills all the 
  1582.      other country attributes with values. LCP: CountryAttNetCode 
  1583.      bool retrieveFromDesc() 
  1584.  
  1585.      Determine the country that uses the currently set description.  Fills all 
  1586.      the other country attributes with values.  LCP: CountryAttribs 
  1587.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1588.  
  1589.      Determine the primary language of the current country.  "Desc" must be 
  1590.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1591.      CountryPrimLang 
  1592.      bool getAllLanguages(vecString &Languages) 
  1593.  
  1594.      Determine all the languages used by the current country.  "Desc" must be 
  1595.      already set.  The result is returned in priority order (highest priority 
  1596.      first) in vecString &Languages.  LCP: CountryLanguages 
  1597.      bool getLanguageList(vecString &Languages) 
  1598.  
  1599.      Get a list of all possible languages, in alphabetical order, returned in 
  1600.      vecString &Languages.  LCP: CountryLangList 
  1601.      bool getLanguageListEngNat(mapString &Languages) 
  1602.  
  1603.      Get a map of all possible languages, their native description in 
  1604.      alphabetical order by english description, returned in in vecString 
  1605.      &Languages.  LCP: CountryLangListEngNat 
  1606.  
  1607.   Delete a country 
  1608.      bool deleteFromDesc() 
  1609.  
  1610.      Delete the country that uses the currently set description.  LCP: 
  1611.      CountryDelete 
  1612.  
  1613.   Set data members 
  1614.      bool setAll(mapString &FieldValues) 
  1615.  
  1616.      Sets all the data members of a topic using the mapString which is passed 
  1617.      to it.  Only the fields present in the mapString are updated, the other 
  1618.      fields are untouched.  LCP: CountryUpdate 
  1619.      bool setDesc(const string &DescSetting) 
  1620.  
  1621.      Set the short description 
  1622.      bool setDescLong(const string &DescLongSetting) 
  1623.  
  1624.      Set the long description 
  1625.      bool setDescNative(const string &DescNativeSetting) 
  1626.  
  1627.      Set the native language description 
  1628.      bool setNetCode(const string &NetCodeSetting) 
  1629.  
  1630.      Set the internet code for this country 
  1631.      bool erase() 
  1632.  
  1633.      Sets all the data members to empty 
  1634.  
  1635.   Get data members 
  1636.      bool getAll(mapString &FieldValues) 
  1637.  
  1638.      Return a mapString of all the data members of this topic. The key is the 
  1639.      variable name.  LCP: CountryAttribs 
  1640.      string getDesc() 
  1641.  
  1642.      Get the short description 
  1643.      string getDescLong() 
  1644.  
  1645.      Get the long description 
  1646.      string getDescNative() 
  1647.  
  1648.      Get the native language description 
  1649.      string getNetCode() 
  1650.  
  1651.      Get the internet code for this country 
  1652.  
  1653.  
  1654. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  1655.  
  1656.  
  1657. lyris_Country Class 
  1658.  
  1659.      class lyris_Country 
  1660.  
  1661.      For determining what countries exist, and what languages are spoken & 
  1662.      preferred in each country 
  1663.  
  1664.      Defined in: COUNTRY.H 
  1665.  
  1666.   Create a new country 
  1667.  
  1668.       bool createNew() 
  1669.  
  1670.      Creates a new country/language table row.  LCP: CountryCreate 
  1671.      bool updateDatabase() 
  1672.  
  1673.      Save the current country with the data members that have changed.  LCP: 
  1674.      CountryUpdate 
  1675.      bool VerifyFields() 
  1676.  
  1677.      Verify that all required fields are filled in. 
  1678.  
  1679.   Retrieve data from the database 
  1680.      bool fetchAllCountries(vecString &AllCountries) 
  1681.  
  1682.      Fetch a list of all countries.  LCP: CountryAll 
  1683.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1684.  
  1685.      Fetch a paired list of countries and their native language descriptions, 
  1686.      sorted by english description.  LCP: CountryEngNat 
  1687.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1688.  
  1689.      Fetch a paired list of native language country descriptions, and the 
  1690.      english name of the country. 
  1691.      bool retrieveFromNetCode() 
  1692.  
  1693.      Determine the country that uses the currently set NetCode.  Fills all the 
  1694.      other country attributes with values. LCP: CountryAttNetCode 
  1695.      bool retrieveFromDesc() 
  1696.  
  1697.      Determine the country that uses the currently set description.  Fills all 
  1698.      the other country attributes with values.  LCP: CountryAttribs 
  1699.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1700.  
  1701.      Determine the primary language of the current country.  "Desc" must be 
  1702.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1703.      CountryPrimLang 
  1704.      bool getAllLanguages(vecString &Languages) 
  1705.  
  1706.      Determine all the languages used by the current country.  "Desc" must be 
  1707.      already set.  The result is returned in priority order (highest priority 
  1708.      first) in vecString &Languages.  LCP: CountryLanguages 
  1709.      bool getLanguageList(vecString &Languages) 
  1710.  
  1711.      Get a list of all possible languages, in alphabetical order, returned in 
  1712.      vecString &Languages.  LCP: CountryLangList 
  1713.      bool getLanguageListEngNat(mapString &Languages) 
  1714.  
  1715.      Get a map of all possible languages, their native description in 
  1716.      alphabetical order by english description, returned in in vecString 
  1717.      &Languages.  LCP: CountryLangListEngNat 
  1718.  
  1719.   Delete a country 
  1720.      bool deleteFromDesc() 
  1721.  
  1722.      Delete the country that uses the currently set description.  LCP: 
  1723.      CountryDelete 
  1724.  
  1725.   Set data members 
  1726.      bool setAll(mapString &FieldValues) 
  1727.  
  1728.      Sets all the data members of a topic using the mapString which is passed 
  1729.      to it.  Only the fields present in the mapString are updated, the other 
  1730.      fields are untouched.  LCP: CountryUpdate 
  1731.      bool setDesc(const string &DescSetting) 
  1732.  
  1733.      Set the short description 
  1734.      bool setDescLong(const string &DescLongSetting) 
  1735.  
  1736.      Set the long description 
  1737.      bool setDescNative(const string &DescNativeSetting) 
  1738.  
  1739.      Set the native language description 
  1740.      bool setNetCode(const string &NetCodeSetting) 
  1741.  
  1742.      Set the internet code for this country 
  1743.      bool erase() 
  1744.  
  1745.      Sets all the data members to empty 
  1746.  
  1747.   Get data members 
  1748.      bool getAll(mapString &FieldValues) 
  1749.  
  1750.      Return a mapString of all the data members of this topic. The key is the 
  1751.      variable name.  LCP: CountryAttribs 
  1752.      string getDesc() 
  1753.  
  1754.      Get the short description 
  1755.      string getDescLong() 
  1756.  
  1757.      Get the long description 
  1758.      string getDescNative() 
  1759.  
  1760.      Get the native language description 
  1761.      string getNetCode() 
  1762.  
  1763.      Get the internet code for this country 
  1764.  
  1765.  
  1766. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  1767.  
  1768.  
  1769. lyris_Country Class 
  1770.  
  1771.      class lyris_Country 
  1772.  
  1773.      For determining what countries exist, and what languages are spoken & 
  1774.      preferred in each country 
  1775.  
  1776.      Defined in: COUNTRY.H 
  1777.  
  1778.   Create a new country 
  1779.  
  1780.       bool createNew() 
  1781.  
  1782.      Creates a new country/language table row.  LCP: CountryCreate 
  1783.      bool updateDatabase() 
  1784.  
  1785.      Save the current country with the data members that have changed.  LCP: 
  1786.      CountryUpdate 
  1787.      bool VerifyFields() 
  1788.  
  1789.      Verify that all required fields are filled in. 
  1790.  
  1791.   Retrieve data from the database 
  1792.      bool fetchAllCountries(vecString &AllCountries) 
  1793.  
  1794.      Fetch a list of all countries.  LCP: CountryAll 
  1795.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1796.  
  1797.      Fetch a paired list of countries and their native language descriptions, 
  1798.      sorted by english description.  LCP: CountryEngNat 
  1799.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1800.  
  1801.      Fetch a paired list of native language country descriptions, and the 
  1802.      english name of the country. 
  1803.      bool retrieveFromNetCode() 
  1804.  
  1805.      Determine the country that uses the currently set NetCode.  Fills all the 
  1806.      other country attributes with values. LCP: CountryAttNetCode 
  1807.      bool retrieveFromDesc() 
  1808.  
  1809.      Determine the country that uses the currently set description.  Fills all 
  1810.      the other country attributes with values.  LCP: CountryAttribs 
  1811.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1812.  
  1813.      Determine the primary language of the current country.  "Desc" must be 
  1814.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1815.      CountryPrimLang 
  1816.      bool getAllLanguages(vecString &Languages) 
  1817.  
  1818.      Determine all the languages used by the current country.  "Desc" must be 
  1819.      already set.  The result is returned in priority order (highest priority 
  1820.      first) in vecString &Languages.  LCP: CountryLanguages 
  1821.      bool getLanguageList(vecString &Languages) 
  1822.  
  1823.      Get a list of all possible languages, in alphabetical order, returned in 
  1824.      vecString &Languages.  LCP: CountryLangList 
  1825.      bool getLanguageListEngNat(mapString &Languages) 
  1826.  
  1827.      Get a map of all possible languages, their native description in 
  1828.      alphabetical order by english description, returned in in vecString 
  1829.      &Languages.  LCP: CountryLangListEngNat 
  1830.  
  1831.   Delete a country 
  1832.      bool deleteFromDesc() 
  1833.  
  1834.      Delete the country that uses the currently set description.  LCP: 
  1835.      CountryDelete 
  1836.  
  1837.   Set data members 
  1838.      bool setAll(mapString &FieldValues) 
  1839.  
  1840.      Sets all the data members of a topic using the mapString which is passed 
  1841.      to it.  Only the fields present in the mapString are updated, the other 
  1842.      fields are untouched.  LCP: CountryUpdate 
  1843.      bool setDesc(const string &DescSetting) 
  1844.  
  1845.      Set the short description 
  1846.      bool setDescLong(const string &DescLongSetting) 
  1847.  
  1848.      Set the long description 
  1849.      bool setDescNative(const string &DescNativeSetting) 
  1850.  
  1851.      Set the native language description 
  1852.      bool setNetCode(const string &NetCodeSetting) 
  1853.  
  1854.      Set the internet code for this country 
  1855.      bool erase() 
  1856.  
  1857.      Sets all the data members to empty 
  1858.  
  1859.   Get data members 
  1860.      bool getAll(mapString &FieldValues) 
  1861.  
  1862.      Return a mapString of all the data members of this topic. The key is the 
  1863.      variable name.  LCP: CountryAttribs 
  1864.      string getDesc() 
  1865.  
  1866.      Get the short description 
  1867.      string getDescLong() 
  1868.  
  1869.      Get the long description 
  1870.      string getDescNative() 
  1871.  
  1872.      Get the native language description 
  1873.      string getNetCode() 
  1874.  
  1875.      Get the internet code for this country 
  1876.  
  1877.  
  1878. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  1879.  
  1880.  
  1881. lyris_Country Class 
  1882.  
  1883.      class lyris_Country 
  1884.  
  1885.      For determining what countries exist, and what languages are spoken & 
  1886.      preferred in each country 
  1887.  
  1888.      Defined in: COUNTRY.H 
  1889.  
  1890.   Create a new country 
  1891.  
  1892.       bool createNew() 
  1893.  
  1894.      Creates a new country/language table row.  LCP: CountryCreate 
  1895.      bool updateDatabase() 
  1896.  
  1897.      Save the current country with the data members that have changed.  LCP: 
  1898.      CountryUpdate 
  1899.      bool VerifyFields() 
  1900.  
  1901.      Verify that all required fields are filled in. 
  1902.  
  1903.   Retrieve data from the database 
  1904.      bool fetchAllCountries(vecString &AllCountries) 
  1905.  
  1906.      Fetch a list of all countries.  LCP: CountryAll 
  1907.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  1908.  
  1909.      Fetch a paired list of countries and their native language descriptions, 
  1910.      sorted by english description.  LCP: CountryEngNat 
  1911.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  1912.  
  1913.      Fetch a paired list of native language country descriptions, and the 
  1914.      english name of the country. 
  1915.      bool retrieveFromNetCode() 
  1916.  
  1917.      Determine the country that uses the currently set NetCode.  Fills all the 
  1918.      other country attributes with values. LCP: CountryAttNetCode 
  1919.      bool retrieveFromDesc() 
  1920.  
  1921.      Determine the country that uses the currently set description.  Fills all 
  1922.      the other country attributes with values.  LCP: CountryAttribs 
  1923.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  1924.  
  1925.      Determine the primary language of the current country.  "Desc" must be 
  1926.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  1927.      CountryPrimLang 
  1928.      bool getAllLanguages(vecString &Languages) 
  1929.  
  1930.      Determine all the languages used by the current country.  "Desc" must be 
  1931.      already set.  The result is returned in priority order (highest priority 
  1932.      first) in vecString &Languages.  LCP: CountryLanguages 
  1933.      bool getLanguageList(vecString &Languages) 
  1934.  
  1935.      Get a list of all possible languages, in alphabetical order, returned in 
  1936.      vecString &Languages.  LCP: CountryLangList 
  1937.      bool getLanguageListEngNat(mapString &Languages) 
  1938.  
  1939.      Get a map of all possible languages, their native description in 
  1940.      alphabetical order by english description, returned in in vecString 
  1941.      &Languages.  LCP: CountryLangListEngNat 
  1942.  
  1943.   Delete a country 
  1944.      bool deleteFromDesc() 
  1945.  
  1946.      Delete the country that uses the currently set description.  LCP: 
  1947.      CountryDelete 
  1948.  
  1949.   Set data members 
  1950.      bool setAll(mapString &FieldValues) 
  1951.  
  1952.      Sets all the data members of a topic using the mapString which is passed 
  1953.      to it.  Only the fields present in the mapString are updated, the other 
  1954.      fields are untouched.  LCP: CountryUpdate 
  1955.      bool setDesc(const string &DescSetting) 
  1956.  
  1957.      Set the short description 
  1958.      bool setDescLong(const string &DescLongSetting) 
  1959.  
  1960.      Set the long description 
  1961.      bool setDescNative(const string &DescNativeSetting) 
  1962.  
  1963.      Set the native language description 
  1964.      bool setNetCode(const string &NetCodeSetting) 
  1965.  
  1966.      Set the internet code for this country 
  1967.      bool erase() 
  1968.  
  1969.      Sets all the data members to empty 
  1970.  
  1971.   Get data members 
  1972.      bool getAll(mapString &FieldValues) 
  1973.  
  1974.      Return a mapString of all the data members of this topic. The key is the 
  1975.      variable name.  LCP: CountryAttribs 
  1976.      string getDesc() 
  1977.  
  1978.      Get the short description 
  1979.      string getDescLong() 
  1980.  
  1981.      Get the long description 
  1982.      string getDescNative() 
  1983.  
  1984.      Get the native language description 
  1985.      string getNetCode() 
  1986.  
  1987.      Get the internet code for this country 
  1988.      lyris_Table Class 
  1989.  
  1990.      class lyris_Table 
  1991.  
  1992.      Implementation-specific class for all database operations 
  1993.  
  1994.      Defined in: TABLE.H 
  1995.  
  1996.   Finding & retrieving data 
  1997.  
  1998.       bool findOneByValue (mapTableFields &TableFields, const string 
  1999.      &KeyFieldName, const string &KeyFieldValue, const bool StartAtTop = yes) 
  2000.  
  2001.      Positions to the first item matching the given key/value 
  2002.      bool findOneByValueNot(mapTableFields &TableFields, const string 
  2003.      &KeyFieldName, const string &KeyFieldValue) 
  2004.  
  2005.      Positions to the first item NOT matching the given value for the given key 
  2006.      bool findOneGreaterOrEqual(mapTableFields &TableFields, const string 
  2007.      &KeyFieldName, const string &KeyFieldValue) 
  2008.  
  2009.      Positions to the first item greater than or equal to the given key/value 
  2010.      bool findOneComparisonWithOneConstraint (mapTableFields &TableFields, 
  2011.      const string &KeyFieldName, const string &KeyFieldValue, const string 
  2012.      &KeyFieldName2, const string &Comparitor, const string &KeyFieldValue2) 
  2013.  
  2014.      Positions to the first item greater/less than or equal to the given 
  2015.      key/value, given one constraining key/value.  The comparison is decided by 
  2016.      the value of the Comparitor string. 
  2017.      bool findTwoComparisonWithOneConstraint(mapTableFields &TableFields, const 
  2018.      string &KeyFieldName, const string &KeyFieldValue, const string 
  2019.      &KeyFieldName2, const string &Comparitor2,  const string &KeyFieldValue2, 
  2020.      const string &KeyFieldName3, const string &Comparitor3, const string 
  2021.      &KeyFieldValue3) 
  2022.  
  2023.      Positions to the first item greater/less than or equal to the given two 
  2024.      keys/values, given one constraining key/value.  The comparison is decided 
  2025.      by the value of the Comparitor string. 
  2026.      bool fetchAllTwoComparisonWithOneConstraint(mapTableFields &TableFields, 
  2027.      const string &KeyFieldName, const string &KeyFieldValue, const string 
  2028.      &KeyFieldName2, const string  &Comparitor2, const string &KeyFieldValue2, 
  2029.      const string &KeyFieldName3, const string &Comparitor3, const string 
  2030.      &KeyFieldValue3, const string &DestFieldName, vecString &DestFields) 
  2031.  
  2032.      Positions to the first item greater/less than or equal to the given two 
  2033.      keys/values, given one constraining key/value.  The comparison is decided 
  2034.      by the value of the Comparitor string. 
  2035.      bool findOneByTwoKeys (mapTableFields &TableFields, const string 
  2036.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2037.      const string &KeyFieldValue2) 
  2038.  
  2039.      Position to a record matching a two key/value specification 
  2040.      bool findOneByThreeKeys(mapTableFields &TableFields, const string 
  2041.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2042.      const string &KeyFieldValue2,  const string &KeyFieldName3, const string 
  2043.      &KeyFieldValue3) 
  2044.  
  2045.      Position to a record matching a three key/value specification 
  2046.      bool fetchAllRows(mapTableFields &TableFields, mapTable &EntireTable) 
  2047.  
  2048.      Return all rows and fields.  Useful when you don't want to iterate through 
  2049.      the whole table. 
  2050.      bool fetchAllOfOneColumn(mapTableFields &TableFields, const string 
  2051.      &FieldName, vecString &EntireColumn) 
  2052.  
  2053.      Return all the data in one column for the entire table 
  2054.      bool fetchAllKeyValuePairs(mapTableFields &TableFields, const string 
  2055.      &KeyFieldName, const string &ValueFieldName, mapString &KeyValuePair) 
  2056.  
  2057.      Return all the data in two column for the entire table, in a key/value 
  2058.      pair 
  2059.      bool fetchAllNamedByOneKeySorted (mapTableFields &TableFields, const 
  2060.      string &KeyFieldName, const string &KeyFieldValue, const string 
  2061.      &SortFieldName, const string &DestFieldName, vecString &DestFields) 
  2062.  
  2063.      Naming one keys and its value, return all the values of a single field, 
  2064.      sorted as you choose 
  2065.      bool countAllNamedByOneKey(mapTableFields &TableFields, const string 
  2066.      &KeyFieldName, const string &KeyFieldValue, unsigned long &Count) 
  2067.  
  2068.      Naming one key and its value, return a count of the number of items which 
  2069.      match 
  2070.      bool countAllNamedByTwoKey (mapTableFields &TableFields, const string 
  2071.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2072.      const string &KeyFieldValue2, unsigned long &Count) 
  2073.  
  2074.      Naming two keys and their values, return a count of the number of items 
  2075.      which match. 
  2076.      bool fetchAllNamedByTwoKeySorted(mapTableFields &TableFields, const string 
  2077.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2078.      const string &KeyFieldValue2,  const string &SortFieldName, const string 
  2079.      &DestFieldName, vecString &DestFields) 
  2080.  
  2081.      Naming two keys and their values, return all the values of a single field, 
  2082.      sorted as you choose 
  2083.      bool fetchAllNamedByThreeKeySorted(mapTableFields &TableFields, const 
  2084.      string &KeyFieldName, const string &KeyFieldValue, const string 
  2085.      &KeyFieldName2, const string &KeyFieldValue2,  const string 
  2086.      &KeyFieldName3, const string &KeyFieldValue3, const string &SortFieldName, 
  2087.      const string &DestFieldName, vecString &DestFields) 
  2088.  
  2089.      Naming three keys and their values, return all the values of a single 
  2090.      field, sorted as you choose 
  2091.      bool fetchAllNamedByOneKeyPaired (mapTableFields &TableFields, const 
  2092.      string &KeyFieldName, const string &KeyFieldValue, const string 
  2093.      &FirstFieldName, const string &SecondFieldName, mapString &KeyValuePair) 
  2094.  
  2095.      Naming one key and its value, return all the values of a two fields which 
  2096.      meet this condition, paired in a key/value relationship 
  2097.      bool fetchAllNamedByTwoKeyPaired(mapTableFields &TableFields, const string 
  2098.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2099.      const string &KeyFieldValue2,  const string &FirstFieldName, const string 
  2100.      &SecondFieldName, mapString &KeyValuePair) 
  2101.  
  2102.      Naming two keys and their values, return all the values of a two fields 
  2103.      which meet this condition, paired in a key/value relationship 
  2104.      bool fetchAllNamedByThreeKeyPaired(mapTableFields &TableFields, const 
  2105.      string &KeyFieldName, const string &KeyFieldValue, const string 
  2106.      &KeyFieldName2, const string &KeyFieldValue2,  const string 
  2107.      &KeyFieldName3, const string &KeyFieldValue3, const string 
  2108.      &FirstFieldName, const string &SecondFieldName, mapString &KeyValuePair) 
  2109.  
  2110.      Naming three keys and their values, return all the values of a two fields 
  2111.      which meet this condition, paired in a key/value relationship 
  2112.      bool fetchCurrentRow(mapTableFields &TableFields, mapString &FieldValues) 
  2113.  
  2114.      Return all field field values for the current row position 
  2115.      bool fetchSomeAroundRelative( mapTableFields &TableFields, const string 
  2116.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2117.      const string &KeyFieldValue2,  const string &DestFieldName, const unsigned 
  2118.      long &StartRecord, const unsigned long &NumRecords, const bool 
  2119.      &CountFromEnd, vecString &DestFields, bool &IsAtExtremity, vecString 
  2120.      &DestFields2, vecString &DestFields3,  vecString &DestFields4, const 
  2121.      string &DestFieldName2 = "", const string &DestFieldName3 = "", const 
  2122.      string &DestFieldName4 = "", const string &SortFieldName = "") 
  2123.  
  2124.      Naming one constraining key, and a count # (# of items into the set), 
  2125.      return a certain number of items, sorted using the return-key field.  Can 
  2126.      fetch from forwards or backwords, from the beginning or end of the table. 
  2127.      bool determineStartEndWithOneKey (mapTableFields &TableFields,const string 
  2128.      &KeyFieldName,const string &KeyFieldValue,const string 
  2129.      &SortFieldName,const string &DestFieldName,string &StartValue,string 
  2130.      &EndValue) 
  2131.  
  2132.      Naming one key and its value, return the first and the last value of a 
  2133.      single field, sorted as you choose 
  2134.      bool findNextWithOneKey (mapTableFields &TableFields,const string 
  2135.      &KeyFieldName,const string &KeyFieldValue,const string 
  2136.      &FirstFieldName,const string &FirstFieldValue,string &NextValue, const 
  2137.      string &SortFieldName = "") 
  2138.  
  2139.      Naming one constrining key and its value, and an initial key and value, 
  2140.      return the next key value 
  2141.      bool findPreviousWithOneKey (mapTableFields &TableFields,const string 
  2142.      &KeyFieldName,const string &KeyFieldValue,const string 
  2143.      &FirstFieldName,const string &FirstFieldValue,string &PreviousValue, const 
  2144.      string &SortFieldName = "") 
  2145.  
  2146.      Naming one constrining key and its value, and an initial key and value, 
  2147.      return the previous key value 
  2148.      bool findFirstWithOneKey (mapTableFields &TableFields, const string 
  2149.      &KeyFieldValue, const string &Comparitor, const string &KeyFieldName, 
  2150.      const string &SortFieldName, const string &ReturnFieldName, string 
  2151.      &ReturnFieldValue) 
  2152.  
  2153.      Naming one comparison key and a sort key, return the first item found 
  2154.      bool findFirstWithTwoKey(mapTableFields &TableFields, const string 
  2155.      &KeyFieldValue, const string &Comparitor, const string &KeyFieldName, 
  2156.      const string &KeyFieldValue2,  const string &Comparitor2, const string 
  2157.      &KeyFieldName2, const string &SortFieldName, const string 
  2158.      &ReturnFieldName, string &ReturnFieldValue) 
  2159.  
  2160.      Naming two comparison keys and a sort key, return the first item found 
  2161.      bool fetchNamedField [string](const string &FieldName, string &FieldValue) 
  2162.  
  2163.      Return the string value for the named field 
  2164.      bool fetchNamedField [double](const string &FieldName, double &FieldValue) 
  2165.  
  2166.      Return the numeric value for the named field (only for numbers) 
  2167.  
  2168.   Creating, changing & deleting data 
  2169.      bool createNewRow() 
  2170.  
  2171.      Create a new database row with the FieldValues passed to it lint !e64 
  2172.      bool createNewRow() 
  2173.  
  2174.      Start to create a new database row 
  2175.      bool saveNewRow() 
  2176.  
  2177.      Save the row that was just created with createNewRow 
  2178.      bool deleteRow() 
  2179.  
  2180.      Permanently delete the current row 
  2181.      bool deleteOneByTwoKeys (mapTableFields &TableFields, const string 
  2182.      &KeyFieldName, const string &KeyFieldValue, const string &KeyFieldName2, 
  2183.      const string &KeyFieldValue2) 
  2184.  
  2185.      Delete one row that is found searching with two keys and their values 
  2186.      bool setNamedField [string](const string &FieldName, string &FieldValue) 
  2187.  
  2188.      Set a database field to a string value.  The value will be saved to disk 
  2189.      when the database is closed. 
  2190.      bool setNamedField [double](const string &FieldName, double &FieldValue) 
  2191.  
  2192.      Set a database field to a numeric value.  The value will be saved to disk 
  2193.      when the database is closed. 
  2194.  
  2195.   Whole-file operations 
  2196.      bool open(bool Exclusive = false) 
  2197.  
  2198.      Open the table.  Filename must be 
  2199.  
  2200.  
  2201. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2202.  
  2203.  
  2204. lyris_Country Class 
  2205.  
  2206.      class lyris_Country 
  2207.  
  2208.      For determining what countries exist, and what languages are spoken & 
  2209.      preferred in each country 
  2210.  
  2211.      Defined in: COUNTRY.H 
  2212.  
  2213.   Create a new country 
  2214.  
  2215.       bool createNew() 
  2216.  
  2217.      Creates a new country/language table row.  LCP: CountryCreate 
  2218.      bool updateDatabase() 
  2219.  
  2220.      Save the current country with the data members that have changed.  LCP: 
  2221.      CountryUpdate 
  2222.      bool VerifyFields() 
  2223.  
  2224.      Verify that all required fields are filled in. 
  2225.  
  2226.   Retrieve data from the database 
  2227.      bool fetchAllCountries(vecString &AllCountries) 
  2228.  
  2229.      Fetch a list of all countries.  LCP: CountryAll 
  2230.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2231.  
  2232.      Fetch a paired list of countries and their native language descriptions, 
  2233.      sorted by english description.  LCP: CountryEngNat 
  2234.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2235.  
  2236.      Fetch a paired list of native language country descriptions, and the 
  2237.      english name of the country. 
  2238.      bool retrieveFromNetCode() 
  2239.  
  2240.      Determine the country that uses the currently set NetCode.  Fills all the 
  2241.      other country attributes with values. LCP: CountryAttNetCode 
  2242.      bool retrieveFromDesc() 
  2243.  
  2244.      Determine the country that uses the currently set description.  Fills all 
  2245.      the other country attributes with values.  LCP: CountryAttribs 
  2246.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  2247.  
  2248.      Determine the primary language of the current country.  "Desc" must be 
  2249.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  2250.      CountryPrimLang 
  2251.      bool getAllLanguages(vecString &Languages) 
  2252.  
  2253.      Determine all the languages used by the current country.  "Desc" must be 
  2254.      already set.  The result is returned in priority order (highest priority 
  2255.      first) in vecString &Languages.  LCP: CountryLanguages 
  2256.      bool getLanguageList(vecString &Languages) 
  2257.  
  2258.      Get a list of all possible languages, in alphabetical order, returned in 
  2259.      vecString &Languages.  LCP: CountryLangList 
  2260.      bool getLanguageListEngNat(mapString &Languages) 
  2261.  
  2262.      Get a map of all possible languages, their native description in 
  2263.      alphabetical order by english description, returned in in vecString 
  2264.      &Languages.  LCP: CountryLangListEngNat 
  2265.  
  2266.   Delete a country 
  2267.      bool deleteFromDesc() 
  2268.  
  2269.      Delete the country that uses the currently set description.  LCP: 
  2270.      CountryDelete 
  2271.  
  2272.   Set data members 
  2273.      bool setAll(mapString &FieldValues) 
  2274.  
  2275.      Sets all the data members of a topic using the mapString which is passed 
  2276.      to it.  Only the fields present in the mapString are updated, the other 
  2277.      fields are untouched.  LCP: CountryUpdate 
  2278.      bool setDesc(const string &DescSetting) 
  2279.  
  2280.      Set the short description 
  2281.      bool setDescLong(const string &DescLongSetting) 
  2282.  
  2283.      Set the long description 
  2284.      bool setDescNative(const string &DescNativeSetting) 
  2285.  
  2286.      Set the native language description 
  2287.      bool setNetCode(const string &NetCodeSetting) 
  2288.  
  2289.      Set the internet code for this country 
  2290.      bool erase() 
  2291.  
  2292.      Sets all the data members to empty 
  2293.  
  2294.   Get data members 
  2295.      bool getAll(mapString &FieldValues) 
  2296.  
  2297.      Return a mapString of all the data members of this topic. The key is the 
  2298.      variable name.  LCP: CountryAttribs 
  2299.      string getDesc() 
  2300.  
  2301.      Get the short description 
  2302.      string getDescLong() 
  2303.  
  2304.      Get the long description 
  2305.      string getDescNative() 
  2306.  
  2307.      Get the native language description 
  2308.      string getNetCode() 
  2309.  
  2310.      Get the internet code for this country 
  2311.  
  2312.  
  2313. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2314.  
  2315.  
  2316. lyris_Country Class 
  2317.  
  2318.      class lyris_Country 
  2319.  
  2320.      For determining what countries exist, and what languages are spoken & 
  2321.      preferred in each country 
  2322.  
  2323.      Defined in: COUNTRY.H 
  2324.  
  2325.   Create a new country 
  2326.  
  2327.       bool createNew() 
  2328.  
  2329.      Creates a new country/language table row.  LCP: CountryCreate 
  2330.      bool updateDatabase() 
  2331.  
  2332.      Save the current country with the data members that have changed.  LCP: 
  2333.      CountryUpdate 
  2334.      bool VerifyFields() 
  2335.  
  2336.      Verify that all required fields are filled in. 
  2337.  
  2338.   Retrieve data from the database 
  2339.      bool fetchAllCountries(vecString &AllCountries) 
  2340.  
  2341.      Fetch a list of all countries.  LCP: CountryAll 
  2342.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2343.  
  2344.      Fetch a paired list of countries and their native language descriptions, 
  2345.      sorted by english description.  LCP: CountryEngNat 
  2346.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2347.  
  2348.      Fetch a paired list of native language country descriptions, and the 
  2349.      english name of the country. 
  2350.      bool retrieveFromNetCode() 
  2351.  
  2352.      Determine the country that uses the currently set NetCode.  Fills all the 
  2353.      other country attributes with values. LCP: CountryAttNetCode 
  2354.      bool retrieveFromDesc() 
  2355.  
  2356.      Determine the country that uses the currently set description.  Fills all 
  2357.      the other country attributes with values.  LCP: CountryAttribs 
  2358.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  2359.  
  2360.      Determine the primary language of the current country.  "Desc" must be 
  2361.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  2362.      CountryPrimLang 
  2363.      bool getAllLanguages(vecString &Languages) 
  2364.  
  2365.      Determine all the languages used by the current country.  "Desc" must be 
  2366.      already set.  The result is returned in priority order (highest priority 
  2367.      first) in vecString &Languages.  LCP: CountryLanguages 
  2368.      bool getLanguageList(vecString &Languages) 
  2369.  
  2370.      Get a list of all possible languages, in alphabetical order, returned in 
  2371.      vecString &Languages.  LCP: CountryLangList 
  2372.      bool getLanguageListEngNat(mapString &Languages) 
  2373.  
  2374.      Get a map of all possible languages, their native description in 
  2375.      alphabetical order by english description, returned in in vecString 
  2376.      &Languages.  LCP: CountryLangListEngNat 
  2377.  
  2378.   Delete a country 
  2379.      bool deleteFromDesc() 
  2380.  
  2381.      Delete the country that uses the currently set description.  LCP: 
  2382.      CountryDelete 
  2383.  
  2384.   Set data members 
  2385.      bool setAll(mapString &FieldValues) 
  2386.  
  2387.      Sets all the data members of a topic using the mapString which is passed 
  2388.      to it.  Only the fields present in the mapString are updated, the other 
  2389.      fields are untouched.  LCP: CountryUpdate 
  2390.      bool setDesc(const string &DescSetting) 
  2391.  
  2392.      Set the short description 
  2393.      bool setDescLong(const string &DescLongSetting) 
  2394.  
  2395.      Set the long description 
  2396.      bool setDescNative(const string &DescNativeSetting) 
  2397.  
  2398.      Set the native language description 
  2399.      bool setNetCode(const string &NetCodeSetting) 
  2400.  
  2401.      Set the internet code for this country 
  2402.      bool erase() 
  2403.  
  2404.      Sets all the data members to empty 
  2405.  
  2406.   Get data members 
  2407.      bool getAll(mapString &FieldValues) 
  2408.  
  2409.      Return a mapString of all the data members of this topic. The key is the 
  2410.      variable name.  LCP: CountryAttribs 
  2411.      string getDesc() 
  2412.  
  2413.      Get the short description 
  2414.      string getDescLong() 
  2415.  
  2416.      Get the long description 
  2417.      string getDescNative() 
  2418.  
  2419.      Get the native language description 
  2420.      string getNetCode() 
  2421.  
  2422.      Get the internet code for this country 
  2423.  
  2424.  
  2425. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2426.  
  2427.  
  2428. lyris_Country Class 
  2429.  
  2430.      class lyris_Country 
  2431.  
  2432.      For determining what countries exist, and what languages are spoken & 
  2433.      preferred in each country 
  2434.  
  2435.      Defined in: COUNTRY.H 
  2436.  
  2437.   Create a new country 
  2438.  
  2439.       bool createNew() 
  2440.  
  2441.      Creates a new country/language table row.  LCP: CountryCreate 
  2442.      bool updateDatabase() 
  2443.  
  2444.      Save the current country with the data members that have changed.  LCP: 
  2445.      CountryUpdate 
  2446.      bool VerifyFields() 
  2447.  
  2448.      Verify that all required fields are filled in. 
  2449.  
  2450.   Retrieve data from the database 
  2451.      bool fetchAllCountries(vecString &AllCountries) 
  2452.  
  2453.      Fetch a list of all countries.  LCP: CountryAll 
  2454.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2455.  
  2456.      Fetch a paired list of countries and their native language descriptions, 
  2457.      sorted by english description.  LCP: CountryEngNat 
  2458.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2459.  
  2460.      Fetch a paired list of native language country descriptions, and the 
  2461.      english name of the country. 
  2462.      bool retrieveFromNetCode() 
  2463.  
  2464.      Determine the country that uses the currently set NetCode.  Fills all the 
  2465.      other country attributes with values. LCP: CountryAttNetCode 
  2466.      bool retrieveFromDesc() 
  2467.  
  2468.      Determine the country that uses the currently set description.  Fills all 
  2469.      the other country attributes with values.  LCP: CountryAttribs 
  2470.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  2471.  
  2472.      Determine the primary language of the current country.  "Desc" must be 
  2473.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  2474.      CountryPrimLang 
  2475.      bool getAllLanguages(vecString &Languages) 
  2476.  
  2477.      Determine all the languages used by the current country.  "Desc" must be 
  2478.      already set.  The result is returned in priority order (highest priority 
  2479.      first) in vecString &Languages.  LCP: CountryLanguages 
  2480.      bool getLanguageList(vecString &Languages) 
  2481.  
  2482.      Get a list of all possible languages, in alphabetical order, returned in 
  2483.      vecString &Languages.  LCP: CountryLangList 
  2484.      bool getLanguageListEngNat(mapString &Languages) 
  2485.  
  2486.      Get a map of all possible languages, their native description in 
  2487.      alphabetical order by english description, returned in in vecString 
  2488.      &Languages.  LCP: CountryLangListEngNat 
  2489.  
  2490.   Delete a country 
  2491.      bool deleteFromDesc() 
  2492.  
  2493.      Delete the country that uses the currently set description.  LCP: 
  2494.      CountryDelete 
  2495.  
  2496.   Set data members 
  2497.      bool setAll(mapString &FieldValues) 
  2498.  
  2499.      Sets all the data members of a topic using the mapString which is passed 
  2500.      to it.  Only the fields present in the mapString are updated, the other 
  2501.      fields are untouched.  LCP: CountryUpdate 
  2502.      bool setDesc(const string &DescSetting) 
  2503.  
  2504.      Set the short description 
  2505.      bool setDescLong(const string &DescLongSetting) 
  2506.  
  2507.      Set the long description 
  2508.      bool setDescNative(const string &DescNativeSetting) 
  2509.  
  2510.      Set the native language description 
  2511.      bool setNetCode(const string &NetCodeSetting) 
  2512.  
  2513.      Set the internet code for this country 
  2514.      bool erase() 
  2515.  
  2516.      Sets all the data members to empty 
  2517.  
  2518.   Get data members 
  2519.      bool getAll(mapString &FieldValues) 
  2520.  
  2521.      Return a mapString of all the data members of this topic. The key is the 
  2522.      variable name.  LCP: CountryAttribs 
  2523.      string getDesc() 
  2524.  
  2525.      Get the short description 
  2526.      string getDescLong() 
  2527.  
  2528.      Get the long description 
  2529.      string getDescNative() 
  2530.  
  2531.      Get the native language description 
  2532.      string getNetCode() 
  2533.  
  2534.      Get the internet code for this country 
  2535.  
  2536.  
  2537. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2538.  
  2539.  
  2540. lyris_Country Class 
  2541.  
  2542.      class lyris_Country 
  2543.  
  2544.      For determining what countries exist, and what languages are spoken & 
  2545.      preferred in each country 
  2546.  
  2547.      Defined in: COUNTRY.H 
  2548.  
  2549.   Create a new country 
  2550.  
  2551.       bool createNew() 
  2552.  
  2553.      Creates a new country/language table row.  LCP: CountryCreate 
  2554.      bool updateDatabase() 
  2555.  
  2556.      Save the current country with the data members that have changed.  LCP: 
  2557.      CountryUpdate 
  2558.      bool VerifyFields() 
  2559.  
  2560.      Verify that all required fields are filled in. 
  2561.  
  2562.   Retrieve data from the database 
  2563.      bool fetchAllCountries(vecString &AllCountries) 
  2564.  
  2565.      Fetch a list of all countries.  LCP: CountryAll 
  2566.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2567.  
  2568.      Fetch a paired list of countries and their native language descriptions, 
  2569.      sorted by english description.  LCP: CountryEngNat 
  2570.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2571.  
  2572.      Fetch a paired list of native language country descriptions, and the 
  2573.      english name of the country. 
  2574.      bool retrieveFromNetCode() 
  2575.  
  2576.      Determine the country that uses the currently set NetCode.  Fills all the 
  2577.      other country attributes with values. LCP: CountryAttNetCode 
  2578.      bool retrieveFromDesc() 
  2579.  
  2580.      Determine the country that uses the currently set description.  Fills all 
  2581.      the other country attributes with values.  LCP: CountryAttribs 
  2582.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  2583.  
  2584.      Determine the primary language of the current country.  "Desc" must be 
  2585.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  2586.      CountryPrimLang 
  2587.      bool getAllLanguages(vecString &Languages) 
  2588.  
  2589.      Determine all the languages used by the current country.  "Desc" must be 
  2590.      already set.  The result is returned in priority order (highest priority 
  2591.      first) in vecString &Languages.  LCP: CountryLanguages 
  2592.      bool getLanguageList(vecString &Languages) 
  2593.  
  2594.      Get a list of all possible languages, in alphabetical order, returned in 
  2595.      vecString &Languages.  LCP: CountryLangList 
  2596.      bool getLanguageListEngNat(mapString &Languages) 
  2597.  
  2598.      Get a map of all possible languages, their native description in 
  2599.      alphabetical order by english description, returned in in vecString 
  2600.      &Languages.  LCP: CountryLangListEngNat 
  2601.  
  2602.   Delete a country 
  2603.      bool deleteFromDesc() 
  2604.  
  2605.      Delete the country that uses the currently set description.  LCP: 
  2606.      CountryDelete 
  2607.  
  2608.   Set data members 
  2609.      bool setAll(mapString &FieldValues) 
  2610.  
  2611.      Sets all the data members of a topic using the mapString which is passed 
  2612.      to it.  Only the fields present in the mapString are updated, the other 
  2613.      fields are untouched.  LCP: CountryUpdate 
  2614.      bool setDesc(const string &DescSetting) 
  2615.  
  2616.      Set the short description 
  2617.      bool setDescLong(const string &DescLongSetting) 
  2618.  
  2619.      Set the long description 
  2620.      bool setDescNative(const string &DescNativeSetting) 
  2621.  
  2622.      Set the native language description 
  2623.      bool setNetCode(const string &NetCodeSetting) 
  2624.  
  2625.      Set the internet code for this country 
  2626.      bool erase() 
  2627.  
  2628.      Sets all the data members to empty 
  2629.  
  2630.   Get data members 
  2631.      bool getAll(mapString &FieldValues) 
  2632.  
  2633.      Return a mapString of all the data members of this topic. The key is the 
  2634.      variable name.  LCP: CountryAttribs 
  2635.      string getDesc() 
  2636.  
  2637.      Get the short description 
  2638.      string getDescLong() 
  2639.  
  2640.      Get the long description 
  2641.      string getDescNative() 
  2642.  
  2643.      Get the native language description 
  2644.      string getNetCode() 
  2645.  
  2646.      Get the internet code for this country 
  2647.      lyris_Messages Class 
  2648.  
  2649.      class lyris_Messages 
  2650.  
  2651.      Holds messages that have been sent to mailing lists.  Also supports 
  2652.      full-text searching of the messages. 
  2653.  
  2654.      Defined in: MESSAGES.H 
  2655.  
  2656.   Create a new message 
  2657.  
  2658.       bool createNew() 
  2659.  
  2660.      Create a new archive message.  LCP: MessageCreate 
  2661.      bool updateDatabase() 
  2662.  
  2663.      Save the current country with the data members that have changed.  LCP: 
  2664.      MessageUpdate 
  2665.      bool VerifyFields() 
  2666.  
  2667.      Verify that all required fields are filled in. 
  2668.  
  2669.   Retrieve data from the database 
  2670.      bool getAllFromStatus(vecString &MessageIDs) 
  2671.  
  2672.      Determine all the Message entries for a single Status.  LCP: 
  2673.      MessageFromStatus 
  2674.      bool getAllFromListNotDigested(vecString &MessageIDs) 
  2675.  
  2676.      Determine all the Message entries that are not digested for a single list 
  2677.      bool getAllFromList(vecString &MessageIDs) 
  2678.  
  2679.      Determine all the Message entries for a single list.  LCP: MessageFromList 
  2680.      bool retrieveFromMessageID() 
  2681.  
  2682.      Determine the Message that uses the currently set MessageID.  Fills all 
  2683.      the other Message attributes with values.  LCP: MessageAttribs 
  2684.      bool retrieveNextNotIndexed() 
  2685.  
  2686.      Determine the next message that has not been full text indexed, and load 
  2687.      it.  Returns failure if all messages have been indexed 
  2688.      bool searchTextForMessages(const setString &UniqueWords, const unsigned 
  2689.      long MaxResults, const bool &SearchHeader, const bool &SearchBody, const 
  2690.      bool &SearchAny, mapSearchResults &SearchResults) 
  2691.  
  2692.      Conducts a full text search of all messages (for the currently defined 
  2693.      list).  You pass it a set of unique word to search for, and the search 
  2694.      results are returned as a mapSearchResults  . LCP: MessageSearch 
  2695.      bool findByDate() 
  2696.  
  2697.      Determine the Message that uses the currently set created date, or the 
  2698.      closest message thereafter.  Fills all the other Message attributes with 
  2699.      values. 
  2700.      bool getRelativeFromListText(const unsigned long &StartRecord, const 
  2701.      unsigned long &NumRecords, const bool &CountFromEnd, mapString &Messages, 
  2702.      bool &IsAtExtremity) 
  2703.  
  2704.      Determine some of the Message entries for a single list, relative to the 
  2705.      top or end of the set, with a text description 
  2706.      bool getRelativeFromList(const unsigned long &StartRecord, const unsigned 
  2707.      long &NumRecords, const bool &CountFromEnd, vecString &MessageIDs, bool 
  2708.      &IsAtExtremity) 
  2709.  
  2710.      Determine some of the Message entries for a single list 
  2711.      bool getSomeFromListText(const unsigned long &NumRecords, const unsigned 
  2712.      long &StartRecord, const bool &CountFromEnd, mapString &Messages, bool 
  2713.      &IsAtExtremity) 
  2714.  
  2715.      Determine some of the Message entries for a single list, starting from the 
  2716.      currently set MessageID, with a text description 
  2717.      bool getDatesFromList(string &StartDate, string &EndDate) 
  2718.  
  2719.      Determine the first and last date of a message for a given list 
  2720.      bool getNextID() 
  2721.  
  2722.      Determine the next messageID for a list's messages 
  2723.      bool getPreviousID() 
  2724.  
  2725.      Determine the previous messageID for a list's messages 
  2726.      bool getDescripts(vecString &MessageIDs, mapString &MessageDescripts) 
  2727.  
  2728.      Get the message descriptions for a set of MessageIDs - much faster than 
  2729.      constructing individual message objects 
  2730.      bool determineMessageCountForCreated(unsigned long &CountMessagesToday) 
  2731.  
  2732.      Determine all the Message entries for a single created day, for a single 
  2733.      list 
  2734.      bool retrieveFromHdrSubject(vecString &MessageIDs) 
  2735.  
  2736.      Determine all the Messages for the currently set HdrSubject 
  2737.      bool retrieveFromFirstLine(vecString &MessageIDs) 
  2738.  
  2739.      Determine all the Messages for the currently set FirstLine 
  2740.  
  2741.   Delete a message 
  2742.      bool deleteFromMessageID() 
  2743.  
  2744.      Delete the Message that uses the currently set MessageID.  LCP: 
  2745.      MessageDelete 
  2746.  
  2747.   Set data members 
  2748.      bool setAll(mapString &FieldValues) 
  2749.  
  2750.      Sets all the data members of a message using the mapString which is passed 
  2751.      to it.  Only the fields present in the mapString are updated, the other 
  2752.      fields are untouched.  LCP: MessageUpdate 
  2753.      bool erase() 
  2754.  
  2755.      Set all the data members to blank 
  2756.      bool setMessageID(const string &Setting) 
  2757.  
  2758.      Set the Unique message ID 
  2759.      bool setStatus(const string &Setting) 
  2760.  
  2761.      Set the status of this message (sent, pending, approved, refused) 
  2762.      bool setList(const string &Setting) 
  2763.  
  2764.      Set the list that this message belongs to 
  2765.      bool setHdrFromSpc(const string &Setting) 
  2766.  
  2767.      Set the "from " header 
  2768.      bool setHdrFrom(const string &Setting) 
  2769.  
  2770.      Set the "from:" header 
  2771.      bool setHdrTo(const string &Setting) 
  2772.  
  2773.      Set the "to:" header 
  2774.      bool setHdrDate(const string &Setting) 
  2775.  
  2776.      Set the "date:" header 
  2777.      bool setHdrSubject(const string &Setting) 
  2778.  
  2779.      Set the "subject:" header 
  2780.      bool setHdrAll(const string &Setting) 
  2781.  
  2782.      Set the complete message header 
  2783.      bool setBody(const string &Setting) 
  2784.  
  2785.      Set the body of the message 
  2786.      bool setCreated(const string &Setting) 
  2787.  
  2788.      Set the date this message was created 
  2789.      bool setIndexed(const string &Setting) 
  2790.  
  2791.      Set whether this message has been full text indexed or not. 
  2792.      bool setDigested(const string &Setting) 
  2793.  
  2794.      Set whether this message has been Digested or not. 
  2795.      bool setFirstLine(const string &Setting) 
  2796.  
  2797.      Set FirstLine 
  2798.  
  2799.   Get data members 
  2800.      bool getAll(mapString &FieldValues) 
  2801.  
  2802.      Return a mapString of all the data members of this message. The key is the 
  2803.      variable name.  LCP: MessageAttribs 
  2804.      string getMessageID() 
  2805.  
  2806.      Get the Unique message ID 
  2807.      string getStatus() 
  2808.  
  2809.      Get the status of this message (sent, pending, approved, refused) 
  2810.      string getList() 
  2811.  
  2812.      Get the list that this message belongs to 
  2813.      string getHdrFromSpc() 
  2814.  
  2815.      Get the "from " header 
  2816.      string getHdrFrom() 
  2817.  
  2818.      Get the "from:" header 
  2819.      string getHdrDate() 
  2820.  
  2821.      Get the "date:" header 
  2822.      string getHdrSubject() 
  2823.  
  2824.      Get the "subject:" header 
  2825.      string getHdrAll() 
  2826.  
  2827.      Get the complete message header 
  2828.      string getBody() 
  2829.  
  2830.      Get the body of the message 
  2831.      string getHdrTo() 
  2832.  
  2833.      Get the "to:" header 
  2834.      string getCreated() 
  2835.  
  2836.      Get the date this message was created 
  2837.      string getIndexed() 
  2838.  
  2839.      Get whether this message has been full text indexed or not. 
  2840.      string getDigested() 
  2841.  
  2842.      Get whether this message has been digested or not. 
  2843.      string getFirstLine() 
  2844.  
  2845.      Get FirstLine 
  2846.      bool saveWordIndex() 
  2847.  
  2848.      save this message in the inverted word index (body and header separately) 
  2849.      bool addWordsToIndex(vecString &Words, const string &Context) 
  2850.  
  2851.  
  2852. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2853.  
  2854.  
  2855. lyris_Country Class 
  2856.  
  2857.      class lyris_Country 
  2858.  
  2859.      For determining what countries exist, and what languages are spoken & 
  2860.      preferred in each country 
  2861.  
  2862.      Defined in: COUNTRY.H 
  2863.  
  2864.   Create a new country 
  2865.  
  2866.       bool createNew() 
  2867.  
  2868.      Creates a new country/language table row.  LCP: CountryCreate 
  2869.      bool updateDatabase() 
  2870.  
  2871.      Save the current country with the data members that have changed.  LCP: 
  2872.      CountryUpdate 
  2873.      bool VerifyFields() 
  2874.  
  2875.      Verify that all required fields are filled in. 
  2876.  
  2877.   Retrieve data from the database 
  2878.      bool fetchAllCountries(vecString &AllCountries) 
  2879.  
  2880.      Fetch a list of all countries.  LCP: CountryAll 
  2881.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2882.  
  2883.      Fetch a paired list of countries and their native language descriptions, 
  2884.      sorted by english description.  LCP: CountryEngNat 
  2885.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2886.  
  2887.      Fetch a paired list of native language country descriptions, and the 
  2888.      english name of the country. 
  2889.      bool retrieveFromNetCode() 
  2890.  
  2891.      Determine the country that uses the currently set NetCode.  Fills all the 
  2892.      other country attributes with values. LCP: CountryAttNetCode 
  2893.      bool retrieveFromDesc() 
  2894.  
  2895.      Determine the country that uses the currently set description.  Fills all 
  2896.      the other country attributes with values.  LCP: CountryAttribs 
  2897.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  2898.  
  2899.      Determine the primary language of the current country.  "Desc" must be 
  2900.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  2901.      CountryPrimLang 
  2902.      bool getAllLanguages(vecString &Languages) 
  2903.  
  2904.      Determine all the languages used by the current country.  "Desc" must be 
  2905.      already set.  The result is returned in priority order (highest priority 
  2906.      first) in vecString &Languages.  LCP: CountryLanguages 
  2907.      bool getLanguageList(vecString &Languages) 
  2908.  
  2909.      Get a list of all possible languages, in alphabetical order, returned in 
  2910.      vecString &Languages.  LCP: CountryLangList 
  2911.      bool getLanguageListEngNat(mapString &Languages) 
  2912.  
  2913.      Get a map of all possible languages, their native description in 
  2914.      alphabetical order by english description, returned in in vecString 
  2915.      &Languages.  LCP: CountryLangListEngNat 
  2916.  
  2917.   Delete a country 
  2918.      bool deleteFromDesc() 
  2919.  
  2920.      Delete the country that uses the currently set description.  LCP: 
  2921.      CountryDelete 
  2922.  
  2923.   Set data members 
  2924.      bool setAll(mapString &FieldValues) 
  2925.  
  2926.      Sets all the data members of a topic using the mapString which is passed 
  2927.      to it.  Only the fields present in the mapString are updated, the other 
  2928.      fields are untouched.  LCP: CountryUpdate 
  2929.      bool setDesc(const string &DescSetting) 
  2930.  
  2931.      Set the short description 
  2932.      bool setDescLong(const string &DescLongSetting) 
  2933.  
  2934.      Set the long description 
  2935.      bool setDescNative(const string &DescNativeSetting) 
  2936.  
  2937.      Set the native language description 
  2938.      bool setNetCode(const string &NetCodeSetting) 
  2939.  
  2940.      Set the internet code for this country 
  2941.      bool erase() 
  2942.  
  2943.      Sets all the data members to empty 
  2944.  
  2945.   Get data members 
  2946.      bool getAll(mapString &FieldValues) 
  2947.  
  2948.      Return a mapString of all the data members of this topic. The key is the 
  2949.      variable name.  LCP: CountryAttribs 
  2950.      string getDesc() 
  2951.  
  2952.      Get the short description 
  2953.      string getDescLong() 
  2954.  
  2955.      Get the long description 
  2956.      string getDescNative() 
  2957.  
  2958.      Get the native language description 
  2959.      string getNetCode() 
  2960.  
  2961.      Get the internet code for this country 
  2962.  
  2963.  
  2964. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  2965.  
  2966.  
  2967. lyris_Country Class 
  2968.  
  2969.      class lyris_Country 
  2970.  
  2971.      For determining what countries exist, and what languages are spoken & 
  2972.      preferred in each country 
  2973.  
  2974.      Defined in: COUNTRY.H 
  2975.  
  2976.   Create a new country 
  2977.  
  2978.       bool createNew() 
  2979.  
  2980.      Creates a new country/language table row.  LCP: CountryCreate 
  2981.      bool updateDatabase() 
  2982.  
  2983.      Save the current country with the data members that have changed.  LCP: 
  2984.      CountryUpdate 
  2985.      bool VerifyFields() 
  2986.  
  2987.      Verify that all required fields are filled in. 
  2988.  
  2989.   Retrieve data from the database 
  2990.      bool fetchAllCountries(vecString &AllCountries) 
  2991.  
  2992.      Fetch a list of all countries.  LCP: CountryAll 
  2993.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  2994.  
  2995.      Fetch a paired list of countries and their native language descriptions, 
  2996.      sorted by english description.  LCP: CountryEngNat 
  2997.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  2998.  
  2999.      Fetch a paired list of native language country descriptions, and the 
  3000.      english name of the country. 
  3001.      bool retrieveFromNetCode() 
  3002.  
  3003.      Determine the country that uses the currently set NetCode.  Fills all the 
  3004.      other country attributes with values. LCP: CountryAttNetCode 
  3005.      bool retrieveFromDesc() 
  3006.  
  3007.      Determine the country that uses the currently set description.  Fills all 
  3008.      the other country attributes with values.  LCP: CountryAttribs 
  3009.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3010.  
  3011.      Determine the primary language of the current country.  "Desc" must be 
  3012.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3013.      CountryPrimLang 
  3014.      bool getAllLanguages(vecString &Languages) 
  3015.  
  3016.      Determine all the languages used by the current country.  "Desc" must be 
  3017.      already set.  The result is returned in priority order (highest priority 
  3018.      first) in vecString &Languages.  LCP: CountryLanguages 
  3019.      bool getLanguageList(vecString &Languages) 
  3020.  
  3021.      Get a list of all possible languages, in alphabetical order, returned in 
  3022.      vecString &Languages.  LCP: CountryLangList 
  3023.      bool getLanguageListEngNat(mapString &Languages) 
  3024.  
  3025.      Get a map of all possible languages, their native description in 
  3026.      alphabetical order by english description, returned in in vecString 
  3027.      &Languages.  LCP: CountryLangListEngNat 
  3028.  
  3029.   Delete a country 
  3030.      bool deleteFromDesc() 
  3031.  
  3032.      Delete the country that uses the currently set description.  LCP: 
  3033.      CountryDelete 
  3034.  
  3035.   Set data members 
  3036.      bool setAll(mapString &FieldValues) 
  3037.  
  3038.      Sets all the data members of a topic using the mapString which is passed 
  3039.      to it.  Only the fields present in the mapString are updated, the other 
  3040.      fields are untouched.  LCP: CountryUpdate 
  3041.      bool setDesc(const string &DescSetting) 
  3042.  
  3043.      Set the short description 
  3044.      bool setDescLong(const string &DescLongSetting) 
  3045.  
  3046.      Set the long description 
  3047.      bool setDescNative(const string &DescNativeSetting) 
  3048.  
  3049.      Set the native language description 
  3050.      bool setNetCode(const string &NetCodeSetting) 
  3051.  
  3052.      Set the internet code for this country 
  3053.      bool erase() 
  3054.  
  3055.      Sets all the data members to empty 
  3056.  
  3057.   Get data members 
  3058.      bool getAll(mapString &FieldValues) 
  3059.  
  3060.      Return a mapString of all the data members of this topic. The key is the 
  3061.      variable name.  LCP: CountryAttribs 
  3062.      string getDesc() 
  3063.  
  3064.      Get the short description 
  3065.      string getDescLong() 
  3066.  
  3067.      Get the long description 
  3068.      string getDescNative() 
  3069.  
  3070.      Get the native language description 
  3071.      string getNetCode() 
  3072.  
  3073.      Get the internet code for this country 
  3074.  
  3075.  
  3076. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3077.  
  3078.  
  3079. lyris_Country Class 
  3080.  
  3081.      class lyris_Country 
  3082.  
  3083.      For determining what countries exist, and what languages are spoken & 
  3084.      preferred in each country 
  3085.  
  3086.      Defined in: COUNTRY.H 
  3087.  
  3088.   Create a new country 
  3089.  
  3090.       bool createNew() 
  3091.  
  3092.      Creates a new country/language table row.  LCP: CountryCreate 
  3093.      bool updateDatabase() 
  3094.  
  3095.      Save the current country with the data members that have changed.  LCP: 
  3096.      CountryUpdate 
  3097.      bool VerifyFields() 
  3098.  
  3099.      Verify that all required fields are filled in. 
  3100.  
  3101.   Retrieve data from the database 
  3102.      bool fetchAllCountries(vecString &AllCountries) 
  3103.  
  3104.      Fetch a list of all countries.  LCP: CountryAll 
  3105.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3106.  
  3107.      Fetch a paired list of countries and their native language descriptions, 
  3108.      sorted by english description.  LCP: CountryEngNat 
  3109.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3110.  
  3111.      Fetch a paired list of native language country descriptions, and the 
  3112.      english name of the country. 
  3113.      bool retrieveFromNetCode() 
  3114.  
  3115.      Determine the country that uses the currently set NetCode.  Fills all the 
  3116.      other country attributes with values. LCP: CountryAttNetCode 
  3117.      bool retrieveFromDesc() 
  3118.  
  3119.      Determine the country that uses the currently set description.  Fills all 
  3120.      the other country attributes with values.  LCP: CountryAttribs 
  3121.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3122.  
  3123.      Determine the primary language of the current country.  "Desc" must be 
  3124.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3125.      CountryPrimLang 
  3126.      bool getAllLanguages(vecString &Languages) 
  3127.  
  3128.      Determine all the languages used by the current country.  "Desc" must be 
  3129.      already set.  The result is returned in priority order (highest priority 
  3130.      first) in vecString &Languages.  LCP: CountryLanguages 
  3131.      bool getLanguageList(vecString &Languages) 
  3132.  
  3133.      Get a list of all possible languages, in alphabetical order, returned in 
  3134.      vecString &Languages.  LCP: CountryLangList 
  3135.      bool getLanguageListEngNat(mapString &Languages) 
  3136.  
  3137.      Get a map of all possible languages, their native description in 
  3138.      alphabetical order by english description, returned in in vecString 
  3139.      &Languages.  LCP: CountryLangListEngNat 
  3140.  
  3141.   Delete a country 
  3142.      bool deleteFromDesc() 
  3143.  
  3144.      Delete the country that uses the currently set description.  LCP: 
  3145.      CountryDelete 
  3146.  
  3147.   Set data members 
  3148.      bool setAll(mapString &FieldValues) 
  3149.  
  3150.      Sets all the data members of a topic using the mapString which is passed 
  3151.      to it.  Only the fields present in the mapString are updated, the other 
  3152.      fields are untouched.  LCP: CountryUpdate 
  3153.      bool setDesc(const string &DescSetting) 
  3154.  
  3155.      Set the short description 
  3156.      bool setDescLong(const string &DescLongSetting) 
  3157.  
  3158.      Set the long description 
  3159.      bool setDescNative(const string &DescNativeSetting) 
  3160.  
  3161.      Set the native language description 
  3162.      bool setNetCode(const string &NetCodeSetting) 
  3163.  
  3164.      Set the internet code for this country 
  3165.      bool erase() 
  3166.  
  3167.      Sets all the data members to empty 
  3168.  
  3169.   Get data members 
  3170.      bool getAll(mapString &FieldValues) 
  3171.  
  3172.      Return a mapString of all the data members of this topic. The key is the 
  3173.      variable name.  LCP: CountryAttribs 
  3174.      string getDesc() 
  3175.  
  3176.      Get the short description 
  3177.      string getDescLong() 
  3178.  
  3179.      Get the long description 
  3180.      string getDescNative() 
  3181.  
  3182.      Get the native language description 
  3183.      string getNetCode() 
  3184.  
  3185.      Get the internet code for this country 
  3186.  
  3187.  
  3188. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3189.  
  3190.  
  3191. lyris_Country Class 
  3192.  
  3193.      class lyris_Country 
  3194.  
  3195.      For determining what countries exist, and what languages are spoken & 
  3196.      preferred in each country 
  3197.  
  3198.      Defined in: COUNTRY.H 
  3199.  
  3200.   Create a new country 
  3201.  
  3202.       bool createNew() 
  3203.  
  3204.      Creates a new country/language table row.  LCP: CountryCreate 
  3205.      bool updateDatabase() 
  3206.  
  3207.      Save the current country with the data members that have changed.  LCP: 
  3208.      CountryUpdate 
  3209.      bool VerifyFields() 
  3210.  
  3211.      Verify that all required fields are filled in. 
  3212.  
  3213.   Retrieve data from the database 
  3214.      bool fetchAllCountries(vecString &AllCountries) 
  3215.  
  3216.      Fetch a list of all countries.  LCP: CountryAll 
  3217.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3218.  
  3219.      Fetch a paired list of countries and their native language descriptions, 
  3220.      sorted by english description.  LCP: CountryEngNat 
  3221.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3222.  
  3223.      Fetch a paired list of native language country descriptions, and the 
  3224.      english name of the country. 
  3225.      bool retrieveFromNetCode() 
  3226.  
  3227.      Determine the country that uses the currently set NetCode.  Fills all the 
  3228.      other country attributes with values. LCP: CountryAttNetCode 
  3229.      bool retrieveFromDesc() 
  3230.  
  3231.      Determine the country that uses the currently set description.  Fills all 
  3232.      the other country attributes with values.  LCP: CountryAttribs 
  3233.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3234.  
  3235.      Determine the primary language of the current country.  "Desc" must be 
  3236.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3237.      CountryPrimLang 
  3238.      bool getAllLanguages(vecString &Languages) 
  3239.  
  3240.      Determine all the languages used by the current country.  "Desc" must be 
  3241.      already set.  The result is returned in priority order (highest priority 
  3242.      first) in vecString &Languages.  LCP: CountryLanguages 
  3243.      bool getLanguageList(vecString &Languages) 
  3244.  
  3245.      Get a list of all possible languages, in alphabetical order, returned in 
  3246.      vecString &Languages.  LCP: CountryLangList 
  3247.      bool getLanguageListEngNat(mapString &Languages) 
  3248.  
  3249.      Get a map of all possible languages, their native description in 
  3250.      alphabetical order by english description, returned in in vecString 
  3251.      &Languages.  LCP: CountryLangListEngNat 
  3252.  
  3253.   Delete a country 
  3254.      bool deleteFromDesc() 
  3255.  
  3256.      Delete the country that uses the currently set description.  LCP: 
  3257.      CountryDelete 
  3258.  
  3259.   Set data members 
  3260.      bool setAll(mapString &FieldValues) 
  3261.  
  3262.      Sets all the data members of a topic using the mapString which is passed 
  3263.      to it.  Only the fields present in the mapString are updated, the other 
  3264.      fields are untouched.  LCP: CountryUpdate 
  3265.      bool setDesc(const string &DescSetting) 
  3266.  
  3267.      Set the short description 
  3268.      bool setDescLong(const string &DescLongSetting) 
  3269.  
  3270.      Set the long description 
  3271.      bool setDescNative(const string &DescNativeSetting) 
  3272.  
  3273.      Set the native language description 
  3274.      bool setNetCode(const string &NetCodeSetting) 
  3275.  
  3276.      Set the internet code for this country 
  3277.      bool erase() 
  3278.  
  3279.      Sets all the data members to empty 
  3280.  
  3281.   Get data members 
  3282.      bool getAll(mapString &FieldValues) 
  3283.  
  3284.      Return a mapString of all the data members of this topic. The key is the 
  3285.      variable name.  LCP: CountryAttribs 
  3286.      string getDesc() 
  3287.  
  3288.      Get the short description 
  3289.      string getDescLong() 
  3290.  
  3291.      Get the long description 
  3292.      string getDescNative() 
  3293.  
  3294.      Get the native language description 
  3295.      string getNetCode() 
  3296.  
  3297.      Get the internet code for this country 
  3298.  
  3299.  
  3300. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3301.  
  3302.  
  3303. lyris_Country Class 
  3304.  
  3305.      class lyris_Country 
  3306.  
  3307.      For determining what countries exist, and what languages are spoken & 
  3308.      preferred in each country 
  3309.  
  3310.      Defined in: COUNTRY.H 
  3311.  
  3312.   Create a new country 
  3313.  
  3314.       bool createNew() 
  3315.  
  3316.      Creates a new country/language table row.  LCP: CountryCreate 
  3317.      bool updateDatabase() 
  3318.  
  3319.      Save the current country with the data members that have changed.  LCP: 
  3320.      CountryUpdate 
  3321.      bool VerifyFields() 
  3322.  
  3323.      Verify that all required fields are filled in. 
  3324.  
  3325.   Retrieve data from the database 
  3326.      bool fetchAllCountries(vecString &AllCountries) 
  3327.  
  3328.      Fetch a list of all countries.  LCP: CountryAll 
  3329.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3330.  
  3331.      Fetch a paired list of countries and their native language descriptions, 
  3332.      sorted by english description.  LCP: CountryEngNat 
  3333.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3334.  
  3335.      Fetch a paired list of native language country descriptions, and the 
  3336.      english name of the country. 
  3337.      bool retrieveFromNetCode() 
  3338.  
  3339.      Determine the country that uses the currently set NetCode.  Fills all the 
  3340.      other country attributes with values. LCP: CountryAttNetCode 
  3341.      bool retrieveFromDesc() 
  3342.  
  3343.      Determine the country that uses the currently set description.  Fills all 
  3344.      the other country attributes with values.  LCP: CountryAttribs 
  3345.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3346.  
  3347.      Determine the primary language of the current country.  "Desc" must be 
  3348.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3349.      CountryPrimLang 
  3350.      bool getAllLanguages(vecString &Languages) 
  3351.  
  3352.      Determine all the languages used by the current country.  "Desc" must be 
  3353.      already set.  The result is returned in priority order (highest priority 
  3354.      first) in vecString &Languages.  LCP: CountryLanguages 
  3355.      bool getLanguageList(vecString &Languages) 
  3356.  
  3357.      Get a list of all possible languages, in alphabetical order, returned in 
  3358.      vecString &Languages.  LCP: CountryLangList 
  3359.      bool getLanguageListEngNat(mapString &Languages) 
  3360.  
  3361.      Get a map of all possible languages, their native description in 
  3362.      alphabetical order by english description, returned in in vecString 
  3363.      &Languages.  LCP: CountryLangListEngNat 
  3364.  
  3365.   Delete a country 
  3366.      bool deleteFromDesc() 
  3367.  
  3368.      Delete the country that uses the currently set description.  LCP: 
  3369.      CountryDelete 
  3370.  
  3371.   Set data members 
  3372.      bool setAll(mapString &FieldValues) 
  3373.  
  3374.      Sets all the data members of a topic using the mapString which is passed 
  3375.      to it.  Only the fields present in the mapString are updated, the other 
  3376.      fields are untouched.  LCP: CountryUpdate 
  3377.      bool setDesc(const string &DescSetting) 
  3378.  
  3379.      Set the short description 
  3380.      bool setDescLong(const string &DescLongSetting) 
  3381.  
  3382.      Set the long description 
  3383.      bool setDescNative(const string &DescNativeSetting) 
  3384.  
  3385.      Set the native language description 
  3386.      bool setNetCode(const string &NetCodeSetting) 
  3387.  
  3388.      Set the internet code for this country 
  3389.      bool erase() 
  3390.  
  3391.      Sets all the data members to empty 
  3392.  
  3393.   Get data members 
  3394.      bool getAll(mapString &FieldValues) 
  3395.  
  3396.      Return a mapString of all the data members of this topic. The key is the 
  3397.      variable name.  LCP: CountryAttribs 
  3398.      string getDesc() 
  3399.  
  3400.      Get the short description 
  3401.      string getDescLong() 
  3402.  
  3403.      Get the long description 
  3404.      string getDescNative() 
  3405.  
  3406.      Get the native language description 
  3407.      string getNetCode() 
  3408.  
  3409.      Get the internet code for this country 
  3410.  
  3411.  
  3412. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3413.  
  3414.  
  3415. lyris_Country Class 
  3416.  
  3417.      class lyris_Country 
  3418.  
  3419.      For determining what countries exist, and what languages are spoken & 
  3420.      preferred in each country 
  3421.  
  3422.      Defined in: COUNTRY.H 
  3423.  
  3424.   Create a new country 
  3425.  
  3426.       bool createNew() 
  3427.  
  3428.      Creates a new country/language table row.  LCP: CountryCreate 
  3429.      bool updateDatabase() 
  3430.  
  3431.      Save the current country with the data members that have changed.  LCP: 
  3432.      CountryUpdate 
  3433.      bool VerifyFields() 
  3434.  
  3435.      Verify that all required fields are filled in. 
  3436.  
  3437.   Retrieve data from the database 
  3438.      bool fetchAllCountries(vecString &AllCountries) 
  3439.  
  3440.      Fetch a list of all countries.  LCP: CountryAll 
  3441.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3442.  
  3443.      Fetch a paired list of countries and their native language descriptions, 
  3444.      sorted by english description.  LCP: CountryEngNat 
  3445.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3446.  
  3447.      Fetch a paired list of native language country descriptions, and the 
  3448.      english name of the country. 
  3449.      bool retrieveFromNetCode() 
  3450.  
  3451.      Determine the country that uses the currently set NetCode.  Fills all the 
  3452.      other country attributes with values. LCP: CountryAttNetCode 
  3453.      bool retrieveFromDesc() 
  3454.  
  3455.      Determine the country that uses the currently set description.  Fills all 
  3456.      the other country attributes with values.  LCP: CountryAttribs 
  3457.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3458.  
  3459.      Determine the primary language of the current country.  "Desc" must be 
  3460.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3461.      CountryPrimLang 
  3462.      bool getAllLanguages(vecString &Languages) 
  3463.  
  3464.      Determine all the languages used by the current country.  "Desc" must be 
  3465.      already set.  The result is returned in priority order (highest priority 
  3466.      first) in vecString &Languages.  LCP: CountryLanguages 
  3467.      bool getLanguageList(vecString &Languages) 
  3468.  
  3469.      Get a list of all possible languages, in alphabetical order, returned in 
  3470.      vecString &Languages.  LCP: CountryLangList 
  3471.      bool getLanguageListEngNat(mapString &Languages) 
  3472.  
  3473.      Get a map of all possible languages, their native description in 
  3474.      alphabetical order by english description, returned in in vecString 
  3475.      &Languages.  LCP: CountryLangListEngNat 
  3476.  
  3477.   Delete a country 
  3478.      bool deleteFromDesc() 
  3479.  
  3480.      Delete the country that uses the currently set description.  LCP: 
  3481.      CountryDelete 
  3482.  
  3483.   Set data members 
  3484.      bool setAll(mapString &FieldValues) 
  3485.  
  3486.      Sets all the data members of a topic using the mapString which is passed 
  3487.      to it.  Only the fields present in the mapString are updated, the other 
  3488.      fields are untouched.  LCP: CountryUpdate 
  3489.      bool setDesc(const string &DescSetting) 
  3490.  
  3491.      Set the short description 
  3492.      bool setDescLong(const string &DescLongSetting) 
  3493.  
  3494.      Set the long description 
  3495.      bool setDescNative(const string &DescNativeSetting) 
  3496.  
  3497.      Set the native language description 
  3498.      bool setNetCode(const string &NetCodeSetting) 
  3499.  
  3500.      Set the internet code for this country 
  3501.      bool erase() 
  3502.  
  3503.      Sets all the data members to empty 
  3504.  
  3505.   Get data members 
  3506.      bool getAll(mapString &FieldValues) 
  3507.  
  3508.      Return a mapString of all the data members of this topic. The key is the 
  3509.      variable name.  LCP: CountryAttribs 
  3510.      string getDesc() 
  3511.  
  3512.      Get the short description 
  3513.      string getDescLong() 
  3514.  
  3515.      Get the long description 
  3516.      string getDescNative() 
  3517.  
  3518.      Get the native language description 
  3519.      string getNetCode() 
  3520.  
  3521.      Get the internet code for this country 
  3522.  
  3523.  
  3524. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3525.  
  3526.  
  3527. lyris_Country Class 
  3528.  
  3529.      class lyris_Country 
  3530.  
  3531.      For determining what countries exist, and what languages are spoken & 
  3532.      preferred in each country 
  3533.  
  3534.      Defined in: COUNTRY.H 
  3535.  
  3536.   Create a new country 
  3537.  
  3538.       bool createNew() 
  3539.  
  3540.      Creates a new country/language table row.  LCP: CountryCreate 
  3541.      bool updateDatabase() 
  3542.  
  3543.      Save the current country with the data members that have changed.  LCP: 
  3544.      CountryUpdate 
  3545.      bool VerifyFields() 
  3546.  
  3547.      Verify that all required fields are filled in. 
  3548.  
  3549.   Retrieve data from the database 
  3550.      bool fetchAllCountries(vecString &AllCountries) 
  3551.  
  3552.      Fetch a list of all countries.  LCP: CountryAll 
  3553.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3554.  
  3555.      Fetch a paired list of countries and their native language descriptions, 
  3556.      sorted by english description.  LCP: CountryEngNat 
  3557.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3558.  
  3559.      Fetch a paired list of native language country descriptions, and the 
  3560.      english name of the country. 
  3561.      bool retrieveFromNetCode() 
  3562.  
  3563.      Determine the country that uses the currently set NetCode.  Fills all the 
  3564.      other country attributes with values. LCP: CountryAttNetCode 
  3565.      bool retrieveFromDesc() 
  3566.  
  3567.      Determine the country that uses the currently set description.  Fills all 
  3568.      the other country attributes with values.  LCP: CountryAttribs 
  3569.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3570.  
  3571.      Determine the primary language of the current country.  "Desc" must be 
  3572.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3573.      CountryPrimLang 
  3574.      bool getAllLanguages(vecString &Languages) 
  3575.  
  3576.      Determine all the languages used by the current country.  "Desc" must be 
  3577.      already set.  The result is returned in priority order (highest priority 
  3578.      first) in vecString &Languages.  LCP: CountryLanguages 
  3579.      bool getLanguageList(vecString &Languages) 
  3580.  
  3581.      Get a list of all possible languages, in alphabetical order, returned in 
  3582.      vecString &Languages.  LCP: CountryLangList 
  3583.      bool getLanguageListEngNat(mapString &Languages) 
  3584.  
  3585.      Get a map of all possible languages, their native description in 
  3586.      alphabetical order by english description, returned in in vecString 
  3587.      &Languages.  LCP: CountryLangListEngNat 
  3588.  
  3589.   Delete a country 
  3590.      bool deleteFromDesc() 
  3591.  
  3592.      Delete the country that uses the currently set description.  LCP: 
  3593.      CountryDelete 
  3594.  
  3595.   Set data members 
  3596.      bool setAll(mapString &FieldValues) 
  3597.  
  3598.      Sets all the data members of a topic using the mapString which is passed 
  3599.      to it.  Only the fields present in the mapString are updated, the other 
  3600.      fields are untouched.  LCP: CountryUpdate 
  3601.      bool setDesc(const string &DescSetting) 
  3602.  
  3603.      Set the short description 
  3604.      bool setDescLong(const string &DescLongSetting) 
  3605.  
  3606.      Set the long description 
  3607.      bool setDescNative(const string &DescNativeSetting) 
  3608.  
  3609.      Set the native language description 
  3610.      bool setNetCode(const string &NetCodeSetting) 
  3611.  
  3612.      Set the internet code for this country 
  3613.      bool erase() 
  3614.  
  3615.      Sets all the data members to empty 
  3616.  
  3617.   Get data members 
  3618.      bool getAll(mapString &FieldValues) 
  3619.  
  3620.      Return a mapString of all the data members of this topic. The key is the 
  3621.      variable name.  LCP: CountryAttribs 
  3622.      string getDesc() 
  3623.  
  3624.      Get the short description 
  3625.      string getDescLong() 
  3626.  
  3627.      Get the long description 
  3628.      string getDescNative() 
  3629.  
  3630.      Get the native language description 
  3631.      string getNetCode() 
  3632.  
  3633.      Get the internet code for this country 
  3634.  
  3635.  
  3636. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3637.  
  3638.  
  3639. lyris_Country Class 
  3640.  
  3641.      class lyris_Country 
  3642.  
  3643.      For determining what countries exist, and what languages are spoken & 
  3644.      preferred in each country 
  3645.  
  3646.      Defined in: COUNTRY.H 
  3647.  
  3648.   Create a new country 
  3649.  
  3650.       bool createNew() 
  3651.  
  3652.      Creates a new country/language table row.  LCP: CountryCreate 
  3653.      bool updateDatabase() 
  3654.  
  3655.      Save the current country with the data members that have changed.  LCP: 
  3656.      CountryUpdate 
  3657.      bool VerifyFields() 
  3658.  
  3659.      Verify that all required fields are filled in. 
  3660.  
  3661.   Retrieve data from the database 
  3662.      bool fetchAllCountries(vecString &AllCountries) 
  3663.  
  3664.      Fetch a list of all countries.  LCP: CountryAll 
  3665.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3666.  
  3667.      Fetch a paired list of countries and their native language descriptions, 
  3668.      sorted by english description.  LCP: CountryEngNat 
  3669.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3670.  
  3671.      Fetch a paired list of native language country descriptions, and the 
  3672.      english name of the country. 
  3673.      bool retrieveFromNetCode() 
  3674.  
  3675.      Determine the country that uses the currently set NetCode.  Fills all the 
  3676.      other country attributes with values. LCP: CountryAttNetCode 
  3677.      bool retrieveFromDesc() 
  3678.  
  3679.      Determine the country that uses the currently set description.  Fills all 
  3680.      the other country attributes with values.  LCP: CountryAttribs 
  3681.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3682.  
  3683.      Determine the primary language of the current country.  "Desc" must be 
  3684.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3685.      CountryPrimLang 
  3686.      bool getAllLanguages(vecString &Languages) 
  3687.  
  3688.      Determine all the languages used by the current country.  "Desc" must be 
  3689.      already set.  The result is returned in priority order (highest priority 
  3690.      first) in vecString &Languages.  LCP: CountryLanguages 
  3691.      bool getLanguageList(vecString &Languages) 
  3692.  
  3693.      Get a list of all possible languages, in alphabetical order, returned in 
  3694.      vecString &Languages.  LCP: CountryLangList 
  3695.      bool getLanguageListEngNat(mapString &Languages) 
  3696.  
  3697.      Get a map of all possible languages, their native description in 
  3698.      alphabetical order by english description, returned in in vecString 
  3699.      &Languages.  LCP: CountryLangListEngNat 
  3700.  
  3701.   Delete a country 
  3702.      bool deleteFromDesc() 
  3703.  
  3704.      Delete the country that uses the currently set description.  LCP: 
  3705.      CountryDelete 
  3706.  
  3707.   Set data members 
  3708.      bool setAll(mapString &FieldValues) 
  3709.  
  3710.      Sets all the data members of a topic using the mapString which is passed 
  3711.      to it.  Only the fields present in the mapString are updated, the other 
  3712.      fields are untouched.  LCP: CountryUpdate 
  3713.      bool setDesc(const string &DescSetting) 
  3714.  
  3715.      Set the short description 
  3716.      bool setDescLong(const string &DescLongSetting) 
  3717.  
  3718.      Set the long description 
  3719.      bool setDescNative(const string &DescNativeSetting) 
  3720.  
  3721.      Set the native language description 
  3722.      bool setNetCode(const string &NetCodeSetting) 
  3723.  
  3724.      Set the internet code for this country 
  3725.      bool erase() 
  3726.  
  3727.      Sets all the data members to empty 
  3728.  
  3729.   Get data members 
  3730.      bool getAll(mapString &FieldValues) 
  3731.  
  3732.      Return a mapString of all the data members of this topic. The key is the 
  3733.      variable name.  LCP: CountryAttribs 
  3734.      string getDesc() 
  3735.  
  3736.      Get the short description 
  3737.      string getDescLong() 
  3738.  
  3739.      Get the long description 
  3740.      string getDescNative() 
  3741.  
  3742.      Get the native language description 
  3743.      string getNetCode() 
  3744.  
  3745.      Get the internet code for this country 
  3746.  
  3747.  
  3748. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  3749.  
  3750.  
  3751. lyris_Country Class 
  3752.  
  3753.      class lyris_Country 
  3754.  
  3755.      For determining what countries exist, and what languages are spoken & 
  3756.      preferred in each country 
  3757.  
  3758.      Defined in: COUNTRY.H 
  3759.  
  3760.   Create a new country 
  3761.  
  3762.       bool createNew() 
  3763.  
  3764.      Creates a new country/language table row.  LCP: CountryCreate 
  3765.      bool updateDatabase() 
  3766.  
  3767.      Save the current country with the data members that have changed.  LCP: 
  3768.      CountryUpdate 
  3769.      bool VerifyFields() 
  3770.  
  3771.      Verify that all required fields are filled in. 
  3772.  
  3773.   Retrieve data from the database 
  3774.      bool fetchAllCountries(vecString &AllCountries) 
  3775.  
  3776.      Fetch a list of all countries.  LCP: CountryAll 
  3777.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3778.  
  3779.      Fetch a paired list of countries and their native language descriptions, 
  3780.      sorted by english description.  LCP: CountryEngNat 
  3781.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3782.  
  3783.      Fetch a paired list of native language country descriptions, and the 
  3784.      english name of the country. 
  3785.      bool retrieveFromNetCode() 
  3786.  
  3787.      Determine the country that uses the currently set NetCode.  Fills all the 
  3788.      other country attributes with values. LCP: CountryAttNetCode 
  3789.      bool retrieveFromDesc() 
  3790.  
  3791.      Determine the country that uses the currently set description.  Fills all 
  3792.      the other country attributes with values.  LCP: CountryAttribs 
  3793.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3794.  
  3795.      Determine the primary language of the current country.  "Desc" must be 
  3796.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3797.      CountryPrimLang 
  3798.      bool getAllLanguages(vecString &Languages) 
  3799.  
  3800.      Determine all the languages used by the current country.  "Desc" must be 
  3801.      already set.  The result is returned in priority order (highest priority 
  3802.      first) in vecString &Languages.  LCP: CountryLanguages 
  3803.      bool getLanguageList(vecString &Languages) 
  3804.  
  3805.      Get a list of all possible languages, in alphabetical order, returned in 
  3806.      vecString &Languages.  LCP: CountryLangList 
  3807.      bool getLanguageListEngNat(mapString &Languages) 
  3808.  
  3809.      Get a map of all possible languages, their native description in 
  3810.      alphabetical order by english description, returned in in vecString 
  3811.      &Languages.  LCP: CountryLangListEngNat 
  3812.  
  3813.   Delete a country 
  3814.      bool deleteFromDesc() 
  3815.  
  3816.      Delete the country that uses the currently set description.  LCP: 
  3817.      CountryDelete 
  3818.  
  3819.   Set data members 
  3820.      bool setAll(mapString &FieldValues) 
  3821.  
  3822.      Sets all the data members of a topic using the mapString which is passed 
  3823.      to it.  Only the fields present in the mapString are updated, the other 
  3824.      fields are untouched.  LCP: CountryUpdate 
  3825.      bool setDesc(const string &DescSetting) 
  3826.  
  3827.      Set the short description 
  3828.      bool setDescLong(const string &DescLongSetting) 
  3829.  
  3830.      Set the long description 
  3831.      bool setDescNative(const string &DescNativeSetting) 
  3832.  
  3833.      Set the native language description 
  3834.      bool setNetCode(const string &NetCodeSetting) 
  3835.  
  3836.      Set the internet code for this country 
  3837.      bool erase() 
  3838.  
  3839.      Sets all the data members to empty 
  3840.  
  3841.   Get data members 
  3842.      bool getAll(mapString &FieldValues) 
  3843.  
  3844.      Return a mapString of all the data members of this topic. The key is the 
  3845.      variable name.  LCP: CountryAttribs 
  3846.      string getDesc() 
  3847.  
  3848.      Get the short description 
  3849.      string getDescLong() 
  3850.  
  3851.      Get the long description 
  3852.      string getDescNative() 
  3853.  
  3854.      Get the native language description 
  3855.      string getNetCode() 
  3856.  
  3857.      Get the internet code for this country 
  3858.  
  3859.  
  3860. ΓòÉΓòÉΓòÉ <hidden>   ΓòÉΓòÉΓòÉ
  3861.  
  3862.  
  3863. lyris_Country Class 
  3864.  
  3865.      class lyris_Country 
  3866.  
  3867.      For determining what countries exist, and what languages are spoken & 
  3868.      preferred in each country 
  3869.  
  3870.      Defined in: COUNTRY.H 
  3871.  
  3872.   Create a new country 
  3873.  
  3874.       bool createNew() 
  3875.  
  3876.      Creates a new country/language table row.  LCP: CountryCreate 
  3877.      bool updateDatabase() 
  3878.  
  3879.      Save the current country with the data members that have changed.  LCP: 
  3880.      CountryUpdate 
  3881.      bool VerifyFields() 
  3882.  
  3883.      Verify that all required fields are filled in. 
  3884.  
  3885.   Retrieve data from the database 
  3886.      bool fetchAllCountries(vecString &AllCountries) 
  3887.  
  3888.      Fetch a list of all countries.  LCP: CountryAll 
  3889.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  3890.  
  3891.      Fetch a paired list of countries and their native language descriptions, 
  3892.      sorted by english description.  LCP: CountryEngNat 
  3893.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  3894.  
  3895.      Fetch a paired list of native language country descriptions, and the 
  3896.      english name of the country. 
  3897.      bool retrieveFromNetCode() 
  3898.  
  3899.      Determine the country that uses the currently set NetCode.  Fills all the 
  3900.      other country attributes with values. LCP: CountryAttNetCode 
  3901.      bool retrieveFromDesc() 
  3902.  
  3903.      Determine the country that uses the currently set description.  Fills all 
  3904.      the other country attributes with values.  LCP: CountryAttribs 
  3905.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  3906.  
  3907.      Determine the primary language of the current country.  "Desc" must be 
  3908.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  3909.      CountryPrimLang 
  3910.      bool getAllLanguages(vecString &Languages) 
  3911.  
  3912.      Determine all the languages used by the current country.  "Desc" must be 
  3913.      already set.  The result is returned in priority order (highest priority 
  3914.      first) in vecString &Languages.  LCP: CountryLanguages 
  3915.      bool getLanguageList(vecString &Languages) 
  3916.  
  3917.      Get a list of all possible languages, in alphabetical order, returned in 
  3918.      vecString &Languages.  LCP: CountryLangList 
  3919.      bool getLanguageListEngNat(mapString &Languages) 
  3920.  
  3921.      Get a map of all possible languages, their native description in 
  3922.      alphabetical order by english description, returned in in vecString 
  3923.      &Languages.  LCP: CountryLangListEngNat 
  3924.  
  3925.   Delete a country 
  3926.      bool deleteFromDesc() 
  3927.  
  3928.      Delete the country that uses the currently set description.  LCP: 
  3929.      CountryDelete 
  3930.  
  3931.   Set data members 
  3932.      bool setAll(mapString &FieldValues) 
  3933.  
  3934.      Sets all the data members of a topic using the mapString which is passed 
  3935.      to it.  Only the fields present in the mapString are updated, the other 
  3936.      fields are untouched.  LCP: CountryUpdate 
  3937.      bool setDesc(const string &DescSetting) 
  3938.  
  3939.      Set the short description 
  3940.      bool setDescLong(const string &DescLongSetting) 
  3941.  
  3942.      Set the long description 
  3943.      bool setDescNative(const string &DescNativeSetting) 
  3944.  
  3945.      Set the native language description 
  3946.      bool setNetCode(const string &NetCodeSetting) 
  3947.  
  3948.      Set the internet code for this country 
  3949.      bool erase() 
  3950.  
  3951.      Sets all the data members to empty 
  3952.  
  3953.   Get data members 
  3954.      bool getAll(mapString &FieldValues) 
  3955.  
  3956.      Return a mapString of all the data members of this topic. The key is the 
  3957.      variable name.  LCP: CountryAttribs 
  3958.      string getDesc() 
  3959.  
  3960.      Get the short description 
  3961.      string getDescLong() 
  3962.  
  3963.      Get the long description 
  3964.      string getDescNative() 
  3965.  
  3966.      Get the native language description 
  3967.      string getNetCode() 
  3968.  
  3969.      Get the internet code for this country 
  3970.  
  3971.  
  3972. ΓòÉΓòÉΓòÉ <hidden> ! ΓòÉΓòÉΓòÉ
  3973.  
  3974.  
  3975. lyris_Country Class 
  3976.  
  3977.      class lyris_Country 
  3978.  
  3979.      For determining what countries exist, and what languages are spoken & 
  3980.      preferred in each country 
  3981.  
  3982.      Defined in: COUNTRY.H 
  3983.  
  3984.   Create a new country 
  3985.  
  3986.       bool createNew() 
  3987.  
  3988.      Creates a new country/language table row.  LCP: CountryCreate 
  3989.      bool updateDatabase() 
  3990.  
  3991.      Save the current country with the data members that have changed.  LCP: 
  3992.      CountryUpdate 
  3993.      bool VerifyFields() 
  3994.  
  3995.      Verify that all required fields are filled in. 
  3996.  
  3997.   Retrieve data from the database 
  3998.      bool fetchAllCountries(vecString &AllCountries) 
  3999.  
  4000.      Fetch a list of all countries.  LCP: CountryAll 
  4001.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4002.  
  4003.      Fetch a paired list of countries and their native language descriptions, 
  4004.      sorted by english description.  LCP: CountryEngNat 
  4005.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4006.  
  4007.      Fetch a paired list of native language country descriptions, and the 
  4008.      english name of the country. 
  4009.      bool retrieveFromNetCode() 
  4010.  
  4011.      Determine the country that uses the currently set NetCode.  Fills all the 
  4012.      other country attributes with values. LCP: CountryAttNetCode 
  4013.      bool retrieveFromDesc() 
  4014.  
  4015.      Determine the country that uses the currently set description.  Fills all 
  4016.      the other country attributes with values.  LCP: CountryAttribs 
  4017.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4018.  
  4019.      Determine the primary language of the current country.  "Desc" must be 
  4020.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4021.      CountryPrimLang 
  4022.      bool getAllLanguages(vecString &Languages) 
  4023.  
  4024.      Determine all the languages used by the current country.  "Desc" must be 
  4025.      already set.  The result is returned in priority order (highest priority 
  4026.      first) in vecString &Languages.  LCP: CountryLanguages 
  4027.      bool getLanguageList(vecString &Languages) 
  4028.  
  4029.      Get a list of all possible languages, in alphabetical order, returned in 
  4030.      vecString &Languages.  LCP: CountryLangList 
  4031.      bool getLanguageListEngNat(mapString &Languages) 
  4032.  
  4033.      Get a map of all possible languages, their native description in 
  4034.      alphabetical order by english description, returned in in vecString 
  4035.      &Languages.  LCP: CountryLangListEngNat 
  4036.  
  4037.   Delete a country 
  4038.      bool deleteFromDesc() 
  4039.  
  4040.      Delete the country that uses the currently set description.  LCP: 
  4041.      CountryDelete 
  4042.  
  4043.   Set data members 
  4044.      bool setAll(mapString &FieldValues) 
  4045.  
  4046.      Sets all the data members of a topic using the mapString which is passed 
  4047.      to it.  Only the fields present in the mapString are updated, the other 
  4048.      fields are untouched.  LCP: CountryUpdate 
  4049.      bool setDesc(const string &DescSetting) 
  4050.  
  4051.      Set the short description 
  4052.      bool setDescLong(const string &DescLongSetting) 
  4053.  
  4054.      Set the long description 
  4055.      bool setDescNative(const string &DescNativeSetting) 
  4056.  
  4057.      Set the native language description 
  4058.      bool setNetCode(const string &NetCodeSetting) 
  4059.  
  4060.      Set the internet code for this country 
  4061.      bool erase() 
  4062.  
  4063.      Sets all the data members to empty 
  4064.  
  4065.   Get data members 
  4066.      bool getAll(mapString &FieldValues) 
  4067.  
  4068.      Return a mapString of all the data members of this topic. The key is the 
  4069.      variable name.  LCP: CountryAttribs 
  4070.      string getDesc() 
  4071.  
  4072.      Get the short description 
  4073.      string getDescLong() 
  4074.  
  4075.      Get the long description 
  4076.      string getDescNative() 
  4077.  
  4078.      Get the native language description 
  4079.      string getNetCode() 
  4080.  
  4081.      Get the internet code for this country 
  4082.  
  4083.  
  4084. ΓòÉΓòÉΓòÉ <hidden> " ΓòÉΓòÉΓòÉ
  4085.  
  4086.  
  4087. lyris_Country Class 
  4088.  
  4089.      class lyris_Country 
  4090.  
  4091.      For determining what countries exist, and what languages are spoken & 
  4092.      preferred in each country 
  4093.  
  4094.      Defined in: COUNTRY.H 
  4095.  
  4096.   Create a new country 
  4097.  
  4098.       bool createNew() 
  4099.  
  4100.      Creates a new country/language table row.  LCP: CountryCreate 
  4101.      bool updateDatabase() 
  4102.  
  4103.      Save the current country with the data members that have changed.  LCP: 
  4104.      CountryUpdate 
  4105.      bool VerifyFields() 
  4106.  
  4107.      Verify that all required fields are filled in. 
  4108.  
  4109.   Retrieve data from the database 
  4110.      bool fetchAllCountries(vecString &AllCountries) 
  4111.  
  4112.      Fetch a list of all countries.  LCP: CountryAll 
  4113.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4114.  
  4115.      Fetch a paired list of countries and their native language descriptions, 
  4116.      sorted by english description.  LCP: CountryEngNat 
  4117.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4118.  
  4119.      Fetch a paired list of native language country descriptions, and the 
  4120.      english name of the country. 
  4121.      bool retrieveFromNetCode() 
  4122.  
  4123.      Determine the country that uses the currently set NetCode.  Fills all the 
  4124.      other country attributes with values. LCP: CountryAttNetCode 
  4125.      bool retrieveFromDesc() 
  4126.  
  4127.      Determine the country that uses the currently set description.  Fills all 
  4128.      the other country attributes with values.  LCP: CountryAttribs 
  4129.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4130.  
  4131.      Determine the primary language of the current country.  "Desc" must be 
  4132.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4133.      CountryPrimLang 
  4134.      bool getAllLanguages(vecString &Languages) 
  4135.  
  4136.      Determine all the languages used by the current country.  "Desc" must be 
  4137.      already set.  The result is returned in priority order (highest priority 
  4138.      first) in vecString &Languages.  LCP: CountryLanguages 
  4139.      bool getLanguageList(vecString &Languages) 
  4140.  
  4141.      Get a list of all possible languages, in alphabetical order, returned in 
  4142.      vecString &Languages.  LCP: CountryLangList 
  4143.      bool getLanguageListEngNat(mapString &Languages) 
  4144.  
  4145.      Get a map of all possible languages, their native description in 
  4146.      alphabetical order by english description, returned in in vecString 
  4147.      &Languages.  LCP: CountryLangListEngNat 
  4148.  
  4149.   Delete a country 
  4150.      bool deleteFromDesc() 
  4151.  
  4152.      Delete the country that uses the currently set description.  LCP: 
  4153.      CountryDelete 
  4154.  
  4155.   Set data members 
  4156.      bool setAll(mapString &FieldValues) 
  4157.  
  4158.      Sets all the data members of a topic using the mapString which is passed 
  4159.      to it.  Only the fields present in the mapString are updated, the other 
  4160.      fields are untouched.  LCP: CountryUpdate 
  4161.      bool setDesc(const string &DescSetting) 
  4162.  
  4163.      Set the short description 
  4164.      bool setDescLong(const string &DescLongSetting) 
  4165.  
  4166.      Set the long description 
  4167.      bool setDescNative(const string &DescNativeSetting) 
  4168.  
  4169.      Set the native language description 
  4170.      bool setNetCode(const string &NetCodeSetting) 
  4171.  
  4172.      Set the internet code for this country 
  4173.      bool erase() 
  4174.  
  4175.      Sets all the data members to empty 
  4176.  
  4177.   Get data members 
  4178.      bool getAll(mapString &FieldValues) 
  4179.  
  4180.      Return a mapString of all the data members of this topic. The key is the 
  4181.      variable name.  LCP: CountryAttribs 
  4182.      string getDesc() 
  4183.  
  4184.      Get the short description 
  4185.      string getDescLong() 
  4186.  
  4187.      Get the long description 
  4188.      string getDescNative() 
  4189.  
  4190.      Get the native language description 
  4191.      string getNetCode() 
  4192.  
  4193.      Get the internet code for this country 
  4194.  
  4195.  
  4196. ΓòÉΓòÉΓòÉ <hidden> # ΓòÉΓòÉΓòÉ
  4197.  
  4198.  
  4199. lyris_Country Class 
  4200.  
  4201.      class lyris_Country 
  4202.  
  4203.      For determining what countries exist, and what languages are spoken & 
  4204.      preferred in each country 
  4205.  
  4206.      Defined in: COUNTRY.H 
  4207.  
  4208.   Create a new country 
  4209.  
  4210.       bool createNew() 
  4211.  
  4212.      Creates a new country/language table row.  LCP: CountryCreate 
  4213.      bool updateDatabase() 
  4214.  
  4215.      Save the current country with the data members that have changed.  LCP: 
  4216.      CountryUpdate 
  4217.      bool VerifyFields() 
  4218.  
  4219.      Verify that all required fields are filled in. 
  4220.  
  4221.   Retrieve data from the database 
  4222.      bool fetchAllCountries(vecString &AllCountries) 
  4223.  
  4224.      Fetch a list of all countries.  LCP: CountryAll 
  4225.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4226.  
  4227.      Fetch a paired list of countries and their native language descriptions, 
  4228.      sorted by english description.  LCP: CountryEngNat 
  4229.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4230.  
  4231.      Fetch a paired list of native language country descriptions, and the 
  4232.      english name of the country. 
  4233.      bool retrieveFromNetCode() 
  4234.  
  4235.      Determine the country that uses the currently set NetCode.  Fills all the 
  4236.      other country attributes with values. LCP: CountryAttNetCode 
  4237.      bool retrieveFromDesc() 
  4238.  
  4239.      Determine the country that uses the currently set description.  Fills all 
  4240.      the other country attributes with values.  LCP: CountryAttribs 
  4241.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4242.  
  4243.      Determine the primary language of the current country.  "Desc" must be 
  4244.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4245.      CountryPrimLang 
  4246.      bool getAllLanguages(vecString &Languages) 
  4247.  
  4248.      Determine all the languages used by the current country.  "Desc" must be 
  4249.      already set.  The result is returned in priority order (highest priority 
  4250.      first) in vecString &Languages.  LCP: CountryLanguages 
  4251.      bool getLanguageList(vecString &Languages) 
  4252.  
  4253.      Get a list of all possible languages, in alphabetical order, returned in 
  4254.      vecString &Languages.  LCP: CountryLangList 
  4255.      bool getLanguageListEngNat(mapString &Languages) 
  4256.  
  4257.      Get a map of all possible languages, their native description in 
  4258.      alphabetical order by english description, returned in in vecString 
  4259.      &Languages.  LCP: CountryLangListEngNat 
  4260.  
  4261.   Delete a country 
  4262.      bool deleteFromDesc() 
  4263.  
  4264.      Delete the country that uses the currently set description.  LCP: 
  4265.      CountryDelete 
  4266.  
  4267.   Set data members 
  4268.      bool setAll(mapString &FieldValues) 
  4269.  
  4270.      Sets all the data members of a topic using the mapString which is passed 
  4271.      to it.  Only the fields present in the mapString are updated, the other 
  4272.      fields are untouched.  LCP: CountryUpdate 
  4273.      bool setDesc(const string &DescSetting) 
  4274.  
  4275.      Set the short description 
  4276.      bool setDescLong(const string &DescLongSetting) 
  4277.  
  4278.      Set the long description 
  4279.      bool setDescNative(const string &DescNativeSetting) 
  4280.  
  4281.      Set the native language description 
  4282.      bool setNetCode(const string &NetCodeSetting) 
  4283.  
  4284.      Set the internet code for this country 
  4285.      bool erase() 
  4286.  
  4287.      Sets all the data members to empty 
  4288.  
  4289.   Get data members 
  4290.      bool getAll(mapString &FieldValues) 
  4291.  
  4292.      Return a mapString of all the data members of this topic. The key is the 
  4293.      variable name.  LCP: CountryAttribs 
  4294.      string getDesc() 
  4295.  
  4296.      Get the short description 
  4297.      string getDescLong() 
  4298.  
  4299.      Get the long description 
  4300.      string getDescNative() 
  4301.  
  4302.      Get the native language description 
  4303.      string getNetCode() 
  4304.  
  4305.      Get the internet code for this country 
  4306.  
  4307.  
  4308. ΓòÉΓòÉΓòÉ <hidden> $ ΓòÉΓòÉΓòÉ
  4309.  
  4310.  
  4311. lyris_Country Class 
  4312.  
  4313.      class lyris_Country 
  4314.  
  4315.      For determining what countries exist, and what languages are spoken & 
  4316.      preferred in each country 
  4317.  
  4318.      Defined in: COUNTRY.H 
  4319.  
  4320.   Create a new country 
  4321.  
  4322.       bool createNew() 
  4323.  
  4324.      Creates a new country/language table row.  LCP: CountryCreate 
  4325.      bool updateDatabase() 
  4326.  
  4327.      Save the current country with the data members that have changed.  LCP: 
  4328.      CountryUpdate 
  4329.      bool VerifyFields() 
  4330.  
  4331.      Verify that all required fields are filled in. 
  4332.  
  4333.   Retrieve data from the database 
  4334.      bool fetchAllCountries(vecString &AllCountries) 
  4335.  
  4336.      Fetch a list of all countries.  LCP: CountryAll 
  4337.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4338.  
  4339.      Fetch a paired list of countries and their native language descriptions, 
  4340.      sorted by english description.  LCP: CountryEngNat 
  4341.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4342.  
  4343.      Fetch a paired list of native language country descriptions, and the 
  4344.      english name of the country. 
  4345.      bool retrieveFromNetCode() 
  4346.  
  4347.      Determine the country that uses the currently set NetCode.  Fills all the 
  4348.      other country attributes with values. LCP: CountryAttNetCode 
  4349.      bool retrieveFromDesc() 
  4350.  
  4351.      Determine the country that uses the currently set description.  Fills all 
  4352.      the other country attributes with values.  LCP: CountryAttribs 
  4353.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4354.  
  4355.      Determine the primary language of the current country.  "Desc" must be 
  4356.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4357.      CountryPrimLang 
  4358.      bool getAllLanguages(vecString &Languages) 
  4359.  
  4360.      Determine all the languages used by the current country.  "Desc" must be 
  4361.      already set.  The result is returned in priority order (highest priority 
  4362.      first) in vecString &Languages.  LCP: CountryLanguages 
  4363.      bool getLanguageList(vecString &Languages) 
  4364.  
  4365.      Get a list of all possible languages, in alphabetical order, returned in 
  4366.      vecString &Languages.  LCP: CountryLangList 
  4367.      bool getLanguageListEngNat(mapString &Languages) 
  4368.  
  4369.      Get a map of all possible languages, their native description in 
  4370.      alphabetical order by english description, returned in in vecString 
  4371.      &Languages.  LCP: CountryLangListEngNat 
  4372.  
  4373.   Delete a country 
  4374.      bool deleteFromDesc() 
  4375.  
  4376.      Delete the country that uses the currently set description.  LCP: 
  4377.      CountryDelete 
  4378.  
  4379.   Set data members 
  4380.      bool setAll(mapString &FieldValues) 
  4381.  
  4382.      Sets all the data members of a topic using the mapString which is passed 
  4383.      to it.  Only the fields present in the mapString are updated, the other 
  4384.      fields are untouched.  LCP: CountryUpdate 
  4385.      bool setDesc(const string &DescSetting) 
  4386.  
  4387.      Set the short description 
  4388.      bool setDescLong(const string &DescLongSetting) 
  4389.  
  4390.      Set the long description 
  4391.      bool setDescNative(const string &DescNativeSetting) 
  4392.  
  4393.      Set the native language description 
  4394.      bool setNetCode(const string &NetCodeSetting) 
  4395.  
  4396.      Set the internet code for this country 
  4397.      bool erase() 
  4398.  
  4399.      Sets all the data members to empty 
  4400.  
  4401.   Get data members 
  4402.      bool getAll(mapString &FieldValues) 
  4403.  
  4404.      Return a mapString of all the data members of this topic. The key is the 
  4405.      variable name.  LCP: CountryAttribs 
  4406.      string getDesc() 
  4407.  
  4408.      Get the short description 
  4409.      string getDescLong() 
  4410.  
  4411.      Get the long description 
  4412.      string getDescNative() 
  4413.  
  4414.      Get the native language description 
  4415.      string getNetCode() 
  4416.  
  4417.      Get the internet code for this country 
  4418.  
  4419.  
  4420. ΓòÉΓòÉΓòÉ <hidden> % ΓòÉΓòÉΓòÉ
  4421.  
  4422.  
  4423. lyris_Country Class 
  4424.  
  4425.      class lyris_Country 
  4426.  
  4427.      For determining what countries exist, and what languages are spoken & 
  4428.      preferred in each country 
  4429.  
  4430.      Defined in: COUNTRY.H 
  4431.  
  4432.   Create a new country 
  4433.  
  4434.       bool createNew() 
  4435.  
  4436.      Creates a new country/language table row.  LCP: CountryCreate 
  4437.      bool updateDatabase() 
  4438.  
  4439.      Save the current country with the data members that have changed.  LCP: 
  4440.      CountryUpdate 
  4441.      bool VerifyFields() 
  4442.  
  4443.      Verify that all required fields are filled in. 
  4444.  
  4445.   Retrieve data from the database 
  4446.      bool fetchAllCountries(vecString &AllCountries) 
  4447.  
  4448.      Fetch a list of all countries.  LCP: CountryAll 
  4449.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4450.  
  4451.      Fetch a paired list of countries and their native language descriptions, 
  4452.      sorted by english description.  LCP: CountryEngNat 
  4453.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4454.  
  4455.      Fetch a paired list of native language country descriptions, and the 
  4456.      english name of the country. 
  4457.      bool retrieveFromNetCode() 
  4458.  
  4459.      Determine the country that uses the currently set NetCode.  Fills all the 
  4460.      other country attributes with values. LCP: CountryAttNetCode 
  4461.      bool retrieveFromDesc() 
  4462.  
  4463.      Determine the country that uses the currently set description.  Fills all 
  4464.      the other country attributes with values.  LCP: CountryAttribs 
  4465.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4466.  
  4467.      Determine the primary language of the current country.  "Desc" must be 
  4468.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4469.      CountryPrimLang 
  4470.      bool getAllLanguages(vecString &Languages) 
  4471.  
  4472.      Determine all the languages used by the current country.  "Desc" must be 
  4473.      already set.  The result is returned in priority order (highest priority 
  4474.      first) in vecString &Languages.  LCP: CountryLanguages 
  4475.      bool getLanguageList(vecString &Languages) 
  4476.  
  4477.      Get a list of all possible languages, in alphabetical order, returned in 
  4478.      vecString &Languages.  LCP: CountryLangList 
  4479.      bool getLanguageListEngNat(mapString &Languages) 
  4480.  
  4481.      Get a map of all possible languages, their native description in 
  4482.      alphabetical order by english description, returned in in vecString 
  4483.      &Languages.  LCP: CountryLangListEngNat 
  4484.  
  4485.   Delete a country 
  4486.      bool deleteFromDesc() 
  4487.  
  4488.      Delete the country that uses the currently set description.  LCP: 
  4489.      CountryDelete 
  4490.  
  4491.   Set data members 
  4492.      bool setAll(mapString &FieldValues) 
  4493.  
  4494.      Sets all the data members of a topic using the mapString which is passed 
  4495.      to it.  Only the fields present in the mapString are updated, the other 
  4496.      fields are untouched.  LCP: CountryUpdate 
  4497.      bool setDesc(const string &DescSetting) 
  4498.  
  4499.      Set the short description 
  4500.      bool setDescLong(const string &DescLongSetting) 
  4501.  
  4502.      Set the long description 
  4503.      bool setDescNative(const string &DescNativeSetting) 
  4504.  
  4505.      Set the native language description 
  4506.      bool setNetCode(const string &NetCodeSetting) 
  4507.  
  4508.      Set the internet code for this country 
  4509.      bool erase() 
  4510.  
  4511.      Sets all the data members to empty 
  4512.  
  4513.   Get data members 
  4514.      bool getAll(mapString &FieldValues) 
  4515.  
  4516.      Return a mapString of all the data members of this topic. The key is the 
  4517.      variable name.  LCP: CountryAttribs 
  4518.      string getDesc() 
  4519.  
  4520.      Get the short description 
  4521.      string getDescLong() 
  4522.  
  4523.      Get the long description 
  4524.      string getDescNative() 
  4525.  
  4526.      Get the native language description 
  4527.      string getNetCode() 
  4528.  
  4529.      Get the internet code for this country 
  4530.  
  4531.  
  4532. ΓòÉΓòÉΓòÉ <hidden> & ΓòÉΓòÉΓòÉ
  4533.  
  4534.  
  4535. lyris_Country Class 
  4536.  
  4537.      class lyris_Country 
  4538.  
  4539.      For determining what countries exist, and what languages are spoken & 
  4540.      preferred in each country 
  4541.  
  4542.      Defined in: COUNTRY.H 
  4543.  
  4544.   Create a new country 
  4545.  
  4546.       bool createNew() 
  4547.  
  4548.      Creates a new country/language table row.  LCP: CountryCreate 
  4549.      bool updateDatabase() 
  4550.  
  4551.      Save the current country with the data members that have changed.  LCP: 
  4552.      CountryUpdate 
  4553.      bool VerifyFields() 
  4554.  
  4555.      Verify that all required fields are filled in. 
  4556.  
  4557.   Retrieve data from the database 
  4558.      bool fetchAllCountries(vecString &AllCountries) 
  4559.  
  4560.      Fetch a list of all countries.  LCP: CountryAll 
  4561.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4562.  
  4563.      Fetch a paired list of countries and their native language descriptions, 
  4564.      sorted by english description.  LCP: CountryEngNat 
  4565.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4566.  
  4567.      Fetch a paired list of native language country descriptions, and the 
  4568.      english name of the country. 
  4569.      bool retrieveFromNetCode() 
  4570.  
  4571.      Determine the country that uses the currently set NetCode.  Fills all the 
  4572.      other country attributes with values. LCP: CountryAttNetCode 
  4573.      bool retrieveFromDesc() 
  4574.  
  4575.      Determine the country that uses the currently set description.  Fills all 
  4576.      the other country attributes with values.  LCP: CountryAttribs 
  4577.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4578.  
  4579.      Determine the primary language of the current country.  "Desc" must be 
  4580.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4581.      CountryPrimLang 
  4582.      bool getAllLanguages(vecString &Languages) 
  4583.  
  4584.      Determine all the languages used by the current country.  "Desc" must be 
  4585.      already set.  The result is returned in priority order (highest priority 
  4586.      first) in vecString &Languages.  LCP: CountryLanguages 
  4587.      bool getLanguageList(vecString &Languages) 
  4588.  
  4589.      Get a list of all possible languages, in alphabetical order, returned in 
  4590.      vecString &Languages.  LCP: CountryLangList 
  4591.      bool getLanguageListEngNat(mapString &Languages) 
  4592.  
  4593.      Get a map of all possible languages, their native description in 
  4594.      alphabetical order by english description, returned in in vecString 
  4595.      &Languages.  LCP: CountryLangListEngNat 
  4596.  
  4597.   Delete a country 
  4598.      bool deleteFromDesc() 
  4599.  
  4600.      Delete the country that uses the currently set description.  LCP: 
  4601.      CountryDelete 
  4602.  
  4603.   Set data members 
  4604.      bool setAll(mapString &FieldValues) 
  4605.  
  4606.      Sets all the data members of a topic using the mapString which is passed 
  4607.      to it.  Only the fields present in the mapString are updated, the other 
  4608.      fields are untouched.  LCP: CountryUpdate 
  4609.      bool setDesc(const string &DescSetting) 
  4610.  
  4611.      Set the short description 
  4612.      bool setDescLong(const string &DescLongSetting) 
  4613.  
  4614.      Set the long description 
  4615.      bool setDescNative(const string &DescNativeSetting) 
  4616.  
  4617.      Set the native language description 
  4618.      bool setNetCode(const string &NetCodeSetting) 
  4619.  
  4620.      Set the internet code for this country 
  4621.      bool erase() 
  4622.  
  4623.      Sets all the data members to empty 
  4624.  
  4625.   Get data members 
  4626.      bool getAll(mapString &FieldValues) 
  4627.  
  4628.      Return a mapString of all the data members of this topic. The key is the 
  4629.      variable name.  LCP: CountryAttribs 
  4630.      string getDesc() 
  4631.  
  4632.      Get the short description 
  4633.      string getDescLong() 
  4634.  
  4635.      Get the long description 
  4636.      string getDescNative() 
  4637.  
  4638.      Get the native language description 
  4639.      string getNetCode() 
  4640.  
  4641.      Get the internet code for this country 
  4642.  
  4643.  
  4644. ΓòÉΓòÉΓòÉ <hidden> ' ΓòÉΓòÉΓòÉ
  4645.  
  4646.  
  4647. lyris_Country Class 
  4648.  
  4649.      class lyris_Country 
  4650.  
  4651.      For determining what countries exist, and what languages are spoken & 
  4652.      preferred in each country 
  4653.  
  4654.      Defined in: COUNTRY.H 
  4655.  
  4656.   Create a new country 
  4657.  
  4658.       bool createNew() 
  4659.  
  4660.      Creates a new country/language table row.  LCP: CountryCreate 
  4661.      bool updateDatabase() 
  4662.  
  4663.      Save the current country with the data members that have changed.  LCP: 
  4664.      CountryUpdate 
  4665.      bool VerifyFields() 
  4666.  
  4667.      Verify that all required fields are filled in. 
  4668.  
  4669.   Retrieve data from the database 
  4670.      bool fetchAllCountries(vecString &AllCountries) 
  4671.  
  4672.      Fetch a list of all countries.  LCP: CountryAll 
  4673.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4674.  
  4675.      Fetch a paired list of countries and their native language descriptions, 
  4676.      sorted by english description.  LCP: CountryEngNat 
  4677.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4678.  
  4679.      Fetch a paired list of native language country descriptions, and the 
  4680.      english name of the country. 
  4681.      bool retrieveFromNetCode() 
  4682.  
  4683.      Determine the country that uses the currently set NetCode.  Fills all the 
  4684.      other country attributes with values. LCP: CountryAttNetCode 
  4685.      bool retrieveFromDesc() 
  4686.  
  4687.      Determine the country that uses the currently set description.  Fills all 
  4688.      the other country attributes with values.  LCP: CountryAttribs 
  4689.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4690.  
  4691.      Determine the primary language of the current country.  "Desc" must be 
  4692.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4693.      CountryPrimLang 
  4694.      bool getAllLanguages(vecString &Languages) 
  4695.  
  4696.      Determine all the languages used by the current country.  "Desc" must be 
  4697.      already set.  The result is returned in priority order (highest priority 
  4698.      first) in vecString &Languages.  LCP: CountryLanguages 
  4699.      bool getLanguageList(vecString &Languages) 
  4700.  
  4701.      Get a list of all possible languages, in alphabetical order, returned in 
  4702.      vecString &Languages.  LCP: CountryLangList 
  4703.      bool getLanguageListEngNat(mapString &Languages) 
  4704.  
  4705.      Get a map of all possible languages, their native description in 
  4706.      alphabetical order by english description, returned in in vecString 
  4707.      &Languages.  LCP: CountryLangListEngNat 
  4708.  
  4709.   Delete a country 
  4710.      bool deleteFromDesc() 
  4711.  
  4712.      Delete the country that uses the currently set description.  LCP: 
  4713.      CountryDelete 
  4714.  
  4715.   Set data members 
  4716.      bool setAll(mapString &FieldValues) 
  4717.  
  4718.      Sets all the data members of a topic using the mapString which is passed 
  4719.      to it.  Only the fields present in the mapString are updated, the other 
  4720.      fields are untouched.  LCP: CountryUpdate 
  4721.      bool setDesc(const string &DescSetting) 
  4722.  
  4723.      Set the short description 
  4724.      bool setDescLong(const string &DescLongSetting) 
  4725.  
  4726.      Set the long description 
  4727.      bool setDescNative(const string &DescNativeSetting) 
  4728.  
  4729.      Set the native language description 
  4730.      bool setNetCode(const string &NetCodeSetting) 
  4731.  
  4732.      Set the internet code for this country 
  4733.      bool erase() 
  4734.  
  4735.      Sets all the data members to empty 
  4736.  
  4737.   Get data members 
  4738.      bool getAll(mapString &FieldValues) 
  4739.  
  4740.      Return a mapString of all the data members of this topic. The key is the 
  4741.      variable name.  LCP: CountryAttribs 
  4742.      string getDesc() 
  4743.  
  4744.      Get the short description 
  4745.      string getDescLong() 
  4746.  
  4747.      Get the long description 
  4748.      string getDescNative() 
  4749.  
  4750.      Get the native language description 
  4751.      string getNetCode() 
  4752.  
  4753.      Get the internet code for this country 
  4754.  
  4755.  
  4756. ΓòÉΓòÉΓòÉ <hidden> ( ΓòÉΓòÉΓòÉ
  4757.  
  4758.  
  4759. lyris_Country Class 
  4760.  
  4761.      class lyris_Country 
  4762.  
  4763.      For determining what countries exist, and what languages are spoken & 
  4764.      preferred in each country 
  4765.  
  4766.      Defined in: COUNTRY.H 
  4767.  
  4768.   Create a new country 
  4769.  
  4770.       bool createNew() 
  4771.  
  4772.      Creates a new country/language table row.  LCP: CountryCreate 
  4773.      bool updateDatabase() 
  4774.  
  4775.      Save the current country with the data members that have changed.  LCP: 
  4776.      CountryUpdate 
  4777.      bool VerifyFields() 
  4778.  
  4779.      Verify that all required fields are filled in. 
  4780.  
  4781.   Retrieve data from the database 
  4782.      bool fetchAllCountries(vecString &AllCountries) 
  4783.  
  4784.      Fetch a list of all countries.  LCP: CountryAll 
  4785.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4786.  
  4787.      Fetch a paired list of countries and their native language descriptions, 
  4788.      sorted by english description.  LCP: CountryEngNat 
  4789.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4790.  
  4791.      Fetch a paired list of native language country descriptions, and the 
  4792.      english name of the country. 
  4793.      bool retrieveFromNetCode() 
  4794.  
  4795.      Determine the country that uses the currently set NetCode.  Fills all the 
  4796.      other country attributes with values. LCP: CountryAttNetCode 
  4797.      bool retrieveFromDesc() 
  4798.  
  4799.      Determine the country that uses the currently set description.  Fills all 
  4800.      the other country attributes with values.  LCP: CountryAttribs 
  4801.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4802.  
  4803.      Determine the primary language of the current country.  "Desc" must be 
  4804.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4805.      CountryPrimLang 
  4806.      bool getAllLanguages(vecString &Languages) 
  4807.  
  4808.      Determine all the languages used by the current country.  "Desc" must be 
  4809.      already set.  The result is returned in priority order (highest priority 
  4810.      first) in vecString &Languages.  LCP: CountryLanguages 
  4811.      bool getLanguageList(vecString &Languages) 
  4812.  
  4813.      Get a list of all possible languages, in alphabetical order, returned in 
  4814.      vecString &Languages.  LCP: CountryLangList 
  4815.      bool getLanguageListEngNat(mapString &Languages) 
  4816.  
  4817.      Get a map of all possible languages, their native description in 
  4818.      alphabetical order by english description, returned in in vecString 
  4819.      &Languages.  LCP: CountryLangListEngNat 
  4820.  
  4821.   Delete a country 
  4822.      bool deleteFromDesc() 
  4823.  
  4824.      Delete the country that uses the currently set description.  LCP: 
  4825.      CountryDelete 
  4826.  
  4827.   Set data members 
  4828.      bool setAll(mapString &FieldValues) 
  4829.  
  4830.      Sets all the data members of a topic using the mapString which is passed 
  4831.      to it.  Only the fields present in the mapString are updated, the other 
  4832.      fields are untouched.  LCP: CountryUpdate 
  4833.      bool setDesc(const string &DescSetting) 
  4834.  
  4835.      Set the short description 
  4836.      bool setDescLong(const string &DescLongSetting) 
  4837.  
  4838.      Set the long description 
  4839.      bool setDescNative(const string &DescNativeSetting) 
  4840.  
  4841.      Set the native language description 
  4842.      bool setNetCode(const string &NetCodeSetting) 
  4843.  
  4844.      Set the internet code for this country 
  4845.      bool erase() 
  4846.  
  4847.      Sets all the data members to empty 
  4848.  
  4849.   Get data members 
  4850.      bool getAll(mapString &FieldValues) 
  4851.  
  4852.      Return a mapString of all the data members of this topic. The key is the 
  4853.      variable name.  LCP: CountryAttribs 
  4854.      string getDesc() 
  4855.  
  4856.      Get the short description 
  4857.      string getDescLong() 
  4858.  
  4859.      Get the long description 
  4860.      string getDescNative() 
  4861.  
  4862.      Get the native language description 
  4863.      string getNetCode() 
  4864.  
  4865.      Get the internet code for this country 
  4866.  
  4867.  
  4868. ΓòÉΓòÉΓòÉ <hidden> ) ΓòÉΓòÉΓòÉ
  4869.  
  4870.  
  4871. lyris_Country Class 
  4872.  
  4873.      class lyris_Country 
  4874.  
  4875.      For determining what countries exist, and what languages are spoken & 
  4876.      preferred in each country 
  4877.  
  4878.      Defined in: COUNTRY.H 
  4879.  
  4880.   Create a new country 
  4881.  
  4882.       bool createNew() 
  4883.  
  4884.      Creates a new country/language table row.  LCP: CountryCreate 
  4885.      bool updateDatabase() 
  4886.  
  4887.      Save the current country with the data members that have changed.  LCP: 
  4888.      CountryUpdate 
  4889.      bool VerifyFields() 
  4890.  
  4891.      Verify that all required fields are filled in. 
  4892.  
  4893.   Retrieve data from the database 
  4894.      bool fetchAllCountries(vecString &AllCountries) 
  4895.  
  4896.      Fetch a list of all countries.  LCP: CountryAll 
  4897.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  4898.  
  4899.      Fetch a paired list of countries and their native language descriptions, 
  4900.      sorted by english description.  LCP: CountryEngNat 
  4901.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  4902.  
  4903.      Fetch a paired list of native language country descriptions, and the 
  4904.      english name of the country. 
  4905.      bool retrieveFromNetCode() 
  4906.  
  4907.      Determine the country that uses the currently set NetCode.  Fills all the 
  4908.      other country attributes with values. LCP: CountryAttNetCode 
  4909.      bool retrieveFromDesc() 
  4910.  
  4911.      Determine the country that uses the currently set description.  Fills all 
  4912.      the other country attributes with values.  LCP: CountryAttribs 
  4913.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  4914.  
  4915.      Determine the primary language of the current country.  "Desc" must be 
  4916.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  4917.      CountryPrimLang 
  4918.      bool getAllLanguages(vecString &Languages) 
  4919.  
  4920.      Determine all the languages used by the current country.  "Desc" must be 
  4921.      already set.  The result is returned in priority order (highest priority 
  4922.      first) in vecString &Languages.  LCP: CountryLanguages 
  4923.      bool getLanguageList(vecString &Languages) 
  4924.  
  4925.      Get a list of all possible languages, in alphabetical order, returned in 
  4926.      vecString &Languages.  LCP: CountryLangList 
  4927.      bool getLanguageListEngNat(mapString &Languages) 
  4928.  
  4929.      Get a map of all possible languages, their native description in 
  4930.      alphabetical order by english description, returned in in vecString 
  4931.      &Languages.  LCP: CountryLangListEngNat 
  4932.  
  4933.   Delete a country 
  4934.      bool deleteFromDesc() 
  4935.  
  4936.      Delete the country that uses the currently set description.  LCP: 
  4937.      CountryDelete 
  4938.  
  4939.   Set data members 
  4940.      bool setAll(mapString &FieldValues) 
  4941.  
  4942.      Sets all the data members of a topic using the mapString which is passed 
  4943.      to it.  Only the fields present in the mapString are updated, the other 
  4944.      fields are untouched.  LCP: CountryUpdate 
  4945.      bool setDesc(const string &DescSetting) 
  4946.  
  4947.      Set the short description 
  4948.      bool setDescLong(const string &DescLongSetting) 
  4949.  
  4950.      Set the long description 
  4951.      bool setDescNative(const string &DescNativeSetting) 
  4952.  
  4953.      Set the native language description 
  4954.      bool setNetCode(const string &NetCodeSetting) 
  4955.  
  4956.      Set the internet code for this country 
  4957.      bool erase() 
  4958.  
  4959.      Sets all the data members to empty 
  4960.  
  4961.   Get data members 
  4962.      bool getAll(mapString &FieldValues) 
  4963.  
  4964.      Return a mapString of all the data members of this topic. The key is the 
  4965.      variable name.  LCP: CountryAttribs 
  4966.      string getDesc() 
  4967.  
  4968.      Get the short description 
  4969.      string getDescLong() 
  4970.  
  4971.      Get the long description 
  4972.      string getDescNative() 
  4973.  
  4974.      Get the native language description 
  4975.      string getNetCode() 
  4976.  
  4977.      Get the internet code for this country 
  4978.  
  4979.  
  4980. ΓòÉΓòÉΓòÉ <hidden> * ΓòÉΓòÉΓòÉ
  4981.  
  4982.  
  4983. lyris_Country Class 
  4984.  
  4985.      class lyris_Country 
  4986.  
  4987.      For determining what countries exist, and what languages are spoken & 
  4988.      preferred in each country 
  4989.  
  4990.      Defined in: COUNTRY.H 
  4991.  
  4992.   Create a new country 
  4993.  
  4994.       bool createNew() 
  4995.  
  4996.      Creates a new country/language table row.  LCP: CountryCreate 
  4997.      bool updateDatabase() 
  4998.  
  4999.      Save the current country with the data members that have changed.  LCP: 
  5000.      CountryUpdate 
  5001.      bool VerifyFields() 
  5002.  
  5003.      Verify that all required fields are filled in. 
  5004.  
  5005.   Retrieve data from the database 
  5006.      bool fetchAllCountries(vecString &AllCountries) 
  5007.  
  5008.      Fetch a list of all countries.  LCP: CountryAll 
  5009.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5010.  
  5011.      Fetch a paired list of countries and their native language descriptions, 
  5012.      sorted by english description.  LCP: CountryEngNat 
  5013.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5014.  
  5015.      Fetch a paired list of native language country descriptions, and the 
  5016.      english name of the country. 
  5017.      bool retrieveFromNetCode() 
  5018.  
  5019.      Determine the country that uses the currently set NetCode.  Fills all the 
  5020.      other country attributes with values. LCP: CountryAttNetCode 
  5021.      bool retrieveFromDesc() 
  5022.  
  5023.      Determine the country that uses the currently set description.  Fills all 
  5024.      the other country attributes with values.  LCP: CountryAttribs 
  5025.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5026.  
  5027.      Determine the primary language of the current country.  "Desc" must be 
  5028.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5029.      CountryPrimLang 
  5030.      bool getAllLanguages(vecString &Languages) 
  5031.  
  5032.      Determine all the languages used by the current country.  "Desc" must be 
  5033.      already set.  The result is returned in priority order (highest priority 
  5034.      first) in vecString &Languages.  LCP: CountryLanguages 
  5035.      bool getLanguageList(vecString &Languages) 
  5036.  
  5037.      Get a list of all possible languages, in alphabetical order, returned in 
  5038.      vecString &Languages.  LCP: CountryLangList 
  5039.      bool getLanguageListEngNat(mapString &Languages) 
  5040.  
  5041.      Get a map of all possible languages, their native description in 
  5042.      alphabetical order by english description, returned in in vecString 
  5043.      &Languages.  LCP: CountryLangListEngNat 
  5044.  
  5045.   Delete a country 
  5046.      bool deleteFromDesc() 
  5047.  
  5048.      Delete the country that uses the currently set description.  LCP: 
  5049.      CountryDelete 
  5050.  
  5051.   Set data members 
  5052.      bool setAll(mapString &FieldValues) 
  5053.  
  5054.      Sets all the data members of a topic using the mapString which is passed 
  5055.      to it.  Only the fields present in the mapString are updated, the other 
  5056.      fields are untouched.  LCP: CountryUpdate 
  5057.      bool setDesc(const string &DescSetting) 
  5058.  
  5059.      Set the short description 
  5060.      bool setDescLong(const string &DescLongSetting) 
  5061.  
  5062.      Set the long description 
  5063.      bool setDescNative(const string &DescNativeSetting) 
  5064.  
  5065.      Set the native language description 
  5066.      bool setNetCode(const string &NetCodeSetting) 
  5067.  
  5068.      Set the internet code for this country 
  5069.      bool erase() 
  5070.  
  5071.      Sets all the data members to empty 
  5072.  
  5073.   Get data members 
  5074.      bool getAll(mapString &FieldValues) 
  5075.  
  5076.      Return a mapString of all the data members of this topic. The key is the 
  5077.      variable name.  LCP: CountryAttribs 
  5078.      string getDesc() 
  5079.  
  5080.      Get the short description 
  5081.      string getDescLong() 
  5082.  
  5083.      Get the long description 
  5084.      string getDescNative() 
  5085.  
  5086.      Get the native language description 
  5087.      string getNetCode() 
  5088.  
  5089.      Get the internet code for this country 
  5090.  
  5091.  
  5092. ΓòÉΓòÉΓòÉ <hidden> + ΓòÉΓòÉΓòÉ
  5093.  
  5094.  
  5095. lyris_Country Class 
  5096.  
  5097.      class lyris_Country 
  5098.  
  5099.      For determining what countries exist, and what languages are spoken & 
  5100.      preferred in each country 
  5101.  
  5102.      Defined in: COUNTRY.H 
  5103.  
  5104.   Create a new country 
  5105.  
  5106.       bool createNew() 
  5107.  
  5108.      Creates a new country/language table row.  LCP: CountryCreate 
  5109.      bool updateDatabase() 
  5110.  
  5111.      Save the current country with the data members that have changed.  LCP: 
  5112.      CountryUpdate 
  5113.      bool VerifyFields() 
  5114.  
  5115.      Verify that all required fields are filled in. 
  5116.  
  5117.   Retrieve data from the database 
  5118.      bool fetchAllCountries(vecString &AllCountries) 
  5119.  
  5120.      Fetch a list of all countries.  LCP: CountryAll 
  5121.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5122.  
  5123.      Fetch a paired list of countries and their native language descriptions, 
  5124.      sorted by english description.  LCP: CountryEngNat 
  5125.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5126.  
  5127.      Fetch a paired list of native language country descriptions, and the 
  5128.      english name of the country. 
  5129.      bool retrieveFromNetCode() 
  5130.  
  5131.      Determine the country that uses the currently set NetCode.  Fills all the 
  5132.      other country attributes with values. LCP: CountryAttNetCode 
  5133.      bool retrieveFromDesc() 
  5134.  
  5135.      Determine the country that uses the currently set description.  Fills all 
  5136.      the other country attributes with values.  LCP: CountryAttribs 
  5137.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5138.  
  5139.      Determine the primary language of the current country.  "Desc" must be 
  5140.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5141.      CountryPrimLang 
  5142.      bool getAllLanguages(vecString &Languages) 
  5143.  
  5144.      Determine all the languages used by the current country.  "Desc" must be 
  5145.      already set.  The result is returned in priority order (highest priority 
  5146.      first) in vecString &Languages.  LCP: CountryLanguages 
  5147.      bool getLanguageList(vecString &Languages) 
  5148.  
  5149.      Get a list of all possible languages, in alphabetical order, returned in 
  5150.      vecString &Languages.  LCP: CountryLangList 
  5151.      bool getLanguageListEngNat(mapString &Languages) 
  5152.  
  5153.      Get a map of all possible languages, their native description in 
  5154.      alphabetical order by english description, returned in in vecString 
  5155.      &Languages.  LCP: CountryLangListEngNat 
  5156.  
  5157.   Delete a country 
  5158.      bool deleteFromDesc() 
  5159.  
  5160.      Delete the country that uses the currently set description.  LCP: 
  5161.      CountryDelete 
  5162.  
  5163.   Set data members 
  5164.      bool setAll(mapString &FieldValues) 
  5165.  
  5166.      Sets all the data members of a topic using the mapString which is passed 
  5167.      to it.  Only the fields present in the mapString are updated, the other 
  5168.      fields are untouched.  LCP: CountryUpdate 
  5169.      bool setDesc(const string &DescSetting) 
  5170.  
  5171.      Set the short description 
  5172.      bool setDescLong(const string &DescLongSetting) 
  5173.  
  5174.      Set the long description 
  5175.      bool setDescNative(const string &DescNativeSetting) 
  5176.  
  5177.      Set the native language description 
  5178.      bool setNetCode(const string &NetCodeSetting) 
  5179.  
  5180.      Set the internet code for this country 
  5181.      bool erase() 
  5182.  
  5183.      Sets all the data members to empty 
  5184.  
  5185.   Get data members 
  5186.      bool getAll(mapString &FieldValues) 
  5187.  
  5188.      Return a mapString of all the data members of this topic. The key is the 
  5189.      variable name.  LCP: CountryAttribs 
  5190.      string getDesc() 
  5191.  
  5192.      Get the short description 
  5193.      string getDescLong() 
  5194.  
  5195.      Get the long description 
  5196.      string getDescNative() 
  5197.  
  5198.      Get the native language description 
  5199.      string getNetCode() 
  5200.  
  5201.      Get the internet code for this country 
  5202.  
  5203.  
  5204. ΓòÉΓòÉΓòÉ 1. , ΓòÉΓòÉΓòÉ
  5205.  
  5206.  
  5207. lyris_Country Class 
  5208.  
  5209.      class lyris_Country 
  5210.  
  5211.      For determining what countries exist, and what languages are spoken & 
  5212.      preferred in each country 
  5213.  
  5214.      Defined in: COUNTRY.H 
  5215.  
  5216.   Create a new country 
  5217.  
  5218.       bool createNew() 
  5219.  
  5220.      Creates a new country/language table row.  LCP: CountryCreate 
  5221.      bool updateDatabase() 
  5222.  
  5223.      Save the current country with the data members that have changed.  LCP: 
  5224.      CountryUpdate 
  5225.      bool VerifyFields() 
  5226.  
  5227.      Verify that all required fields are filled in. 
  5228.  
  5229.   Retrieve data from the database 
  5230.      bool fetchAllCountries(vecString &AllCountries) 
  5231.  
  5232.      Fetch a list of all countries.  LCP: CountryAll 
  5233.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5234.  
  5235.      Fetch a paired list of countries and their native language descriptions, 
  5236.      sorted by english description.  LCP: CountryEngNat 
  5237.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5238.  
  5239.      Fetch a paired list of native language country descriptions, and the 
  5240.      english name of the country. 
  5241.      bool retrieveFromNetCode() 
  5242.  
  5243.      Determine the country that uses the currently set NetCode.  Fills all the 
  5244.      other country attributes with values. LCP: CountryAttNetCode 
  5245.      bool retrieveFromDesc() 
  5246.  
  5247.      Determine the country that uses the currently set description.  Fills all 
  5248.      the other country attributes with values.  LCP: CountryAttribs 
  5249.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5250.  
  5251.      Determine the primary language of the current country.  "Desc" must be 
  5252.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5253.      CountryPrimLang 
  5254.      bool getAllLanguages(vecString &Languages) 
  5255.  
  5256.      Determine all the languages used by the current country.  "Desc" must be 
  5257.      already set.  The result is returned in priority order (highest priority 
  5258.      first) in vecString &Languages.  LCP: CountryLanguages 
  5259.      bool getLanguageList(vecString &Languages) 
  5260.  
  5261.      Get a list of all possible languages, in alphabetical order, returned in 
  5262.      vecString &Languages.  LCP: CountryLangList 
  5263.      bool getLanguageListEngNat(mapString &Languages) 
  5264.  
  5265.      Get a map of all possible languages, their native description in 
  5266.      alphabetical order by english description, returned in in vecString 
  5267.      &Languages.  LCP: CountryLangListEngNat 
  5268.  
  5269.   Delete a country 
  5270.      bool deleteFromDesc() 
  5271.  
  5272.      Delete the country that uses the currently set description.  LCP: 
  5273.      CountryDelete 
  5274.  
  5275.   Set data members 
  5276.      bool setAll(mapString &FieldValues) 
  5277.  
  5278.      Sets all the data members of a topic using the mapString which is passed 
  5279.      to it.  Only the fields present in the mapString are updated, the other 
  5280.      fields are untouched.  LCP: CountryUpdate 
  5281.      bool setDesc(const string &DescSetting) 
  5282.  
  5283.      Set the short description 
  5284.      bool setDescLong(const string &DescLongSetting) 
  5285.  
  5286.      Set the long description 
  5287.      bool setDescNative(const string &DescNativeSetting) 
  5288.  
  5289.      Set the native language description 
  5290.      bool setNetCode(const string &NetCodeSetting) 
  5291.  
  5292.      Set the internet code for this country 
  5293.      bool erase() 
  5294.  
  5295.      Sets all the data members to empty 
  5296.  
  5297.   Get data members 
  5298.      bool getAll(mapString &FieldValues) 
  5299.  
  5300.      Return a mapString of all the data members of this topic. The key is the 
  5301.      variable name.  LCP: CountryAttribs 
  5302.      string getDesc() 
  5303.  
  5304.      Get the short description 
  5305.      string getDescLong() 
  5306.  
  5307.      Get the long description 
  5308.      string getDescNative() 
  5309.  
  5310.      Get the native language description 
  5311.      string getNetCode() 
  5312.  
  5313.      Get the internet code for this country 
  5314.  
  5315.  
  5316. ΓòÉΓòÉΓòÉ <hidden> - ΓòÉΓòÉΓòÉ
  5317.  
  5318.  
  5319. lyris_Country Class 
  5320.  
  5321.      class lyris_Country 
  5322.  
  5323.      For determining what countries exist, and what languages are spoken & 
  5324.      preferred in each country 
  5325.  
  5326.      Defined in: COUNTRY.H 
  5327.  
  5328.   Create a new country 
  5329.  
  5330.       bool createNew() 
  5331.  
  5332.      Creates a new country/language table row.  LCP: CountryCreate 
  5333.      bool updateDatabase() 
  5334.  
  5335.      Save the current country with the data members that have changed.  LCP: 
  5336.      CountryUpdate 
  5337.      bool VerifyFields() 
  5338.  
  5339.      Verify that all required fields are filled in. 
  5340.  
  5341.   Retrieve data from the database 
  5342.      bool fetchAllCountries(vecString &AllCountries) 
  5343.  
  5344.      Fetch a list of all countries.  LCP: CountryAll 
  5345.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5346.  
  5347.      Fetch a paired list of countries and their native language descriptions, 
  5348.      sorted by english description.  LCP: CountryEngNat 
  5349.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5350.  
  5351.      Fetch a paired list of native language country descriptions, and the 
  5352.      english name of the country. 
  5353.      bool retrieveFromNetCode() 
  5354.  
  5355.      Determine the country that uses the currently set NetCode.  Fills all the 
  5356.      other country attributes with values. LCP: CountryAttNetCode 
  5357.      bool retrieveFromDesc() 
  5358.  
  5359.      Determine the country that uses the currently set description.  Fills all 
  5360.      the other country attributes with values.  LCP: CountryAttribs 
  5361.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5362.  
  5363.      Determine the primary language of the current country.  "Desc" must be 
  5364.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5365.      CountryPrimLang 
  5366.      bool getAllLanguages(vecString &Languages) 
  5367.  
  5368.      Determine all the languages used by the current country.  "Desc" must be 
  5369.      already set.  The result is returned in priority order (highest priority 
  5370.      first) in vecString &Languages.  LCP: CountryLanguages 
  5371.      bool getLanguageList(vecString &Languages) 
  5372.  
  5373.      Get a list of all possible languages, in alphabetical order, returned in 
  5374.      vecString &Languages.  LCP: CountryLangList 
  5375.      bool getLanguageListEngNat(mapString &Languages) 
  5376.  
  5377.      Get a map of all possible languages, their native description in 
  5378.      alphabetical order by english description, returned in in vecString 
  5379.      &Languages.  LCP: CountryLangListEngNat 
  5380.  
  5381.   Delete a country 
  5382.      bool deleteFromDesc() 
  5383.  
  5384.      Delete the country that uses the currently set description.  LCP: 
  5385.      CountryDelete 
  5386.  
  5387.   Set data members 
  5388.      bool setAll(mapString &FieldValues) 
  5389.  
  5390.      Sets all the data members of a topic using the mapString which is passed 
  5391.      to it.  Only the fields present in the mapString are updated, the other 
  5392.      fields are untouched.  LCP: CountryUpdate 
  5393.      bool setDesc(const string &DescSetting) 
  5394.  
  5395.      Set the short description 
  5396.      bool setDescLong(const string &DescLongSetting) 
  5397.  
  5398.      Set the long description 
  5399.      bool setDescNative(const string &DescNativeSetting) 
  5400.  
  5401.      Set the native language description 
  5402.      bool setNetCode(const string &NetCodeSetting) 
  5403.  
  5404.      Set the internet code for this country 
  5405.      bool erase() 
  5406.  
  5407.      Sets all the data members to empty 
  5408.  
  5409.   Get data members 
  5410.      bool getAll(mapString &FieldValues) 
  5411.  
  5412.      Return a mapString of all the data members of this topic. The key is the 
  5413.      variable name.  LCP: CountryAttribs 
  5414.      string getDesc() 
  5415.  
  5416.      Get the short description 
  5417.      string getDescLong() 
  5418.  
  5419.      Get the long description 
  5420.      string getDescNative() 
  5421.  
  5422.      Get the native language description 
  5423.      string getNetCode() 
  5424.  
  5425.      Get the internet code for this country 
  5426.  
  5427.  
  5428. ΓòÉΓòÉΓòÉ <hidden> . ΓòÉΓòÉΓòÉ
  5429.  
  5430.  
  5431. lyris_Country Class 
  5432.  
  5433.      class lyris_Country 
  5434.  
  5435.      For determining what countries exist, and what languages are spoken & 
  5436.      preferred in each country 
  5437.  
  5438.      Defined in: COUNTRY.H 
  5439.  
  5440.   Create a new country 
  5441.  
  5442.       bool createNew() 
  5443.  
  5444.      Creates a new country/language table row.  LCP: CountryCreate 
  5445.      bool updateDatabase() 
  5446.  
  5447.      Save the current country with the data members that have changed.  LCP: 
  5448.      CountryUpdate 
  5449.      bool VerifyFields() 
  5450.  
  5451.      Verify that all required fields are filled in. 
  5452.  
  5453.   Retrieve data from the database 
  5454.      bool fetchAllCountries(vecString &AllCountries) 
  5455.  
  5456.      Fetch a list of all countries.  LCP: CountryAll 
  5457.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5458.  
  5459.      Fetch a paired list of countries and their native language descriptions, 
  5460.      sorted by english description.  LCP: CountryEngNat 
  5461.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5462.  
  5463.      Fetch a paired list of native language country descriptions, and the 
  5464.      english name of the country. 
  5465.      bool retrieveFromNetCode() 
  5466.  
  5467.      Determine the country that uses the currently set NetCode.  Fills all the 
  5468.      other country attributes with values. LCP: CountryAttNetCode 
  5469.      bool retrieveFromDesc() 
  5470.  
  5471.      Determine the country that uses the currently set description.  Fills all 
  5472.      the other country attributes with values.  LCP: CountryAttribs 
  5473.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5474.  
  5475.      Determine the primary language of the current country.  "Desc" must be 
  5476.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5477.      CountryPrimLang 
  5478.      bool getAllLanguages(vecString &Languages) 
  5479.  
  5480.      Determine all the languages used by the current country.  "Desc" must be 
  5481.      already set.  The result is returned in priority order (highest priority 
  5482.      first) in vecString &Languages.  LCP: CountryLanguages 
  5483.      bool getLanguageList(vecString &Languages) 
  5484.  
  5485.      Get a list of all possible languages, in alphabetical order, returned in 
  5486.      vecString &Languages.  LCP: CountryLangList 
  5487.      bool getLanguageListEngNat(mapString &Languages) 
  5488.  
  5489.      Get a map of all possible languages, their native description in 
  5490.      alphabetical order by english description, returned in in vecString 
  5491.      &Languages.  LCP: CountryLangListEngNat 
  5492.  
  5493.   Delete a country 
  5494.      bool deleteFromDesc() 
  5495.  
  5496.      Delete the country that uses the currently set description.  LCP: 
  5497.      CountryDelete 
  5498.  
  5499.   Set data members 
  5500.      bool setAll(mapString &FieldValues) 
  5501.  
  5502.      Sets all the data members of a topic using the mapString which is passed 
  5503.      to it.  Only the fields present in the mapString are updated, the other 
  5504.      fields are untouched.  LCP: CountryUpdate 
  5505.      bool setDesc(const string &DescSetting) 
  5506.  
  5507.      Set the short description 
  5508.      bool setDescLong(const string &DescLongSetting) 
  5509.  
  5510.      Set the long description 
  5511.      bool setDescNative(const string &DescNativeSetting) 
  5512.  
  5513.      Set the native language description 
  5514.      bool setNetCode(const string &NetCodeSetting) 
  5515.  
  5516.      Set the internet code for this country 
  5517.      bool erase() 
  5518.  
  5519.      Sets all the data members to empty 
  5520.  
  5521.   Get data members 
  5522.      bool getAll(mapString &FieldValues) 
  5523.  
  5524.      Return a mapString of all the data members of this topic. The key is the 
  5525.      variable name.  LCP: CountryAttribs 
  5526.      string getDesc() 
  5527.  
  5528.      Get the short description 
  5529.      string getDescLong() 
  5530.  
  5531.      Get the long description 
  5532.      string getDescNative() 
  5533.  
  5534.      Get the native language description 
  5535.      string getNetCode() 
  5536.  
  5537.      Get the internet code for this country 
  5538.  
  5539.  
  5540. ΓòÉΓòÉΓòÉ <hidden> / ΓòÉΓòÉΓòÉ
  5541.  
  5542.  
  5543. lyris_Country Class 
  5544.  
  5545.      class lyris_Country 
  5546.  
  5547.      For determining what countries exist, and what languages are spoken & 
  5548.      preferred in each country 
  5549.  
  5550.      Defined in: COUNTRY.H 
  5551.  
  5552.   Create a new country 
  5553.  
  5554.       bool createNew() 
  5555.  
  5556.      Creates a new country/language table row.  LCP: CountryCreate 
  5557.      bool updateDatabase() 
  5558.  
  5559.      Save the current country with the data members that have changed.  LCP: 
  5560.      CountryUpdate 
  5561.      bool VerifyFields() 
  5562.  
  5563.      Verify that all required fields are filled in. 
  5564.  
  5565.   Retrieve data from the database 
  5566.      bool fetchAllCountries(vecString &AllCountries) 
  5567.  
  5568.      Fetch a list of all countries.  LCP: CountryAll 
  5569.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5570.  
  5571.      Fetch a paired list of countries and their native language descriptions, 
  5572.      sorted by english description.  LCP: CountryEngNat 
  5573.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5574.  
  5575.      Fetch a paired list of native language country descriptions, and the 
  5576.      english name of the country. 
  5577.      bool retrieveFromNetCode() 
  5578.  
  5579.      Determine the country that uses the currently set NetCode.  Fills all the 
  5580.      other country attributes with values. LCP: CountryAttNetCode 
  5581.      bool retrieveFromDesc() 
  5582.  
  5583.      Determine the country that uses the currently set description.  Fills all 
  5584.      the other country attributes with values.  LCP: CountryAttribs 
  5585.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5586.  
  5587.      Determine the primary language of the current country.  "Desc" must be 
  5588.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5589.      CountryPrimLang 
  5590.      bool getAllLanguages(vecString &Languages) 
  5591.  
  5592.      Determine all the languages used by the current country.  "Desc" must be 
  5593.      already set.  The result is returned in priority order (highest priority 
  5594.      first) in vecString &Languages.  LCP: CountryLanguages 
  5595.      bool getLanguageList(vecString &Languages) 
  5596.  
  5597.      Get a list of all possible languages, in alphabetical order, returned in 
  5598.      vecString &Languages.  LCP: CountryLangList 
  5599.      bool getLanguageListEngNat(mapString &Languages) 
  5600.  
  5601.      Get a map of all possible languages, their native description in 
  5602.      alphabetical order by english description, returned in in vecString 
  5603.      &Languages.  LCP: CountryLangListEngNat 
  5604.  
  5605.   Delete a country 
  5606.      bool deleteFromDesc() 
  5607.  
  5608.      Delete the country that uses the currently set description.  LCP: 
  5609.      CountryDelete 
  5610.  
  5611.   Set data members 
  5612.      bool setAll(mapString &FieldValues) 
  5613.  
  5614.      Sets all the data members of a topic using the mapString which is passed 
  5615.      to it.  Only the fields present in the mapString are updated, the other 
  5616.      fields are untouched.  LCP: CountryUpdate 
  5617.      bool setDesc(const string &DescSetting) 
  5618.  
  5619.      Set the short description 
  5620.      bool setDescLong(const string &DescLongSetting) 
  5621.  
  5622.      Set the long description 
  5623.      bool setDescNative(const string &DescNativeSetting) 
  5624.  
  5625.      Set the native language description 
  5626.      bool setNetCode(const string &NetCodeSetting) 
  5627.  
  5628.      Set the internet code for this country 
  5629.      bool erase() 
  5630.  
  5631.      Sets all the data members to empty 
  5632.  
  5633.   Get data members 
  5634.      bool getAll(mapString &FieldValues) 
  5635.  
  5636.      Return a mapString of all the data members of this topic. The key is the 
  5637.      variable name.  LCP: CountryAttribs 
  5638.      string getDesc() 
  5639.  
  5640.      Get the short description 
  5641.      string getDescLong() 
  5642.  
  5643.      Get the long description 
  5644.      string getDescNative() 
  5645.  
  5646.      Get the native language description 
  5647.      string getNetCode() 
  5648.  
  5649.      Get the internet code for this country 
  5650.  
  5651.  
  5652. ΓòÉΓòÉΓòÉ <hidden> 0 ΓòÉΓòÉΓòÉ
  5653.  
  5654.  
  5655. lyris_Country Class 
  5656.  
  5657.      class lyris_Country 
  5658.  
  5659.      For determining what countries exist, and what languages are spoken & 
  5660.      preferred in each country 
  5661.  
  5662.      Defined in: COUNTRY.H 
  5663.  
  5664.   Create a new country 
  5665.  
  5666.       bool createNew() 
  5667.  
  5668.      Creates a new country/language table row.  LCP: CountryCreate 
  5669.      bool updateDatabase() 
  5670.  
  5671.      Save the current country with the data members that have changed.  LCP: 
  5672.      CountryUpdate 
  5673.      bool VerifyFields() 
  5674.  
  5675.      Verify that all required fields are filled in. 
  5676.  
  5677.   Retrieve data from the database 
  5678.      bool fetchAllCountries(vecString &AllCountries) 
  5679.  
  5680.      Fetch a list of all countries.  LCP: CountryAll 
  5681.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5682.  
  5683.      Fetch a paired list of countries and their native language descriptions, 
  5684.      sorted by english description.  LCP: CountryEngNat 
  5685.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5686.  
  5687.      Fetch a paired list of native language country descriptions, and the 
  5688.      english name of the country. 
  5689.      bool retrieveFromNetCode() 
  5690.  
  5691.      Determine the country that uses the currently set NetCode.  Fills all the 
  5692.      other country attributes with values. LCP: CountryAttNetCode 
  5693.      bool retrieveFromDesc() 
  5694.  
  5695.      Determine the country that uses the currently set description.  Fills all 
  5696.      the other country attributes with values.  LCP: CountryAttribs 
  5697.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5698.  
  5699.      Determine the primary language of the current country.  "Desc" must be 
  5700.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5701.      CountryPrimLang 
  5702.      bool getAllLanguages(vecString &Languages) 
  5703.  
  5704.      Determine all the languages used by the current country.  "Desc" must be 
  5705.      already set.  The result is returned in priority order (highest priority 
  5706.      first) in vecString &Languages.  LCP: CountryLanguages 
  5707.      bool getLanguageList(vecString &Languages) 
  5708.  
  5709.      Get a list of all possible languages, in alphabetical order, returned in 
  5710.      vecString &Languages.  LCP: CountryLangList 
  5711.      bool getLanguageListEngNat(mapString &Languages) 
  5712.  
  5713.      Get a map of all possible languages, their native description in 
  5714.      alphabetical order by english description, returned in in vecString 
  5715.      &Languages.  LCP: CountryLangListEngNat 
  5716.  
  5717.   Delete a country 
  5718.      bool deleteFromDesc() 
  5719.  
  5720.      Delete the country that uses the currently set description.  LCP: 
  5721.      CountryDelete 
  5722.  
  5723.   Set data members 
  5724.      bool setAll(mapString &FieldValues) 
  5725.  
  5726.      Sets all the data members of a topic using the mapString which is passed 
  5727.      to it.  Only the fields present in the mapString are updated, the other 
  5728.      fields are untouched.  LCP: CountryUpdate 
  5729.      bool setDesc(const string &DescSetting) 
  5730.  
  5731.      Set the short description 
  5732.      bool setDescLong(const string &DescLongSetting) 
  5733.  
  5734.      Set the long description 
  5735.      bool setDescNative(const string &DescNativeSetting) 
  5736.  
  5737.      Set the native language description 
  5738.      bool setNetCode(const string &NetCodeSetting) 
  5739.  
  5740.      Set the internet code for this country 
  5741.      bool erase() 
  5742.  
  5743.      Sets all the data members to empty 
  5744.  
  5745.   Get data members 
  5746.      bool getAll(mapString &FieldValues) 
  5747.  
  5748.      Return a mapString of all the data members of this topic. The key is the 
  5749.      variable name.  LCP: CountryAttribs 
  5750.      string getDesc() 
  5751.  
  5752.      Get the short description 
  5753.      string getDescLong() 
  5754.  
  5755.      Get the long description 
  5756.      string getDescNative() 
  5757.  
  5758.      Get the native language description 
  5759.      string getNetCode() 
  5760.  
  5761.      Get the internet code for this country 
  5762.  
  5763.  
  5764. ΓòÉΓòÉΓòÉ <hidden> 1 ΓòÉΓòÉΓòÉ
  5765.  
  5766.  
  5767. lyris_Country Class 
  5768.  
  5769.      class lyris_Country 
  5770.  
  5771.      For determining what countries exist, and what languages are spoken & 
  5772.      preferred in each country 
  5773.  
  5774.      Defined in: COUNTRY.H 
  5775.  
  5776.   Create a new country 
  5777.  
  5778.       bool createNew() 
  5779.  
  5780.      Creates a new country/language table row.  LCP: CountryCreate 
  5781.      bool updateDatabase() 
  5782.  
  5783.      Save the current country with the data members that have changed.  LCP: 
  5784.      CountryUpdate 
  5785.      bool VerifyFields() 
  5786.  
  5787.      Verify that all required fields are filled in. 
  5788.  
  5789.   Retrieve data from the database 
  5790.      bool fetchAllCountries(vecString &AllCountries) 
  5791.  
  5792.      Fetch a list of all countries.  LCP: CountryAll 
  5793.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5794.  
  5795.      Fetch a paired list of countries and their native language descriptions, 
  5796.      sorted by english description.  LCP: CountryEngNat 
  5797.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5798.  
  5799.      Fetch a paired list of native language country descriptions, and the 
  5800.      english name of the country. 
  5801.      bool retrieveFromNetCode() 
  5802.  
  5803.      Determine the country that uses the currently set NetCode.  Fills all the 
  5804.      other country attributes with values. LCP: CountryAttNetCode 
  5805.      bool retrieveFromDesc() 
  5806.  
  5807.      Determine the country that uses the currently set description.  Fills all 
  5808.      the other country attributes with values.  LCP: CountryAttribs 
  5809.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5810.  
  5811.      Determine the primary language of the current country.  "Desc" must be 
  5812.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5813.      CountryPrimLang 
  5814.      bool getAllLanguages(vecString &Languages) 
  5815.  
  5816.      Determine all the languages used by the current country.  "Desc" must be 
  5817.      already set.  The result is returned in priority order (highest priority 
  5818.      first) in vecString &Languages.  LCP: CountryLanguages 
  5819.      bool getLanguageList(vecString &Languages) 
  5820.  
  5821.      Get a list of all possible languages, in alphabetical order, returned in 
  5822.      vecString &Languages.  LCP: CountryLangList 
  5823.      bool getLanguageListEngNat(mapString &Languages) 
  5824.  
  5825.      Get a map of all possible languages, their native description in 
  5826.      alphabetical order by english description, returned in in vecString 
  5827.      &Languages.  LCP: CountryLangListEngNat 
  5828.  
  5829.   Delete a country 
  5830.      bool deleteFromDesc() 
  5831.  
  5832.      Delete the country that uses the currently set description.  LCP: 
  5833.      CountryDelete 
  5834.  
  5835.   Set data members 
  5836.      bool setAll(mapString &FieldValues) 
  5837.  
  5838.      Sets all the data members of a topic using the mapString which is passed 
  5839.      to it.  Only the fields present in the mapString are updated, the other 
  5840.      fields are untouched.  LCP: CountryUpdate 
  5841.      bool setDesc(const string &DescSetting) 
  5842.  
  5843.      Set the short description 
  5844.      bool setDescLong(const string &DescLongSetting) 
  5845.  
  5846.      Set the long description 
  5847.      bool setDescNative(const string &DescNativeSetting) 
  5848.  
  5849.      Set the native language description 
  5850.      bool setNetCode(const string &NetCodeSetting) 
  5851.  
  5852.      Set the internet code for this country 
  5853.      bool erase() 
  5854.  
  5855.      Sets all the data members to empty 
  5856.  
  5857.   Get data members 
  5858.      bool getAll(mapString &FieldValues) 
  5859.  
  5860.      Return a mapString of all the data members of this topic. The key is the 
  5861.      variable name.  LCP: CountryAttribs 
  5862.      string getDesc() 
  5863.  
  5864.      Get the short description 
  5865.      string getDescLong() 
  5866.  
  5867.      Get the long description 
  5868.      string getDescNative() 
  5869.  
  5870.      Get the native language description 
  5871.      string getNetCode() 
  5872.  
  5873.      Get the internet code for this country 
  5874.  
  5875.  
  5876. ΓòÉΓòÉΓòÉ <hidden> 2 ΓòÉΓòÉΓòÉ
  5877.  
  5878.  
  5879. lyris_Country Class 
  5880.  
  5881.      class lyris_Country 
  5882.  
  5883.      For determining what countries exist, and what languages are spoken & 
  5884.      preferred in each country 
  5885.  
  5886.      Defined in: COUNTRY.H 
  5887.  
  5888.   Create a new country 
  5889.  
  5890.       bool createNew() 
  5891.  
  5892.      Creates a new country/language table row.  LCP: CountryCreate 
  5893.      bool updateDatabase() 
  5894.  
  5895.      Save the current country with the data members that have changed.  LCP: 
  5896.      CountryUpdate 
  5897.      bool VerifyFields() 
  5898.  
  5899.      Verify that all required fields are filled in. 
  5900.  
  5901.   Retrieve data from the database 
  5902.      bool fetchAllCountries(vecString &AllCountries) 
  5903.  
  5904.      Fetch a list of all countries.  LCP: CountryAll 
  5905.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  5906.  
  5907.      Fetch a paired list of countries and their native language descriptions, 
  5908.      sorted by english description.  LCP: CountryEngNat 
  5909.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  5910.  
  5911.      Fetch a paired list of native language country descriptions, and the 
  5912.      english name of the country. 
  5913.      bool retrieveFromNetCode() 
  5914.  
  5915.      Determine the country that uses the currently set NetCode.  Fills all the 
  5916.      other country attributes with values. LCP: CountryAttNetCode 
  5917.      bool retrieveFromDesc() 
  5918.  
  5919.      Determine the country that uses the currently set description.  Fills all 
  5920.      the other country attributes with values.  LCP: CountryAttribs 
  5921.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  5922.  
  5923.      Determine the primary language of the current country.  "Desc" must be 
  5924.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  5925.      CountryPrimLang 
  5926.      bool getAllLanguages(vecString &Languages) 
  5927.  
  5928.      Determine all the languages used by the current country.  "Desc" must be 
  5929.      already set.  The result is returned in priority order (highest priority 
  5930.      first) in vecString &Languages.  LCP: CountryLanguages 
  5931.      bool getLanguageList(vecString &Languages) 
  5932.  
  5933.      Get a list of all possible languages, in alphabetical order, returned in 
  5934.      vecString &Languages.  LCP: CountryLangList 
  5935.      bool getLanguageListEngNat(mapString &Languages) 
  5936.  
  5937.      Get a map of all possible languages, their native description in 
  5938.      alphabetical order by english description, returned in in vecString 
  5939.      &Languages.  LCP: CountryLangListEngNat 
  5940.  
  5941.   Delete a country 
  5942.      bool deleteFromDesc() 
  5943.  
  5944.      Delete the country that uses the currently set description.  LCP: 
  5945.      CountryDelete 
  5946.  
  5947.   Set data members 
  5948.      bool setAll(mapString &FieldValues) 
  5949.  
  5950.      Sets all the data members of a topic using the mapString which is passed 
  5951.      to it.  Only the fields present in the mapString are updated, the other 
  5952.      fields are untouched.  LCP: CountryUpdate 
  5953.      bool setDesc(const string &DescSetting) 
  5954.  
  5955.      Set the short description 
  5956.      bool setDescLong(const string &DescLongSetting) 
  5957.  
  5958.      Set the long description 
  5959.      bool setDescNative(const string &DescNativeSetting) 
  5960.  
  5961.      Set the native language description 
  5962.      bool setNetCode(const string &NetCodeSetting) 
  5963.  
  5964.      Set the internet code for this country 
  5965.      bool erase() 
  5966.  
  5967.      Sets all the data members to empty 
  5968.  
  5969.   Get data members 
  5970.      bool getAll(mapString &FieldValues) 
  5971.  
  5972.      Return a mapString of all the data members of this topic. The key is the 
  5973.      variable name.  LCP: CountryAttribs 
  5974.      string getDesc() 
  5975.  
  5976.      Get the short description 
  5977.      string getDescLong() 
  5978.  
  5979.      Get the long description 
  5980.      string getDescNative() 
  5981.  
  5982.      Get the native language description 
  5983.      string getNetCode() 
  5984.  
  5985.      Get the internet code for this country 
  5986.  
  5987.  
  5988. ΓòÉΓòÉΓòÉ <hidden> 3 ΓòÉΓòÉΓòÉ
  5989.  
  5990.  
  5991. lyris_Country Class 
  5992.  
  5993.      class lyris_Country 
  5994.  
  5995.      For determining what countries exist, and what languages are spoken & 
  5996.      preferred in each country 
  5997.  
  5998.      Defined in: COUNTRY.H 
  5999.  
  6000.   Create a new country 
  6001.  
  6002.       bool createNew() 
  6003.  
  6004.      Creates a new country/language table row.  LCP: CountryCreate 
  6005.      bool updateDatabase() 
  6006.  
  6007.      Save the current country with the data members that have changed.  LCP: 
  6008.      CountryUpdate 
  6009.      bool VerifyFields() 
  6010.  
  6011.      Verify that all required fields are filled in. 
  6012.  
  6013.   Retrieve data from the database 
  6014.      bool fetchAllCountries(vecString &AllCountries) 
  6015.  
  6016.      Fetch a list of all countries.  LCP: CountryAll 
  6017.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6018.  
  6019.      Fetch a paired list of countries and their native language descriptions, 
  6020.      sorted by english description.  LCP: CountryEngNat 
  6021.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6022.  
  6023.      Fetch a paired list of native language country descriptions, and the 
  6024.      english name of the country. 
  6025.      bool retrieveFromNetCode() 
  6026.  
  6027.      Determine the country that uses the currently set NetCode.  Fills all the 
  6028.      other country attributes with values. LCP: CountryAttNetCode 
  6029.      bool retrieveFromDesc() 
  6030.  
  6031.      Determine the country that uses the currently set description.  Fills all 
  6032.      the other country attributes with values.  LCP: CountryAttribs 
  6033.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6034.  
  6035.      Determine the primary language of the current country.  "Desc" must be 
  6036.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6037.      CountryPrimLang 
  6038.      bool getAllLanguages(vecString &Languages) 
  6039.  
  6040.      Determine all the languages used by the current country.  "Desc" must be 
  6041.      already set.  The result is returned in priority order (highest priority 
  6042.      first) in vecString &Languages.  LCP: CountryLanguages 
  6043.      bool getLanguageList(vecString &Languages) 
  6044.  
  6045.      Get a list of all possible languages, in alphabetical order, returned in 
  6046.      vecString &Languages.  LCP: CountryLangList 
  6047.      bool getLanguageListEngNat(mapString &Languages) 
  6048.  
  6049.      Get a map of all possible languages, their native description in 
  6050.      alphabetical order by english description, returned in in vecString 
  6051.      &Languages.  LCP: CountryLangListEngNat 
  6052.  
  6053.   Delete a country 
  6054.      bool deleteFromDesc() 
  6055.  
  6056.      Delete the country that uses the currently set description.  LCP: 
  6057.      CountryDelete 
  6058.  
  6059.   Set data members 
  6060.      bool setAll(mapString &FieldValues) 
  6061.  
  6062.      Sets all the data members of a topic using the mapString which is passed 
  6063.      to it.  Only the fields present in the mapString are updated, the other 
  6064.      fields are untouched.  LCP: CountryUpdate 
  6065.      bool setDesc(const string &DescSetting) 
  6066.  
  6067.      Set the short description 
  6068.      bool setDescLong(const string &DescLongSetting) 
  6069.  
  6070.      Set the long description 
  6071.      bool setDescNative(const string &DescNativeSetting) 
  6072.  
  6073.      Set the native language description 
  6074.      bool setNetCode(const string &NetCodeSetting) 
  6075.  
  6076.      Set the internet code for this country 
  6077.      bool erase() 
  6078.  
  6079.      Sets all the data members to empty 
  6080.  
  6081.   Get data members 
  6082.      bool getAll(mapString &FieldValues) 
  6083.  
  6084.      Return a mapString of all the data members of this topic. The key is the 
  6085.      variable name.  LCP: CountryAttribs 
  6086.      string getDesc() 
  6087.  
  6088.      Get the short description 
  6089.      string getDescLong() 
  6090.  
  6091.      Get the long description 
  6092.      string getDescNative() 
  6093.  
  6094.      Get the native language description 
  6095.      string getNetCode() 
  6096.  
  6097.      Get the internet code for this country 
  6098.  
  6099.  
  6100. ΓòÉΓòÉΓòÉ <hidden> 4 ΓòÉΓòÉΓòÉ
  6101.  
  6102.  
  6103. lyris_Country Class 
  6104.  
  6105.      class lyris_Country 
  6106.  
  6107.      For determining what countries exist, and what languages are spoken & 
  6108.      preferred in each country 
  6109.  
  6110.      Defined in: COUNTRY.H 
  6111.  
  6112.   Create a new country 
  6113.  
  6114.       bool createNew() 
  6115.  
  6116.      Creates a new country/language table row.  LCP: CountryCreate 
  6117.      bool updateDatabase() 
  6118.  
  6119.      Save the current country with the data members that have changed.  LCP: 
  6120.      CountryUpdate 
  6121.      bool VerifyFields() 
  6122.  
  6123.      Verify that all required fields are filled in. 
  6124.  
  6125.   Retrieve data from the database 
  6126.      bool fetchAllCountries(vecString &AllCountries) 
  6127.  
  6128.      Fetch a list of all countries.  LCP: CountryAll 
  6129.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6130.  
  6131.      Fetch a paired list of countries and their native language descriptions, 
  6132.      sorted by english description.  LCP: CountryEngNat 
  6133.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6134.  
  6135.      Fetch a paired list of native language country descriptions, and the 
  6136.      english name of the country. 
  6137.      bool retrieveFromNetCode() 
  6138.  
  6139.      Determine the country that uses the currently set NetCode.  Fills all the 
  6140.      other country attributes with values. LCP: CountryAttNetCode 
  6141.      bool retrieveFromDesc() 
  6142.  
  6143.      Determine the country that uses the currently set description.  Fills all 
  6144.      the other country attributes with values.  LCP: CountryAttribs 
  6145.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6146.  
  6147.      Determine the primary language of the current country.  "Desc" must be 
  6148.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6149.      CountryPrimLang 
  6150.      bool getAllLanguages(vecString &Languages) 
  6151.  
  6152.      Determine all the languages used by the current country.  "Desc" must be 
  6153.      already set.  The result is returned in priority order (highest priority 
  6154.      first) in vecString &Languages.  LCP: CountryLanguages 
  6155.      bool getLanguageList(vecString &Languages) 
  6156.  
  6157.      Get a list of all possible languages, in alphabetical order, returned in 
  6158.      vecString &Languages.  LCP: CountryLangList 
  6159.      bool getLanguageListEngNat(mapString &Languages) 
  6160.  
  6161.      Get a map of all possible languages, their native description in 
  6162.      alphabetical order by english description, returned in in vecString 
  6163.      &Languages.  LCP: CountryLangListEngNat 
  6164.  
  6165.   Delete a country 
  6166.      bool deleteFromDesc() 
  6167.  
  6168.      Delete the country that uses the currently set description.  LCP: 
  6169.      CountryDelete 
  6170.  
  6171.   Set data members 
  6172.      bool setAll(mapString &FieldValues) 
  6173.  
  6174.      Sets all the data members of a topic using the mapString which is passed 
  6175.      to it.  Only the fields present in the mapString are updated, the other 
  6176.      fields are untouched.  LCP: CountryUpdate 
  6177.      bool setDesc(const string &DescSetting) 
  6178.  
  6179.      Set the short description 
  6180.      bool setDescLong(const string &DescLongSetting) 
  6181.  
  6182.      Set the long description 
  6183.      bool setDescNative(const string &DescNativeSetting) 
  6184.  
  6185.      Set the native language description 
  6186.      bool setNetCode(const string &NetCodeSetting) 
  6187.  
  6188.      Set the internet code for this country 
  6189.      bool erase() 
  6190.  
  6191.      Sets all the data members to empty 
  6192.  
  6193.   Get data members 
  6194.      bool getAll(mapString &FieldValues) 
  6195.  
  6196.      Return a mapString of all the data members of this topic. The key is the 
  6197.      variable name.  LCP: CountryAttribs 
  6198.      string getDesc() 
  6199.  
  6200.      Get the short description 
  6201.      string getDescLong() 
  6202.  
  6203.      Get the long description 
  6204.      string getDescNative() 
  6205.  
  6206.      Get the native language description 
  6207.      string getNetCode() 
  6208.  
  6209.      Get the internet code for this country 
  6210.  
  6211.  
  6212. ΓòÉΓòÉΓòÉ <hidden> 5 ΓòÉΓòÉΓòÉ
  6213.  
  6214.  
  6215. lyris_Country Class 
  6216.  
  6217.      class lyris_Country 
  6218.  
  6219.      For determining what countries exist, and what languages are spoken & 
  6220.      preferred in each country 
  6221.  
  6222.      Defined in: COUNTRY.H 
  6223.  
  6224.   Create a new country 
  6225.  
  6226.       bool createNew() 
  6227.  
  6228.      Creates a new country/language table row.  LCP: CountryCreate 
  6229.      bool updateDatabase() 
  6230.  
  6231.      Save the current country with the data members that have changed.  LCP: 
  6232.      CountryUpdate 
  6233.      bool VerifyFields() 
  6234.  
  6235.      Verify that all required fields are filled in. 
  6236.  
  6237.   Retrieve data from the database 
  6238.      bool fetchAllCountries(vecString &AllCountries) 
  6239.  
  6240.      Fetch a list of all countries.  LCP: CountryAll 
  6241.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6242.  
  6243.      Fetch a paired list of countries and their native language descriptions, 
  6244.      sorted by english description.  LCP: CountryEngNat 
  6245.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6246.  
  6247.      Fetch a paired list of native language country descriptions, and the 
  6248.      english name of the country. 
  6249.      bool retrieveFromNetCode() 
  6250.  
  6251.      Determine the country that uses the currently set NetCode.  Fills all the 
  6252.      other country attributes with values. LCP: CountryAttNetCode 
  6253.      bool retrieveFromDesc() 
  6254.  
  6255.      Determine the country that uses the currently set description.  Fills all 
  6256.      the other country attributes with values.  LCP: CountryAttribs 
  6257.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6258.  
  6259.      Determine the primary language of the current country.  "Desc" must be 
  6260.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6261.      CountryPrimLang 
  6262.      bool getAllLanguages(vecString &Languages) 
  6263.  
  6264.      Determine all the languages used by the current country.  "Desc" must be 
  6265.      already set.  The result is returned in priority order (highest priority 
  6266.      first) in vecString &Languages.  LCP: CountryLanguages 
  6267.      bool getLanguageList(vecString &Languages) 
  6268.  
  6269.      Get a list of all possible languages, in alphabetical order, returned in 
  6270.      vecString &Languages.  LCP: CountryLangList 
  6271.      bool getLanguageListEngNat(mapString &Languages) 
  6272.  
  6273.      Get a map of all possible languages, their native description in 
  6274.      alphabetical order by english description, returned in in vecString 
  6275.      &Languages.  LCP: CountryLangListEngNat 
  6276.  
  6277.   Delete a country 
  6278.      bool deleteFromDesc() 
  6279.  
  6280.      Delete the country that uses the currently set description.  LCP: 
  6281.      CountryDelete 
  6282.  
  6283.   Set data members 
  6284.      bool setAll(mapString &FieldValues) 
  6285.  
  6286.      Sets all the data members of a topic using the mapString which is passed 
  6287.      to it.  Only the fields present in the mapString are updated, the other 
  6288.      fields are untouched.  LCP: CountryUpdate 
  6289.      bool setDesc(const string &DescSetting) 
  6290.  
  6291.      Set the short description 
  6292.      bool setDescLong(const string &DescLongSetting) 
  6293.  
  6294.      Set the long description 
  6295.      bool setDescNative(const string &DescNativeSetting) 
  6296.  
  6297.      Set the native language description 
  6298.      bool setNetCode(const string &NetCodeSetting) 
  6299.  
  6300.      Set the internet code for this country 
  6301.      bool erase() 
  6302.  
  6303.      Sets all the data members to empty 
  6304.  
  6305.   Get data members 
  6306.      bool getAll(mapString &FieldValues) 
  6307.  
  6308.      Return a mapString of all the data members of this topic. The key is the 
  6309.      variable name.  LCP: CountryAttribs 
  6310.      string getDesc() 
  6311.  
  6312.      Get the short description 
  6313.      string getDescLong() 
  6314.  
  6315.      Get the long description 
  6316.      string getDescNative() 
  6317.  
  6318.      Get the native language description 
  6319.      string getNetCode() 
  6320.  
  6321.      Get the internet code for this country 
  6322.  
  6323.  
  6324. ΓòÉΓòÉΓòÉ <hidden> 6 ΓòÉΓòÉΓòÉ
  6325.  
  6326.  
  6327. lyris_Country Class 
  6328.  
  6329.      class lyris_Country 
  6330.  
  6331.      For determining what countries exist, and what languages are spoken & 
  6332.      preferred in each country 
  6333.  
  6334.      Defined in: COUNTRY.H 
  6335.  
  6336.   Create a new country 
  6337.  
  6338.       bool createNew() 
  6339.  
  6340.      Creates a new country/language table row.  LCP: CountryCreate 
  6341.      bool updateDatabase() 
  6342.  
  6343.      Save the current country with the data members that have changed.  LCP: 
  6344.      CountryUpdate 
  6345.      bool VerifyFields() 
  6346.  
  6347.      Verify that all required fields are filled in. 
  6348.  
  6349.   Retrieve data from the database 
  6350.      bool fetchAllCountries(vecString &AllCountries) 
  6351.  
  6352.      Fetch a list of all countries.  LCP: CountryAll 
  6353.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6354.  
  6355.      Fetch a paired list of countries and their native language descriptions, 
  6356.      sorted by english description.  LCP: CountryEngNat 
  6357.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6358.  
  6359.      Fetch a paired list of native language country descriptions, and the 
  6360.      english name of the country. 
  6361.      bool retrieveFromNetCode() 
  6362.  
  6363.      Determine the country that uses the currently set NetCode.  Fills all the 
  6364.      other country attributes with values. LCP: CountryAttNetCode 
  6365.      bool retrieveFromDesc() 
  6366.  
  6367.      Determine the country that uses the currently set description.  Fills all 
  6368.      the other country attributes with values.  LCP: CountryAttribs 
  6369.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6370.  
  6371.      Determine the primary language of the current country.  "Desc" must be 
  6372.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6373.      CountryPrimLang 
  6374.      bool getAllLanguages(vecString &Languages) 
  6375.  
  6376.      Determine all the languages used by the current country.  "Desc" must be 
  6377.      already set.  The result is returned in priority order (highest priority 
  6378.      first) in vecString &Languages.  LCP: CountryLanguages 
  6379.      bool getLanguageList(vecString &Languages) 
  6380.  
  6381.      Get a list of all possible languages, in alphabetical order, returned in 
  6382.      vecString &Languages.  LCP: CountryLangList 
  6383.      bool getLanguageListEngNat(mapString &Languages) 
  6384.  
  6385.      Get a map of all possible languages, their native description in 
  6386.      alphabetical order by english description, returned in in vecString 
  6387.      &Languages.  LCP: CountryLangListEngNat 
  6388.  
  6389.   Delete a country 
  6390.      bool deleteFromDesc() 
  6391.  
  6392.      Delete the country that uses the currently set description.  LCP: 
  6393.      CountryDelete 
  6394.  
  6395.   Set data members 
  6396.      bool setAll(mapString &FieldValues) 
  6397.  
  6398.      Sets all the data members of a topic using the mapString which is passed 
  6399.      to it.  Only the fields present in the mapString are updated, the other 
  6400.      fields are untouched.  LCP: CountryUpdate 
  6401.      bool setDesc(const string &DescSetting) 
  6402.  
  6403.      Set the short description 
  6404.      bool setDescLong(const string &DescLongSetting) 
  6405.  
  6406.      Set the long description 
  6407.      bool setDescNative(const string &DescNativeSetting) 
  6408.  
  6409.      Set the native language description 
  6410.      bool setNetCode(const string &NetCodeSetting) 
  6411.  
  6412.      Set the internet code for this country 
  6413.      bool erase() 
  6414.  
  6415.      Sets all the data members to empty 
  6416.  
  6417.   Get data members 
  6418.      bool getAll(mapString &FieldValues) 
  6419.  
  6420.      Return a mapString of all the data members of this topic. The key is the 
  6421.      variable name.  LCP: CountryAttribs 
  6422.      string getDesc() 
  6423.  
  6424.      Get the short description 
  6425.      string getDescLong() 
  6426.  
  6427.      Get the long description 
  6428.      string getDescNative() 
  6429.  
  6430.      Get the native language description 
  6431.      string getNetCode() 
  6432.  
  6433.      Get the internet code for this country 
  6434.  
  6435.  
  6436. ΓòÉΓòÉΓòÉ <hidden> 7 ΓòÉΓòÉΓòÉ
  6437.  
  6438.  
  6439. lyris_Country Class 
  6440.  
  6441.      class lyris_Country 
  6442.  
  6443.      For determining what countries exist, and what languages are spoken & 
  6444.      preferred in each country 
  6445.  
  6446.      Defined in: COUNTRY.H 
  6447.  
  6448.   Create a new country 
  6449.  
  6450.       bool createNew() 
  6451.  
  6452.      Creates a new country/language table row.  LCP: CountryCreate 
  6453.      bool updateDatabase() 
  6454.  
  6455.      Save the current country with the data members that have changed.  LCP: 
  6456.      CountryUpdate 
  6457.      bool VerifyFields() 
  6458.  
  6459.      Verify that all required fields are filled in. 
  6460.  
  6461.   Retrieve data from the database 
  6462.      bool fetchAllCountries(vecString &AllCountries) 
  6463.  
  6464.      Fetch a list of all countries.  LCP: CountryAll 
  6465.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6466.  
  6467.      Fetch a paired list of countries and their native language descriptions, 
  6468.      sorted by english description.  LCP: CountryEngNat 
  6469.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6470.  
  6471.      Fetch a paired list of native language country descriptions, and the 
  6472.      english name of the country. 
  6473.      bool retrieveFromNetCode() 
  6474.  
  6475.      Determine the country that uses the currently set NetCode.  Fills all the 
  6476.      other country attributes with values. LCP: CountryAttNetCode 
  6477.      bool retrieveFromDesc() 
  6478.  
  6479.      Determine the country that uses the currently set description.  Fills all 
  6480.      the other country attributes with values.  LCP: CountryAttribs 
  6481.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6482.  
  6483.      Determine the primary language of the current country.  "Desc" must be 
  6484.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6485.      CountryPrimLang 
  6486.      bool getAllLanguages(vecString &Languages) 
  6487.  
  6488.      Determine all the languages used by the current country.  "Desc" must be 
  6489.      already set.  The result is returned in priority order (highest priority 
  6490.      first) in vecString &Languages.  LCP: CountryLanguages 
  6491.      bool getLanguageList(vecString &Languages) 
  6492.  
  6493.      Get a list of all possible languages, in alphabetical order, returned in 
  6494.      vecString &Languages.  LCP: CountryLangList 
  6495.      bool getLanguageListEngNat(mapString &Languages) 
  6496.  
  6497.      Get a map of all possible languages, their native description in 
  6498.      alphabetical order by english description, returned in in vecString 
  6499.      &Languages.  LCP: CountryLangListEngNat 
  6500.  
  6501.   Delete a country 
  6502.      bool deleteFromDesc() 
  6503.  
  6504.      Delete the country that uses the currently set description.  LCP: 
  6505.      CountryDelete 
  6506.  
  6507.   Set data members 
  6508.      bool setAll(mapString &FieldValues) 
  6509.  
  6510.      Sets all the data members of a topic using the mapString which is passed 
  6511.      to it.  Only the fields present in the mapString are updated, the other 
  6512.      fields are untouched.  LCP: CountryUpdate 
  6513.      bool setDesc(const string &DescSetting) 
  6514.  
  6515.      Set the short description 
  6516.      bool setDescLong(const string &DescLongSetting) 
  6517.  
  6518.      Set the long description 
  6519.      bool setDescNative(const string &DescNativeSetting) 
  6520.  
  6521.      Set the native language description 
  6522.      bool setNetCode(const string &NetCodeSetting) 
  6523.  
  6524.      Set the internet code for this country 
  6525.      bool erase() 
  6526.  
  6527.      Sets all the data members to empty 
  6528.  
  6529.   Get data members 
  6530.      bool getAll(mapString &FieldValues) 
  6531.  
  6532.      Return a mapString of all the data members of this topic. The key is the 
  6533.      variable name.  LCP: CountryAttribs 
  6534.      string getDesc() 
  6535.  
  6536.      Get the short description 
  6537.      string getDescLong() 
  6538.  
  6539.      Get the long description 
  6540.      string getDescNative() 
  6541.  
  6542.      Get the native language description 
  6543.      string getNetCode() 
  6544.  
  6545.      Get the internet code for this country 
  6546.  
  6547.  
  6548. ΓòÉΓòÉΓòÉ <hidden> 8 ΓòÉΓòÉΓòÉ
  6549.  
  6550.  
  6551. lyris_Country Class 
  6552.  
  6553.      class lyris_Country 
  6554.  
  6555.      For determining what countries exist, and what languages are spoken & 
  6556.      preferred in each country 
  6557.  
  6558.      Defined in: COUNTRY.H 
  6559.  
  6560.   Create a new country 
  6561.  
  6562.       bool createNew() 
  6563.  
  6564.      Creates a new country/language table row.  LCP: CountryCreate 
  6565.      bool updateDatabase() 
  6566.  
  6567.      Save the current country with the data members that have changed.  LCP: 
  6568.      CountryUpdate 
  6569.      bool VerifyFields() 
  6570.  
  6571.      Verify that all required fields are filled in. 
  6572.  
  6573.   Retrieve data from the database 
  6574.      bool fetchAllCountries(vecString &AllCountries) 
  6575.  
  6576.      Fetch a list of all countries.  LCP: CountryAll 
  6577.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6578.  
  6579.      Fetch a paired list of countries and their native language descriptions, 
  6580.      sorted by english description.  LCP: CountryEngNat 
  6581.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6582.  
  6583.      Fetch a paired list of native language country descriptions, and the 
  6584.      english name of the country. 
  6585.      bool retrieveFromNetCode() 
  6586.  
  6587.      Determine the country that uses the currently set NetCode.  Fills all the 
  6588.      other country attributes with values. LCP: CountryAttNetCode 
  6589.      bool retrieveFromDesc() 
  6590.  
  6591.      Determine the country that uses the currently set description.  Fills all 
  6592.      the other country attributes with values.  LCP: CountryAttribs 
  6593.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6594.  
  6595.      Determine the primary language of the current country.  "Desc" must be 
  6596.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6597.      CountryPrimLang 
  6598.      bool getAllLanguages(vecString &Languages) 
  6599.  
  6600.      Determine all the languages used by the current country.  "Desc" must be 
  6601.      already set.  The result is returned in priority order (highest priority 
  6602.      first) in vecString &Languages.  LCP: CountryLanguages 
  6603.      bool getLanguageList(vecString &Languages) 
  6604.  
  6605.      Get a list of all possible languages, in alphabetical order, returned in 
  6606.      vecString &Languages.  LCP: CountryLangList 
  6607.      bool getLanguageListEngNat(mapString &Languages) 
  6608.  
  6609.      Get a map of all possible languages, their native description in 
  6610.      alphabetical order by english description, returned in in vecString 
  6611.      &Languages.  LCP: CountryLangListEngNat 
  6612.  
  6613.   Delete a country 
  6614.      bool deleteFromDesc() 
  6615.  
  6616.      Delete the country that uses the currently set description.  LCP: 
  6617.      CountryDelete 
  6618.  
  6619.   Set data members 
  6620.      bool setAll(mapString &FieldValues) 
  6621.  
  6622.      Sets all the data members of a topic using the mapString which is passed 
  6623.      to it.  Only the fields present in the mapString are updated, the other 
  6624.      fields are untouched.  LCP: CountryUpdate 
  6625.      bool setDesc(const string &DescSetting) 
  6626.  
  6627.      Set the short description 
  6628.      bool setDescLong(const string &DescLongSetting) 
  6629.  
  6630.      Set the long description 
  6631.      bool setDescNative(const string &DescNativeSetting) 
  6632.  
  6633.      Set the native language description 
  6634.      bool setNetCode(const string &NetCodeSetting) 
  6635.  
  6636.      Set the internet code for this country 
  6637.      bool erase() 
  6638.  
  6639.      Sets all the data members to empty 
  6640.  
  6641.   Get data members 
  6642.      bool getAll(mapString &FieldValues) 
  6643.  
  6644.      Return a mapString of all the data members of this topic. The key is the 
  6645.      variable name.  LCP: CountryAttribs 
  6646.      string getDesc() 
  6647.  
  6648.      Get the short description 
  6649.      string getDescLong() 
  6650.  
  6651.      Get the long description 
  6652.      string getDescNative() 
  6653.  
  6654.      Get the native language description 
  6655.      string getNetCode() 
  6656.  
  6657.      Get the internet code for this country 
  6658.  
  6659.  
  6660. ΓòÉΓòÉΓòÉ <hidden> 9 ΓòÉΓòÉΓòÉ
  6661.  
  6662.  
  6663. lyris_Country Class 
  6664.  
  6665.      class lyris_Country 
  6666.  
  6667.      For determining what countries exist, and what languages are spoken & 
  6668.      preferred in each country 
  6669.  
  6670.      Defined in: COUNTRY.H 
  6671.  
  6672.   Create a new country 
  6673.  
  6674.       bool createNew() 
  6675.  
  6676.      Creates a new country/language table row.  LCP: CountryCreate 
  6677.      bool updateDatabase() 
  6678.  
  6679.      Save the current country with the data members that have changed.  LCP: 
  6680.      CountryUpdate 
  6681.      bool VerifyFields() 
  6682.  
  6683.      Verify that all required fields are filled in. 
  6684.  
  6685.   Retrieve data from the database 
  6686.      bool fetchAllCountries(vecString &AllCountries) 
  6687.  
  6688.      Fetch a list of all countries.  LCP: CountryAll 
  6689.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6690.  
  6691.      Fetch a paired list of countries and their native language descriptions, 
  6692.      sorted by english description.  LCP: CountryEngNat 
  6693.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6694.  
  6695.      Fetch a paired list of native language country descriptions, and the 
  6696.      english name of the country. 
  6697.      bool retrieveFromNetCode() 
  6698.  
  6699.      Determine the country that uses the currently set NetCode.  Fills all the 
  6700.      other country attributes with values. LCP: CountryAttNetCode 
  6701.      bool retrieveFromDesc() 
  6702.  
  6703.      Determine the country that uses the currently set description.  Fills all 
  6704.      the other country attributes with values.  LCP: CountryAttribs 
  6705.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6706.  
  6707.      Determine the primary language of the current country.  "Desc" must be 
  6708.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6709.      CountryPrimLang 
  6710.      bool getAllLanguages(vecString &Languages) 
  6711.  
  6712.      Determine all the languages used by the current country.  "Desc" must be 
  6713.      already set.  The result is returned in priority order (highest priority 
  6714.      first) in vecString &Languages.  LCP: CountryLanguages 
  6715.      bool getLanguageList(vecString &Languages) 
  6716.  
  6717.      Get a list of all possible languages, in alphabetical order, returned in 
  6718.      vecString &Languages.  LCP: CountryLangList 
  6719.      bool getLanguageListEngNat(mapString &Languages) 
  6720.  
  6721.      Get a map of all possible languages, their native description in 
  6722.      alphabetical order by english description, returned in in vecString 
  6723.      &Languages.  LCP: CountryLangListEngNat 
  6724.  
  6725.   Delete a country 
  6726.      bool deleteFromDesc() 
  6727.  
  6728.      Delete the country that uses the currently set description.  LCP: 
  6729.      CountryDelete 
  6730.  
  6731.   Set data members 
  6732.      bool setAll(mapString &FieldValues) 
  6733.  
  6734.      Sets all the data members of a topic using the mapString which is passed 
  6735.      to it.  Only the fields present in the mapString are updated, the other 
  6736.      fields are untouched.  LCP: CountryUpdate 
  6737.      bool setDesc(const string &DescSetting) 
  6738.  
  6739.      Set the short description 
  6740.      bool setDescLong(const string &DescLongSetting) 
  6741.  
  6742.      Set the long description 
  6743.      bool setDescNative(const string &DescNativeSetting) 
  6744.  
  6745.      Set the native language description 
  6746.      bool setNetCode(const string &NetCodeSetting) 
  6747.  
  6748.      Set the internet code for this country 
  6749.      bool erase() 
  6750.  
  6751.      Sets all the data members to empty 
  6752.  
  6753.   Get data members 
  6754.      bool getAll(mapString &FieldValues) 
  6755.  
  6756.      Return a mapString of all the data members of this topic. The key is the 
  6757.      variable name.  LCP: CountryAttribs 
  6758.      string getDesc() 
  6759.  
  6760.      Get the short description 
  6761.      string getDescLong() 
  6762.  
  6763.      Get the long description 
  6764.      string getDescNative() 
  6765.  
  6766.      Get the native language description 
  6767.      string getNetCode() 
  6768.  
  6769.      Get the internet code for this country 
  6770.  
  6771.  
  6772. ΓòÉΓòÉΓòÉ <hidden> : ΓòÉΓòÉΓòÉ
  6773.  
  6774.  
  6775. lyris_Country Class 
  6776.  
  6777.      class lyris_Country 
  6778.  
  6779.      For determining what countries exist, and what languages are spoken & 
  6780.      preferred in each country 
  6781.  
  6782.      Defined in: COUNTRY.H 
  6783.  
  6784.   Create a new country 
  6785.  
  6786.       bool createNew() 
  6787.  
  6788.      Creates a new country/language table row.  LCP: CountryCreate 
  6789.      bool updateDatabase() 
  6790.  
  6791.      Save the current country with the data members that have changed.  LCP: 
  6792.      CountryUpdate 
  6793.      bool VerifyFields() 
  6794.  
  6795.      Verify that all required fields are filled in. 
  6796.  
  6797.   Retrieve data from the database 
  6798.      bool fetchAllCountries(vecString &AllCountries) 
  6799.  
  6800.      Fetch a list of all countries.  LCP: CountryAll 
  6801.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6802.  
  6803.      Fetch a paired list of countries and their native language descriptions, 
  6804.      sorted by english description.  LCP: CountryEngNat 
  6805.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6806.  
  6807.      Fetch a paired list of native language country descriptions, and the 
  6808.      english name of the country. 
  6809.      bool retrieveFromNetCode() 
  6810.  
  6811.      Determine the country that uses the currently set NetCode.  Fills all the 
  6812.      other country attributes with values. LCP: CountryAttNetCode 
  6813.      bool retrieveFromDesc() 
  6814.  
  6815.      Determine the country that uses the currently set description.  Fills all 
  6816.      the other country attributes with values.  LCP: CountryAttribs 
  6817.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6818.  
  6819.      Determine the primary language of the current country.  "Desc" must be 
  6820.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6821.      CountryPrimLang 
  6822.      bool getAllLanguages(vecString &Languages) 
  6823.  
  6824.      Determine all the languages used by the current country.  "Desc" must be 
  6825.      already set.  The result is returned in priority order (highest priority 
  6826.      first) in vecString &Languages.  LCP: CountryLanguages 
  6827.      bool getLanguageList(vecString &Languages) 
  6828.  
  6829.      Get a list of all possible languages, in alphabetical order, returned in 
  6830.      vecString &Languages.  LCP: CountryLangList 
  6831.      bool getLanguageListEngNat(mapString &Languages) 
  6832.  
  6833.      Get a map of all possible languages, their native description in 
  6834.      alphabetical order by english description, returned in in vecString 
  6835.      &Languages.  LCP: CountryLangListEngNat 
  6836.  
  6837.   Delete a country 
  6838.      bool deleteFromDesc() 
  6839.  
  6840.      Delete the country that uses the currently set description.  LCP: 
  6841.      CountryDelete 
  6842.  
  6843.   Set data members 
  6844.      bool setAll(mapString &FieldValues) 
  6845.  
  6846.      Sets all the data members of a topic using the mapString which is passed 
  6847.      to it.  Only the fields present in the mapString are updated, the other 
  6848.      fields are untouched.  LCP: CountryUpdate 
  6849.      bool setDesc(const string &DescSetting) 
  6850.  
  6851.      Set the short description 
  6852.      bool setDescLong(const string &DescLongSetting) 
  6853.  
  6854.      Set the long description 
  6855.      bool setDescNative(const string &DescNativeSetting) 
  6856.  
  6857.      Set the native language description 
  6858.      bool setNetCode(const string &NetCodeSetting) 
  6859.  
  6860.      Set the internet code for this country 
  6861.      bool erase() 
  6862.  
  6863.      Sets all the data members to empty 
  6864.  
  6865.   Get data members 
  6866.      bool getAll(mapString &FieldValues) 
  6867.  
  6868.      Return a mapString of all the data members of this topic. The key is the 
  6869.      variable name.  LCP: CountryAttribs 
  6870.      string getDesc() 
  6871.  
  6872.      Get the short description 
  6873.      string getDescLong() 
  6874.  
  6875.      Get the long description 
  6876.      string getDescNative() 
  6877.  
  6878.      Get the native language description 
  6879.      string getNetCode() 
  6880.  
  6881.      Get the internet code for this country 
  6882.  
  6883.  
  6884. ΓòÉΓòÉΓòÉ <hidden> ; ΓòÉΓòÉΓòÉ
  6885.  
  6886.  
  6887. lyris_Country Class 
  6888.  
  6889.      class lyris_Country 
  6890.  
  6891.      For determining what countries exist, and what languages are spoken & 
  6892.      preferred in each country 
  6893.  
  6894.      Defined in: COUNTRY.H 
  6895.  
  6896.   Create a new country 
  6897.  
  6898.       bool createNew() 
  6899.  
  6900.      Creates a new country/language table row.  LCP: CountryCreate 
  6901.      bool updateDatabase() 
  6902.  
  6903.      Save the current country with the data members that have changed.  LCP: 
  6904.      CountryUpdate 
  6905.      bool VerifyFields() 
  6906.  
  6907.      Verify that all required fields are filled in. 
  6908.  
  6909.   Retrieve data from the database 
  6910.      bool fetchAllCountries(vecString &AllCountries) 
  6911.  
  6912.      Fetch a list of all countries.  LCP: CountryAll 
  6913.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  6914.  
  6915.      Fetch a paired list of countries and their native language descriptions, 
  6916.      sorted by english description.  LCP: CountryEngNat 
  6917.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  6918.  
  6919.      Fetch a paired list of native language country descriptions, and the 
  6920.      english name of the country. 
  6921.      bool retrieveFromNetCode() 
  6922.  
  6923.      Determine the country that uses the currently set NetCode.  Fills all the 
  6924.      other country attributes with values. LCP: CountryAttNetCode 
  6925.      bool retrieveFromDesc() 
  6926.  
  6927.      Determine the country that uses the currently set description.  Fills all 
  6928.      the other country attributes with values.  LCP: CountryAttribs 
  6929.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  6930.  
  6931.      Determine the primary language of the current country.  "Desc" must be 
  6932.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  6933.      CountryPrimLang 
  6934.      bool getAllLanguages(vecString &Languages) 
  6935.  
  6936.      Determine all the languages used by the current country.  "Desc" must be 
  6937.      already set.  The result is returned in priority order (highest priority 
  6938.      first) in vecString &Languages.  LCP: CountryLanguages 
  6939.      bool getLanguageList(vecString &Languages) 
  6940.  
  6941.      Get a list of all possible languages, in alphabetical order, returned in 
  6942.      vecString &Languages.  LCP: CountryLangList 
  6943.      bool getLanguageListEngNat(mapString &Languages) 
  6944.  
  6945.      Get a map of all possible languages, their native description in 
  6946.      alphabetical order by english description, returned in in vecString 
  6947.      &Languages.  LCP: CountryLangListEngNat 
  6948.  
  6949.   Delete a country 
  6950.      bool deleteFromDesc() 
  6951.  
  6952.      Delete the country that uses the currently set description.  LCP: 
  6953.      CountryDelete 
  6954.  
  6955.   Set data members 
  6956.      bool setAll(mapString &FieldValues) 
  6957.  
  6958.      Sets all the data members of a topic using the mapString which is passed 
  6959.      to it.  Only the fields present in the mapString are updated, the other 
  6960.      fields are untouched.  LCP: CountryUpdate 
  6961.      bool setDesc(const string &DescSetting) 
  6962.  
  6963.      Set the short description 
  6964.      bool setDescLong(const string &DescLongSetting) 
  6965.  
  6966.      Set the long description 
  6967.      bool setDescNative(const string &DescNativeSetting) 
  6968.  
  6969.      Set the native language description 
  6970.      bool setNetCode(const string &NetCodeSetting) 
  6971.  
  6972.      Set the internet code for this country 
  6973.      bool erase() 
  6974.  
  6975.      Sets all the data members to empty 
  6976.  
  6977.   Get data members 
  6978.      bool getAll(mapString &FieldValues) 
  6979.  
  6980.      Return a mapString of all the data members of this topic. The key is the 
  6981.      variable name.  LCP: CountryAttribs 
  6982.      string getDesc() 
  6983.  
  6984.      Get the short description 
  6985.      string getDescLong() 
  6986.  
  6987.      Get the long description 
  6988.      string getDescNative() 
  6989.  
  6990.      Get the native language description 
  6991.      string getNetCode() 
  6992.  
  6993.      Get the internet code for this country 
  6994.  
  6995.  
  6996. ΓòÉΓòÉΓòÉ <hidden> < ΓòÉΓòÉΓòÉ
  6997.  
  6998.  
  6999. lyris_Country Class 
  7000.  
  7001.      class lyris_Country 
  7002.  
  7003.      For determining what countries exist, and what languages are spoken & 
  7004.      preferred in each country 
  7005.  
  7006.      Defined in: COUNTRY.H 
  7007.  
  7008.   Create a new country 
  7009.  
  7010.       bool createNew() 
  7011.  
  7012.      Creates a new country/language table row.  LCP: CountryCreate 
  7013.      bool updateDatabase() 
  7014.  
  7015.      Save the current country with the data members that have changed.  LCP: 
  7016.      CountryUpdate 
  7017.      bool VerifyFields() 
  7018.  
  7019.      Verify that all required fields are filled in. 
  7020.  
  7021.   Retrieve data from the database 
  7022.      bool fetchAllCountries(vecString &AllCountries) 
  7023.  
  7024.      Fetch a list of all countries.  LCP: CountryAll 
  7025.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7026.  
  7027.      Fetch a paired list of countries and their native language descriptions, 
  7028.      sorted by english description.  LCP: CountryEngNat 
  7029.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7030.  
  7031.      Fetch a paired list of native language country descriptions, and the 
  7032.      english name of the country. 
  7033.      bool retrieveFromNetCode() 
  7034.  
  7035.      Determine the country that uses the currently set NetCode.  Fills all the 
  7036.      other country attributes with values. LCP: CountryAttNetCode 
  7037.      bool retrieveFromDesc() 
  7038.  
  7039.      Determine the country that uses the currently set description.  Fills all 
  7040.      the other country attributes with values.  LCP: CountryAttribs 
  7041.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7042.  
  7043.      Determine the primary language of the current country.  "Desc" must be 
  7044.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7045.      CountryPrimLang 
  7046.      bool getAllLanguages(vecString &Languages) 
  7047.  
  7048.      Determine all the languages used by the current country.  "Desc" must be 
  7049.      already set.  The result is returned in priority order (highest priority 
  7050.      first) in vecString &Languages.  LCP: CountryLanguages 
  7051.      bool getLanguageList(vecString &Languages) 
  7052.  
  7053.      Get a list of all possible languages, in alphabetical order, returned in 
  7054.      vecString &Languages.  LCP: CountryLangList 
  7055.      bool getLanguageListEngNat(mapString &Languages) 
  7056.  
  7057.      Get a map of all possible languages, their native description in 
  7058.      alphabetical order by english description, returned in in vecString 
  7059.      &Languages.  LCP: CountryLangListEngNat 
  7060.  
  7061.   Delete a country 
  7062.      bool deleteFromDesc() 
  7063.  
  7064.      Delete the country that uses the currently set description.  LCP: 
  7065.      CountryDelete 
  7066.  
  7067.   Set data members 
  7068.      bool setAll(mapString &FieldValues) 
  7069.  
  7070.      Sets all the data members of a topic using the mapString which is passed 
  7071.      to it.  Only the fields present in the mapString are updated, the other 
  7072.      fields are untouched.  LCP: CountryUpdate 
  7073.      bool setDesc(const string &DescSetting) 
  7074.  
  7075.      Set the short description 
  7076.      bool setDescLong(const string &DescLongSetting) 
  7077.  
  7078.      Set the long description 
  7079.      bool setDescNative(const string &DescNativeSetting) 
  7080.  
  7081.      Set the native language description 
  7082.      bool setNetCode(const string &NetCodeSetting) 
  7083.  
  7084.      Set the internet code for this country 
  7085.      bool erase() 
  7086.  
  7087.      Sets all the data members to empty 
  7088.  
  7089.   Get data members 
  7090.      bool getAll(mapString &FieldValues) 
  7091.  
  7092.      Return a mapString of all the data members of this topic. The key is the 
  7093.      variable name.  LCP: CountryAttribs 
  7094.      string getDesc() 
  7095.  
  7096.      Get the short description 
  7097.      string getDescLong() 
  7098.  
  7099.      Get the long description 
  7100.      string getDescNative() 
  7101.  
  7102.      Get the native language description 
  7103.      string getNetCode() 
  7104.  
  7105.      Get the internet code for this country 
  7106.  
  7107.  
  7108. ΓòÉΓòÉΓòÉ <hidden> = ΓòÉΓòÉΓòÉ
  7109.  
  7110.  
  7111. lyris_Country Class 
  7112.  
  7113.      class lyris_Country 
  7114.  
  7115.      For determining what countries exist, and what languages are spoken & 
  7116.      preferred in each country 
  7117.  
  7118.      Defined in: COUNTRY.H 
  7119.  
  7120.   Create a new country 
  7121.  
  7122.       bool createNew() 
  7123.  
  7124.      Creates a new country/language table row.  LCP: CountryCreate 
  7125.      bool updateDatabase() 
  7126.  
  7127.      Save the current country with the data members that have changed.  LCP: 
  7128.      CountryUpdate 
  7129.      bool VerifyFields() 
  7130.  
  7131.      Verify that all required fields are filled in. 
  7132.  
  7133.   Retrieve data from the database 
  7134.      bool fetchAllCountries(vecString &AllCountries) 
  7135.  
  7136.      Fetch a list of all countries.  LCP: CountryAll 
  7137.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7138.  
  7139.      Fetch a paired list of countries and their native language descriptions, 
  7140.      sorted by english description.  LCP: CountryEngNat 
  7141.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7142.  
  7143.      Fetch a paired list of native language country descriptions, and the 
  7144.      english name of the country. 
  7145.      bool retrieveFromNetCode() 
  7146.  
  7147.      Determine the country that uses the currently set NetCode.  Fills all the 
  7148.      other country attributes with values. LCP: CountryAttNetCode 
  7149.      bool retrieveFromDesc() 
  7150.  
  7151.      Determine the country that uses the currently set description.  Fills all 
  7152.      the other country attributes with values.  LCP: CountryAttribs 
  7153.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7154.  
  7155.      Determine the primary language of the current country.  "Desc" must be 
  7156.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7157.      CountryPrimLang 
  7158.      bool getAllLanguages(vecString &Languages) 
  7159.  
  7160.      Determine all the languages used by the current country.  "Desc" must be 
  7161.      already set.  The result is returned in priority order (highest priority 
  7162.      first) in vecString &Languages.  LCP: CountryLanguages 
  7163.      bool getLanguageList(vecString &Languages) 
  7164.  
  7165.      Get a list of all possible languages, in alphabetical order, returned in 
  7166.      vecString &Languages.  LCP: CountryLangList 
  7167.      bool getLanguageListEngNat(mapString &Languages) 
  7168.  
  7169.      Get a map of all possible languages, their native description in 
  7170.      alphabetical order by english description, returned in in vecString 
  7171.      &Languages.  LCP: CountryLangListEngNat 
  7172.  
  7173.   Delete a country 
  7174.      bool deleteFromDesc() 
  7175.  
  7176.      Delete the country that uses the currently set description.  LCP: 
  7177.      CountryDelete 
  7178.  
  7179.   Set data members 
  7180.      bool setAll(mapString &FieldValues) 
  7181.  
  7182.      Sets all the data members of a topic using the mapString which is passed 
  7183.      to it.  Only the fields present in the mapString are updated, the other 
  7184.      fields are untouched.  LCP: CountryUpdate 
  7185.      bool setDesc(const string &DescSetting) 
  7186.  
  7187.      Set the short description 
  7188.      bool setDescLong(const string &DescLongSetting) 
  7189.  
  7190.      Set the long description 
  7191.      bool setDescNative(const string &DescNativeSetting) 
  7192.  
  7193.      Set the native language description 
  7194.      bool setNetCode(const string &NetCodeSetting) 
  7195.  
  7196.      Set the internet code for this country 
  7197.      bool erase() 
  7198.  
  7199.      Sets all the data members to empty 
  7200.  
  7201.   Get data members 
  7202.      bool getAll(mapString &FieldValues) 
  7203.  
  7204.      Return a mapString of all the data members of this topic. The key is the 
  7205.      variable name.  LCP: CountryAttribs 
  7206.      string getDesc() 
  7207.  
  7208.      Get the short description 
  7209.      string getDescLong() 
  7210.  
  7211.      Get the long description 
  7212.      string getDescNative() 
  7213.  
  7214.      Get the native language description 
  7215.      string getNetCode() 
  7216.  
  7217.      Get the internet code for this country 
  7218.  
  7219.  
  7220. ΓòÉΓòÉΓòÉ <hidden> > ΓòÉΓòÉΓòÉ
  7221.  
  7222.  
  7223. lyris_Country Class 
  7224.  
  7225.      class lyris_Country 
  7226.  
  7227.      For determining what countries exist, and what languages are spoken & 
  7228.      preferred in each country 
  7229.  
  7230.      Defined in: COUNTRY.H 
  7231.  
  7232.   Create a new country 
  7233.  
  7234.       bool createNew() 
  7235.  
  7236.      Creates a new country/language table row.  LCP: CountryCreate 
  7237.      bool updateDatabase() 
  7238.  
  7239.      Save the current country with the data members that have changed.  LCP: 
  7240.      CountryUpdate 
  7241.      bool VerifyFields() 
  7242.  
  7243.      Verify that all required fields are filled in. 
  7244.  
  7245.   Retrieve data from the database 
  7246.      bool fetchAllCountries(vecString &AllCountries) 
  7247.  
  7248.      Fetch a list of all countries.  LCP: CountryAll 
  7249.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7250.  
  7251.      Fetch a paired list of countries and their native language descriptions, 
  7252.      sorted by english description.  LCP: CountryEngNat 
  7253.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7254.  
  7255.      Fetch a paired list of native language country descriptions, and the 
  7256.      english name of the country. 
  7257.      bool retrieveFromNetCode() 
  7258.  
  7259.      Determine the country that uses the currently set NetCode.  Fills all the 
  7260.      other country attributes with values. LCP: CountryAttNetCode 
  7261.      bool retrieveFromDesc() 
  7262.  
  7263.      Determine the country that uses the currently set description.  Fills all 
  7264.      the other country attributes with values.  LCP: CountryAttribs 
  7265.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7266.  
  7267.      Determine the primary language of the current country.  "Desc" must be 
  7268.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7269.      CountryPrimLang 
  7270.      bool getAllLanguages(vecString &Languages) 
  7271.  
  7272.      Determine all the languages used by the current country.  "Desc" must be 
  7273.      already set.  The result is returned in priority order (highest priority 
  7274.      first) in vecString &Languages.  LCP: CountryLanguages 
  7275.      bool getLanguageList(vecString &Languages) 
  7276.  
  7277.      Get a list of all possible languages, in alphabetical order, returned in 
  7278.      vecString &Languages.  LCP: CountryLangList 
  7279.      bool getLanguageListEngNat(mapString &Languages) 
  7280.  
  7281.      Get a map of all possible languages, their native description in 
  7282.      alphabetical order by english description, returned in in vecString 
  7283.      &Languages.  LCP: CountryLangListEngNat 
  7284.  
  7285.   Delete a country 
  7286.      bool deleteFromDesc() 
  7287.  
  7288.      Delete the country that uses the currently set description.  LCP: 
  7289.      CountryDelete 
  7290.  
  7291.   Set data members 
  7292.      bool setAll(mapString &FieldValues) 
  7293.  
  7294.      Sets all the data members of a topic using the mapString which is passed 
  7295.      to it.  Only the fields present in the mapString are updated, the other 
  7296.      fields are untouched.  LCP: CountryUpdate 
  7297.      bool setDesc(const string &DescSetting) 
  7298.  
  7299.      Set the short description 
  7300.      bool setDescLong(const string &DescLongSetting) 
  7301.  
  7302.      Set the long description 
  7303.      bool setDescNative(const string &DescNativeSetting) 
  7304.  
  7305.      Set the native language description 
  7306.      bool setNetCode(const string &NetCodeSetting) 
  7307.  
  7308.      Set the internet code for this country 
  7309.      bool erase() 
  7310.  
  7311.      Sets all the data members to empty 
  7312.  
  7313.   Get data members 
  7314.      bool getAll(mapString &FieldValues) 
  7315.  
  7316.      Return a mapString of all the data members of this topic. The key is the 
  7317.      variable name.  LCP: CountryAttribs 
  7318.      string getDesc() 
  7319.  
  7320.      Get the short description 
  7321.      string getDescLong() 
  7322.  
  7323.      Get the long description 
  7324.      string getDescNative() 
  7325.  
  7326.      Get the native language description 
  7327.      string getNetCode() 
  7328.  
  7329.      Get the internet code for this country 
  7330.  
  7331.  
  7332. ΓòÉΓòÉΓòÉ <hidden> ? ΓòÉΓòÉΓòÉ
  7333.  
  7334.  
  7335. lyris_Country Class 
  7336.  
  7337.      class lyris_Country 
  7338.  
  7339.      For determining what countries exist, and what languages are spoken & 
  7340.      preferred in each country 
  7341.  
  7342.      Defined in: COUNTRY.H 
  7343.  
  7344.   Create a new country 
  7345.  
  7346.       bool createNew() 
  7347.  
  7348.      Creates a new country/language table row.  LCP: CountryCreate 
  7349.      bool updateDatabase() 
  7350.  
  7351.      Save the current country with the data members that have changed.  LCP: 
  7352.      CountryUpdate 
  7353.      bool VerifyFields() 
  7354.  
  7355.      Verify that all required fields are filled in. 
  7356.  
  7357.   Retrieve data from the database 
  7358.      bool fetchAllCountries(vecString &AllCountries) 
  7359.  
  7360.      Fetch a list of all countries.  LCP: CountryAll 
  7361.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7362.  
  7363.      Fetch a paired list of countries and their native language descriptions, 
  7364.      sorted by english description.  LCP: CountryEngNat 
  7365.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7366.  
  7367.      Fetch a paired list of native language country descriptions, and the 
  7368.      english name of the country. 
  7369.      bool retrieveFromNetCode() 
  7370.  
  7371.      Determine the country that uses the currently set NetCode.  Fills all the 
  7372.      other country attributes with values. LCP: CountryAttNetCode 
  7373.      bool retrieveFromDesc() 
  7374.  
  7375.      Determine the country that uses the currently set description.  Fills all 
  7376.      the other country attributes with values.  LCP: CountryAttribs 
  7377.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7378.  
  7379.      Determine the primary language of the current country.  "Desc" must be 
  7380.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7381.      CountryPrimLang 
  7382.      bool getAllLanguages(vecString &Languages) 
  7383.  
  7384.      Determine all the languages used by the current country.  "Desc" must be 
  7385.      already set.  The result is returned in priority order (highest priority 
  7386.      first) in vecString &Languages.  LCP: CountryLanguages 
  7387.      bool getLanguageList(vecString &Languages) 
  7388.  
  7389.      Get a list of all possible languages, in alphabetical order, returned in 
  7390.      vecString &Languages.  LCP: CountryLangList 
  7391.      bool getLanguageListEngNat(mapString &Languages) 
  7392.  
  7393.      Get a map of all possible languages, their native description in 
  7394.      alphabetical order by english description, returned in in vecString 
  7395.      &Languages.  LCP: CountryLangListEngNat 
  7396.  
  7397.   Delete a country 
  7398.      bool deleteFromDesc() 
  7399.  
  7400.      Delete the country that uses the currently set description.  LCP: 
  7401.      CountryDelete 
  7402.  
  7403.   Set data members 
  7404.      bool setAll(mapString &FieldValues) 
  7405.  
  7406.      Sets all the data members of a topic using the mapString which is passed 
  7407.      to it.  Only the fields present in the mapString are updated, the other 
  7408.      fields are untouched.  LCP: CountryUpdate 
  7409.      bool setDesc(const string &DescSetting) 
  7410.  
  7411.      Set the short description 
  7412.      bool setDescLong(const string &DescLongSetting) 
  7413.  
  7414.      Set the long description 
  7415.      bool setDescNative(const string &DescNativeSetting) 
  7416.  
  7417.      Set the native language description 
  7418.      bool setNetCode(const string &NetCodeSetting) 
  7419.  
  7420.      Set the internet code for this country 
  7421.      bool erase() 
  7422.  
  7423.      Sets all the data members to empty 
  7424.  
  7425.   Get data members 
  7426.      bool getAll(mapString &FieldValues) 
  7427.  
  7428.      Return a mapString of all the data members of this topic. The key is the 
  7429.      variable name.  LCP: CountryAttribs 
  7430.      string getDesc() 
  7431.  
  7432.      Get the short description 
  7433.      string getDescLong() 
  7434.  
  7435.      Get the long description 
  7436.      string getDescNative() 
  7437.  
  7438.      Get the native language description 
  7439.      string getNetCode() 
  7440.  
  7441.      Get the internet code for this country 
  7442.  
  7443.  
  7444. ΓòÉΓòÉΓòÉ <hidden> @ ΓòÉΓòÉΓòÉ
  7445.  
  7446.  
  7447. lyris_Country Class 
  7448.  
  7449.      class lyris_Country 
  7450.  
  7451.      For determining what countries exist, and what languages are spoken & 
  7452.      preferred in each country 
  7453.  
  7454.      Defined in: COUNTRY.H 
  7455.  
  7456.   Create a new country 
  7457.  
  7458.       bool createNew() 
  7459.  
  7460.      Creates a new country/language table row.  LCP: CountryCreate 
  7461.      bool updateDatabase() 
  7462.  
  7463.      Save the current country with the data members that have changed.  LCP: 
  7464.      CountryUpdate 
  7465.      bool VerifyFields() 
  7466.  
  7467.      Verify that all required fields are filled in. 
  7468.  
  7469.   Retrieve data from the database 
  7470.      bool fetchAllCountries(vecString &AllCountries) 
  7471.  
  7472.      Fetch a list of all countries.  LCP: CountryAll 
  7473.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7474.  
  7475.      Fetch a paired list of countries and their native language descriptions, 
  7476.      sorted by english description.  LCP: CountryEngNat 
  7477.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7478.  
  7479.      Fetch a paired list of native language country descriptions, and the 
  7480.      english name of the country. 
  7481.      bool retrieveFromNetCode() 
  7482.  
  7483.      Determine the country that uses the currently set NetCode.  Fills all the 
  7484.      other country attributes with values. LCP: CountryAttNetCode 
  7485.      bool retrieveFromDesc() 
  7486.  
  7487.      Determine the country that uses the currently set description.  Fills all 
  7488.      the other country attributes with values.  LCP: CountryAttribs 
  7489.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7490.  
  7491.      Determine the primary language of the current country.  "Desc" must be 
  7492.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7493.      CountryPrimLang 
  7494.      bool getAllLanguages(vecString &Languages) 
  7495.  
  7496.      Determine all the languages used by the current country.  "Desc" must be 
  7497.      already set.  The result is returned in priority order (highest priority 
  7498.      first) in vecString &Languages.  LCP: CountryLanguages 
  7499.      bool getLanguageList(vecString &Languages) 
  7500.  
  7501.      Get a list of all possible languages, in alphabetical order, returned in 
  7502.      vecString &Languages.  LCP: CountryLangList 
  7503.      bool getLanguageListEngNat(mapString &Languages) 
  7504.  
  7505.      Get a map of all possible languages, their native description in 
  7506.      alphabetical order by english description, returned in in vecString 
  7507.      &Languages.  LCP: CountryLangListEngNat 
  7508.  
  7509.   Delete a country 
  7510.      bool deleteFromDesc() 
  7511.  
  7512.      Delete the country that uses the currently set description.  LCP: 
  7513.      CountryDelete 
  7514.  
  7515.   Set data members 
  7516.      bool setAll(mapString &FieldValues) 
  7517.  
  7518.      Sets all the data members of a topic using the mapString which is passed 
  7519.      to it.  Only the fields present in the mapString are updated, the other 
  7520.      fields are untouched.  LCP: CountryUpdate 
  7521.      bool setDesc(const string &DescSetting) 
  7522.  
  7523.      Set the short description 
  7524.      bool setDescLong(const string &DescLongSetting) 
  7525.  
  7526.      Set the long description 
  7527.      bool setDescNative(const string &DescNativeSetting) 
  7528.  
  7529.      Set the native language description 
  7530.      bool setNetCode(const string &NetCodeSetting) 
  7531.  
  7532.      Set the internet code for this country 
  7533.      bool erase() 
  7534.  
  7535.      Sets all the data members to empty 
  7536.  
  7537.   Get data members 
  7538.      bool getAll(mapString &FieldValues) 
  7539.  
  7540.      Return a mapString of all the data members of this topic. The key is the 
  7541.      variable name.  LCP: CountryAttribs 
  7542.      string getDesc() 
  7543.  
  7544.      Get the short description 
  7545.      string getDescLong() 
  7546.  
  7547.      Get the long description 
  7548.      string getDescNative() 
  7549.  
  7550.      Get the native language description 
  7551.      string getNetCode() 
  7552.  
  7553.      Get the internet code for this country 
  7554.  
  7555.  
  7556. ΓòÉΓòÉΓòÉ <hidden> A ΓòÉΓòÉΓòÉ
  7557.  
  7558.  
  7559. lyris_Country Class 
  7560.  
  7561.      class lyris_Country 
  7562.  
  7563.      For determining what countries exist, and what languages are spoken & 
  7564.      preferred in each country 
  7565.  
  7566.      Defined in: COUNTRY.H 
  7567.  
  7568.   Create a new country 
  7569.  
  7570.       bool createNew() 
  7571.  
  7572.      Creates a new country/language table row.  LCP: CountryCreate 
  7573.      bool updateDatabase() 
  7574.  
  7575.      Save the current country with the data members that have changed.  LCP: 
  7576.      CountryUpdate 
  7577.      bool VerifyFields() 
  7578.  
  7579.      Verify that all required fields are filled in. 
  7580.  
  7581.   Retrieve data from the database 
  7582.      bool fetchAllCountries(vecString &AllCountries) 
  7583.  
  7584.      Fetch a list of all countries.  LCP: CountryAll 
  7585.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7586.  
  7587.      Fetch a paired list of countries and their native language descriptions, 
  7588.      sorted by english description.  LCP: CountryEngNat 
  7589.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7590.  
  7591.      Fetch a paired list of native language country descriptions, and the 
  7592.      english name of the country. 
  7593.      bool retrieveFromNetCode() 
  7594.  
  7595.      Determine the country that uses the currently set NetCode.  Fills all the 
  7596.      other country attributes with values. LCP: CountryAttNetCode 
  7597.      bool retrieveFromDesc() 
  7598.  
  7599.      Determine the country that uses the currently set description.  Fills all 
  7600.      the other country attributes with values.  LCP: CountryAttribs 
  7601.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7602.  
  7603.      Determine the primary language of the current country.  "Desc" must be 
  7604.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7605.      CountryPrimLang 
  7606.      bool getAllLanguages(vecString &Languages) 
  7607.  
  7608.      Determine all the languages used by the current country.  "Desc" must be 
  7609.      already set.  The result is returned in priority order (highest priority 
  7610.      first) in vecString &Languages.  LCP: CountryLanguages 
  7611.      bool getLanguageList(vecString &Languages) 
  7612.  
  7613.      Get a list of all possible languages, in alphabetical order, returned in 
  7614.      vecString &Languages.  LCP: CountryLangList 
  7615.      bool getLanguageListEngNat(mapString &Languages) 
  7616.  
  7617.      Get a map of all possible languages, their native description in 
  7618.      alphabetical order by english description, returned in in vecString 
  7619.      &Languages.  LCP: CountryLangListEngNat 
  7620.  
  7621.   Delete a country 
  7622.      bool deleteFromDesc() 
  7623.  
  7624.      Delete the country that uses the currently set description.  LCP: 
  7625.      CountryDelete 
  7626.  
  7627.   Set data members 
  7628.      bool setAll(mapString &FieldValues) 
  7629.  
  7630.      Sets all the data members of a topic using the mapString which is passed 
  7631.      to it.  Only the fields present in the mapString are updated, the other 
  7632.      fields are untouched.  LCP: CountryUpdate 
  7633.      bool setDesc(const string &DescSetting) 
  7634.  
  7635.      Set the short description 
  7636.      bool setDescLong(const string &DescLongSetting) 
  7637.  
  7638.      Set the long description 
  7639.      bool setDescNative(const string &DescNativeSetting) 
  7640.  
  7641.      Set the native language description 
  7642.      bool setNetCode(const string &NetCodeSetting) 
  7643.  
  7644.      Set the internet code for this country 
  7645.      bool erase() 
  7646.  
  7647.      Sets all the data members to empty 
  7648.  
  7649.   Get data members 
  7650.      bool getAll(mapString &FieldValues) 
  7651.  
  7652.      Return a mapString of all the data members of this topic. The key is the 
  7653.      variable name.  LCP: CountryAttribs 
  7654.      string getDesc() 
  7655.  
  7656.      Get the short description 
  7657.      string getDescLong() 
  7658.  
  7659.      Get the long description 
  7660.      string getDescNative() 
  7661.  
  7662.      Get the native language description 
  7663.      string getNetCode() 
  7664.  
  7665.      Get the internet code for this country 
  7666.  
  7667.  
  7668. ΓòÉΓòÉΓòÉ <hidden> B ΓòÉΓòÉΓòÉ
  7669.  
  7670.  
  7671. lyris_Country Class 
  7672.  
  7673.      class lyris_Country 
  7674.  
  7675.      For determining what countries exist, and what languages are spoken & 
  7676.      preferred in each country 
  7677.  
  7678.      Defined in: COUNTRY.H 
  7679.  
  7680.   Create a new country 
  7681.  
  7682.       bool createNew() 
  7683.  
  7684.      Creates a new country/language table row.  LCP: CountryCreate 
  7685.      bool updateDatabase() 
  7686.  
  7687.      Save the current country with the data members that have changed.  LCP: 
  7688.      CountryUpdate 
  7689.      bool VerifyFields() 
  7690.  
  7691.      Verify that all required fields are filled in. 
  7692.  
  7693.   Retrieve data from the database 
  7694.      bool fetchAllCountries(vecString &AllCountries) 
  7695.  
  7696.      Fetch a list of all countries.  LCP: CountryAll 
  7697.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7698.  
  7699.      Fetch a paired list of countries and their native language descriptions, 
  7700.      sorted by english description.  LCP: CountryEngNat 
  7701.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7702.  
  7703.      Fetch a paired list of native language country descriptions, and the 
  7704.      english name of the country. 
  7705.      bool retrieveFromNetCode() 
  7706.  
  7707.      Determine the country that uses the currently set NetCode.  Fills all the 
  7708.      other country attributes with values. LCP: CountryAttNetCode 
  7709.      bool retrieveFromDesc() 
  7710.  
  7711.      Determine the country that uses the currently set description.  Fills all 
  7712.      the other country attributes with values.  LCP: CountryAttribs 
  7713.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7714.  
  7715.      Determine the primary language of the current country.  "Desc" must be 
  7716.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7717.      CountryPrimLang 
  7718.      bool getAllLanguages(vecString &Languages) 
  7719.  
  7720.      Determine all the languages used by the current country.  "Desc" must be 
  7721.      already set.  The result is returned in priority order (highest priority 
  7722.      first) in vecString &Languages.  LCP: CountryLanguages 
  7723.      bool getLanguageList(vecString &Languages) 
  7724.  
  7725.      Get a list of all possible languages, in alphabetical order, returned in 
  7726.      vecString &Languages.  LCP: CountryLangList 
  7727.      bool getLanguageListEngNat(mapString &Languages) 
  7728.  
  7729.      Get a map of all possible languages, their native description in 
  7730.      alphabetical order by english description, returned in in vecString 
  7731.      &Languages.  LCP: CountryLangListEngNat 
  7732.  
  7733.   Delete a country 
  7734.      bool deleteFromDesc() 
  7735.  
  7736.      Delete the country that uses the currently set description.  LCP: 
  7737.      CountryDelete 
  7738.  
  7739.   Set data members 
  7740.      bool setAll(mapString &FieldValues) 
  7741.  
  7742.      Sets all the data members of a topic using the mapString which is passed 
  7743.      to it.  Only the fields present in the mapString are updated, the other 
  7744.      fields are untouched.  LCP: CountryUpdate 
  7745.      bool setDesc(const string &DescSetting) 
  7746.  
  7747.      Set the short description 
  7748.      bool setDescLong(const string &DescLongSetting) 
  7749.  
  7750.      Set the long description 
  7751.      bool setDescNative(const string &DescNativeSetting) 
  7752.  
  7753.      Set the native language description 
  7754.      bool setNetCode(const string &NetCodeSetting) 
  7755.  
  7756.      Set the internet code for this country 
  7757.      bool erase() 
  7758.  
  7759.      Sets all the data members to empty 
  7760.  
  7761.   Get data members 
  7762.      bool getAll(mapString &FieldValues) 
  7763.  
  7764.      Return a mapString of all the data members of this topic. The key is the 
  7765.      variable name.  LCP: CountryAttribs 
  7766.      string getDesc() 
  7767.  
  7768.      Get the short description 
  7769.      string getDescLong() 
  7770.  
  7771.      Get the long description 
  7772.      string getDescNative() 
  7773.  
  7774.      Get the native language description 
  7775.      string getNetCode() 
  7776.  
  7777.      Get the internet code for this country 
  7778.  
  7779.  
  7780. ΓòÉΓòÉΓòÉ <hidden> C ΓòÉΓòÉΓòÉ
  7781.  
  7782.  
  7783. lyris_Country Class 
  7784.  
  7785.      class lyris_Country 
  7786.  
  7787.      For determining what countries exist, and what languages are spoken & 
  7788.      preferred in each country 
  7789.  
  7790.      Defined in: COUNTRY.H 
  7791.  
  7792.   Create a new country 
  7793.  
  7794.       bool createNew() 
  7795.  
  7796.      Creates a new country/language table row.  LCP: CountryCreate 
  7797.      bool updateDatabase() 
  7798.  
  7799.      Save the current country with the data members that have changed.  LCP: 
  7800.      CountryUpdate 
  7801.      bool VerifyFields() 
  7802.  
  7803.      Verify that all required fields are filled in. 
  7804.  
  7805.   Retrieve data from the database 
  7806.      bool fetchAllCountries(vecString &AllCountries) 
  7807.  
  7808.      Fetch a list of all countries.  LCP: CountryAll 
  7809.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7810.  
  7811.      Fetch a paired list of countries and their native language descriptions, 
  7812.      sorted by english description.  LCP: CountryEngNat 
  7813.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7814.  
  7815.      Fetch a paired list of native language country descriptions, and the 
  7816.      english name of the country. 
  7817.      bool retrieveFromNetCode() 
  7818.  
  7819.      Determine the country that uses the currently set NetCode.  Fills all the 
  7820.      other country attributes with values. LCP: CountryAttNetCode 
  7821.      bool retrieveFromDesc() 
  7822.  
  7823.      Determine the country that uses the currently set description.  Fills all 
  7824.      the other country attributes with values.  LCP: CountryAttribs 
  7825.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7826.  
  7827.      Determine the primary language of the current country.  "Desc" must be 
  7828.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7829.      CountryPrimLang 
  7830.      bool getAllLanguages(vecString &Languages) 
  7831.  
  7832.      Determine all the languages used by the current country.  "Desc" must be 
  7833.      already set.  The result is returned in priority order (highest priority 
  7834.      first) in vecString &Languages.  LCP: CountryLanguages 
  7835.      bool getLanguageList(vecString &Languages) 
  7836.  
  7837.      Get a list of all possible languages, in alphabetical order, returned in 
  7838.      vecString &Languages.  LCP: CountryLangList 
  7839.      bool getLanguageListEngNat(mapString &Languages) 
  7840.  
  7841.      Get a map of all possible languages, their native description in 
  7842.      alphabetical order by english description, returned in in vecString 
  7843.      &Languages.  LCP: CountryLangListEngNat 
  7844.  
  7845.   Delete a country 
  7846.      bool deleteFromDesc() 
  7847.  
  7848.      Delete the country that uses the currently set description.  LCP: 
  7849.      CountryDelete 
  7850.  
  7851.   Set data members 
  7852.      bool setAll(mapString &FieldValues) 
  7853.  
  7854.      Sets all the data members of a topic using the mapString which is passed 
  7855.      to it.  Only the fields present in the mapString are updated, the other 
  7856.      fields are untouched.  LCP: CountryUpdate 
  7857.      bool setDesc(const string &DescSetting) 
  7858.  
  7859.      Set the short description 
  7860.      bool setDescLong(const string &DescLongSetting) 
  7861.  
  7862.      Set the long description 
  7863.      bool setDescNative(const string &DescNativeSetting) 
  7864.  
  7865.      Set the native language description 
  7866.      bool setNetCode(const string &NetCodeSetting) 
  7867.  
  7868.      Set the internet code for this country 
  7869.      bool erase() 
  7870.  
  7871.      Sets all the data members to empty 
  7872.  
  7873.   Get data members 
  7874.      bool getAll(mapString &FieldValues) 
  7875.  
  7876.      Return a mapString of all the data members of this topic. The key is the 
  7877.      variable name.  LCP: CountryAttribs 
  7878.      string getDesc() 
  7879.  
  7880.      Get the short description 
  7881.      string getDescLong() 
  7882.  
  7883.      Get the long description 
  7884.      string getDescNative() 
  7885.  
  7886.      Get the native language description 
  7887.      string getNetCode() 
  7888.  
  7889.      Get the internet code for this country 
  7890.  
  7891.  
  7892. ΓòÉΓòÉΓòÉ <hidden> D ΓòÉΓòÉΓòÉ
  7893.  
  7894.  
  7895. lyris_Country Class 
  7896.  
  7897.      class lyris_Country 
  7898.  
  7899.      For determining what countries exist, and what languages are spoken & 
  7900.      preferred in each country 
  7901.  
  7902.      Defined in: COUNTRY.H 
  7903.  
  7904.   Create a new country 
  7905.  
  7906.       bool createNew() 
  7907.  
  7908.      Creates a new country/language table row.  LCP: CountryCreate 
  7909.      bool updateDatabase() 
  7910.  
  7911.      Save the current country with the data members that have changed.  LCP: 
  7912.      CountryUpdate 
  7913.      bool VerifyFields() 
  7914.  
  7915.      Verify that all required fields are filled in. 
  7916.  
  7917.   Retrieve data from the database 
  7918.      bool fetchAllCountries(vecString &AllCountries) 
  7919.  
  7920.      Fetch a list of all countries.  LCP: CountryAll 
  7921.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  7922.  
  7923.      Fetch a paired list of countries and their native language descriptions, 
  7924.      sorted by english description.  LCP: CountryEngNat 
  7925.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  7926.  
  7927.      Fetch a paired list of native language country descriptions, and the 
  7928.      english name of the country. 
  7929.      bool retrieveFromNetCode() 
  7930.  
  7931.      Determine the country that uses the currently set NetCode.  Fills all the 
  7932.      other country attributes with values. LCP: CountryAttNetCode 
  7933.      bool retrieveFromDesc() 
  7934.  
  7935.      Determine the country that uses the currently set description.  Fills all 
  7936.      the other country attributes with values.  LCP: CountryAttribs 
  7937.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  7938.  
  7939.      Determine the primary language of the current country.  "Desc" must be 
  7940.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  7941.      CountryPrimLang 
  7942.      bool getAllLanguages(vecString &Languages) 
  7943.  
  7944.      Determine all the languages used by the current country.  "Desc" must be 
  7945.      already set.  The result is returned in priority order (highest priority 
  7946.      first) in vecString &Languages.  LCP: CountryLanguages 
  7947.      bool getLanguageList(vecString &Languages) 
  7948.  
  7949.      Get a list of all possible languages, in alphabetical order, returned in 
  7950.      vecString &Languages.  LCP: CountryLangList 
  7951.      bool getLanguageListEngNat(mapString &Languages) 
  7952.  
  7953.      Get a map of all possible languages, their native description in 
  7954.      alphabetical order by english description, returned in in vecString 
  7955.      &Languages.  LCP: CountryLangListEngNat 
  7956.  
  7957.   Delete a country 
  7958.      bool deleteFromDesc() 
  7959.  
  7960.      Delete the country that uses the currently set description.  LCP: 
  7961.      CountryDelete 
  7962.  
  7963.   Set data members 
  7964.      bool setAll(mapString &FieldValues) 
  7965.  
  7966.      Sets all the data members of a topic using the mapString which is passed 
  7967.      to it.  Only the fields present in the mapString are updated, the other 
  7968.      fields are untouched.  LCP: CountryUpdate 
  7969.      bool setDesc(const string &DescSetting) 
  7970.  
  7971.      Set the short description 
  7972.      bool setDescLong(const string &DescLongSetting) 
  7973.  
  7974.      Set the long description 
  7975.      bool setDescNative(const string &DescNativeSetting) 
  7976.  
  7977.      Set the native language description 
  7978.      bool setNetCode(const string &NetCodeSetting) 
  7979.  
  7980.      Set the internet code for this country 
  7981.      bool erase() 
  7982.  
  7983.      Sets all the data members to empty 
  7984.  
  7985.   Get data members 
  7986.      bool getAll(mapString &FieldValues) 
  7987.  
  7988.      Return a mapString of all the data members of this topic. The key is the 
  7989.      variable name.  LCP: CountryAttribs 
  7990.      string getDesc() 
  7991.  
  7992.      Get the short description 
  7993.      string getDescLong() 
  7994.  
  7995.      Get the long description 
  7996.      string getDescNative() 
  7997.  
  7998.      Get the native language description 
  7999.      string getNetCode() 
  8000.  
  8001.      Get the internet code for this country 
  8002.  
  8003.  
  8004. ΓòÉΓòÉΓòÉ <hidden> E ΓòÉΓòÉΓòÉ
  8005.  
  8006.  
  8007. lyris_Country Class 
  8008.  
  8009.      class lyris_Country 
  8010.  
  8011.      For determining what countries exist, and what languages are spoken & 
  8012.      preferred in each country 
  8013.  
  8014.      Defined in: COUNTRY.H 
  8015.  
  8016.   Create a new country 
  8017.  
  8018.       bool createNew() 
  8019.  
  8020.      Creates a new country/language table row.  LCP: CountryCreate 
  8021.      bool updateDatabase() 
  8022.  
  8023.      Save the current country with the data members that have changed.  LCP: 
  8024.      CountryUpdate 
  8025.      bool VerifyFields() 
  8026.  
  8027.      Verify that all required fields are filled in. 
  8028.  
  8029.   Retrieve data from the database 
  8030.      bool fetchAllCountries(vecString &AllCountries) 
  8031.  
  8032.      Fetch a list of all countries.  LCP: CountryAll 
  8033.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8034.  
  8035.      Fetch a paired list of countries and their native language descriptions, 
  8036.      sorted by english description.  LCP: CountryEngNat 
  8037.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8038.  
  8039.      Fetch a paired list of native language country descriptions, and the 
  8040.      english name of the country. 
  8041.      bool retrieveFromNetCode() 
  8042.  
  8043.      Determine the country that uses the currently set NetCode.  Fills all the 
  8044.      other country attributes with values. LCP: CountryAttNetCode 
  8045.      bool retrieveFromDesc() 
  8046.  
  8047.      Determine the country that uses the currently set description.  Fills all 
  8048.      the other country attributes with values.  LCP: CountryAttribs 
  8049.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8050.  
  8051.      Determine the primary language of the current country.  "Desc" must be 
  8052.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8053.      CountryPrimLang 
  8054.      bool getAllLanguages(vecString &Languages) 
  8055.  
  8056.      Determine all the languages used by the current country.  "Desc" must be 
  8057.      already set.  The result is returned in priority order (highest priority 
  8058.      first) in vecString &Languages.  LCP: CountryLanguages 
  8059.      bool getLanguageList(vecString &Languages) 
  8060.  
  8061.      Get a list of all possible languages, in alphabetical order, returned in 
  8062.      vecString &Languages.  LCP: CountryLangList 
  8063.      bool getLanguageListEngNat(mapString &Languages) 
  8064.  
  8065.      Get a map of all possible languages, their native description in 
  8066.      alphabetical order by english description, returned in in vecString 
  8067.      &Languages.  LCP: CountryLangListEngNat 
  8068.  
  8069.   Delete a country 
  8070.      bool deleteFromDesc() 
  8071.  
  8072.      Delete the country that uses the currently set description.  LCP: 
  8073.      CountryDelete 
  8074.  
  8075.   Set data members 
  8076.      bool setAll(mapString &FieldValues) 
  8077.  
  8078.      Sets all the data members of a topic using the mapString which is passed 
  8079.      to it.  Only the fields present in the mapString are updated, the other 
  8080.      fields are untouched.  LCP: CountryUpdate 
  8081.      bool setDesc(const string &DescSetting) 
  8082.  
  8083.      Set the short description 
  8084.      bool setDescLong(const string &DescLongSetting) 
  8085.  
  8086.      Set the long description 
  8087.      bool setDescNative(const string &DescNativeSetting) 
  8088.  
  8089.      Set the native language description 
  8090.      bool setNetCode(const string &NetCodeSetting) 
  8091.  
  8092.      Set the internet code for this country 
  8093.      bool erase() 
  8094.  
  8095.      Sets all the data members to empty 
  8096.  
  8097.   Get data members 
  8098.      bool getAll(mapString &FieldValues) 
  8099.  
  8100.      Return a mapString of all the data members of this topic. The key is the 
  8101.      variable name.  LCP: CountryAttribs 
  8102.      string getDesc() 
  8103.  
  8104.      Get the short description 
  8105.      string getDescLong() 
  8106.  
  8107.      Get the long description 
  8108.      string getDescNative() 
  8109.  
  8110.      Get the native language description 
  8111.      string getNetCode() 
  8112.  
  8113.      Get the internet code for this country 
  8114.  
  8115.  
  8116. ΓòÉΓòÉΓòÉ <hidden> F ΓòÉΓòÉΓòÉ
  8117.  
  8118.  
  8119. lyris_Country Class 
  8120.  
  8121.      class lyris_Country 
  8122.  
  8123.      For determining what countries exist, and what languages are spoken & 
  8124.      preferred in each country 
  8125.  
  8126.      Defined in: COUNTRY.H 
  8127.  
  8128.   Create a new country 
  8129.  
  8130.       bool createNew() 
  8131.  
  8132.      Creates a new country/language table row.  LCP: CountryCreate 
  8133.      bool updateDatabase() 
  8134.  
  8135.      Save the current country with the data members that have changed.  LCP: 
  8136.      CountryUpdate 
  8137.      bool VerifyFields() 
  8138.  
  8139.      Verify that all required fields are filled in. 
  8140.  
  8141.   Retrieve data from the database 
  8142.      bool fetchAllCountries(vecString &AllCountries) 
  8143.  
  8144.      Fetch a list of all countries.  LCP: CountryAll 
  8145.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8146.  
  8147.      Fetch a paired list of countries and their native language descriptions, 
  8148.      sorted by english description.  LCP: CountryEngNat 
  8149.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8150.  
  8151.      Fetch a paired list of native language country descriptions, and the 
  8152.      english name of the country. 
  8153.      bool retrieveFromNetCode() 
  8154.  
  8155.      Determine the country that uses the currently set NetCode.  Fills all the 
  8156.      other country attributes with values. LCP: CountryAttNetCode 
  8157.      bool retrieveFromDesc() 
  8158.  
  8159.      Determine the country that uses the currently set description.  Fills all 
  8160.      the other country attributes with values.  LCP: CountryAttribs 
  8161.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8162.  
  8163.      Determine the primary language of the current country.  "Desc" must be 
  8164.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8165.      CountryPrimLang 
  8166.      bool getAllLanguages(vecString &Languages) 
  8167.  
  8168.      Determine all the languages used by the current country.  "Desc" must be 
  8169.      already set.  The result is returned in priority order (highest priority 
  8170.      first) in vecString &Languages.  LCP: CountryLanguages 
  8171.      bool getLanguageList(vecString &Languages) 
  8172.  
  8173.      Get a list of all possible languages, in alphabetical order, returned in 
  8174.      vecString &Languages.  LCP: CountryLangList 
  8175.      bool getLanguageListEngNat(mapString &Languages) 
  8176.  
  8177.      Get a map of all possible languages, their native description in 
  8178.      alphabetical order by english description, returned in in vecString 
  8179.      &Languages.  LCP: CountryLangListEngNat 
  8180.  
  8181.   Delete a country 
  8182.      bool deleteFromDesc() 
  8183.  
  8184.      Delete the country that uses the currently set description.  LCP: 
  8185.      CountryDelete 
  8186.  
  8187.   Set data members 
  8188.      bool setAll(mapString &FieldValues) 
  8189.  
  8190.      Sets all the data members of a topic using the mapString which is passed 
  8191.      to it.  Only the fields present in the mapString are updated, the other 
  8192.      fields are untouched.  LCP: CountryUpdate 
  8193.      bool setDesc(const string &DescSetting) 
  8194.  
  8195.      Set the short description 
  8196.      bool setDescLong(const string &DescLongSetting) 
  8197.  
  8198.      Set the long description 
  8199.      bool setDescNative(const string &DescNativeSetting) 
  8200.  
  8201.      Set the native language description 
  8202.      bool setNetCode(const string &NetCodeSetting) 
  8203.  
  8204.      Set the internet code for this country 
  8205.      bool erase() 
  8206.  
  8207.      Sets all the data members to empty 
  8208.  
  8209.   Get data members 
  8210.      bool getAll(mapString &FieldValues) 
  8211.  
  8212.      Return a mapString of all the data members of this topic. The key is the 
  8213.      variable name.  LCP: CountryAttribs 
  8214.      string getDesc() 
  8215.  
  8216.      Get the short description 
  8217.      string getDescLong() 
  8218.  
  8219.      Get the long description 
  8220.      string getDescNative() 
  8221.  
  8222.      Get the native language description 
  8223.      string getNetCode() 
  8224.  
  8225.      Get the internet code for this country 
  8226.  
  8227.  
  8228. ΓòÉΓòÉΓòÉ <hidden> G ΓòÉΓòÉΓòÉ
  8229.  
  8230.  
  8231. lyris_Country Class 
  8232.  
  8233.      class lyris_Country 
  8234.  
  8235.      For determining what countries exist, and what languages are spoken & 
  8236.      preferred in each country 
  8237.  
  8238.      Defined in: COUNTRY.H 
  8239.  
  8240.   Create a new country 
  8241.  
  8242.       bool createNew() 
  8243.  
  8244.      Creates a new country/language table row.  LCP: CountryCreate 
  8245.      bool updateDatabase() 
  8246.  
  8247.      Save the current country with the data members that have changed.  LCP: 
  8248.      CountryUpdate 
  8249.      bool VerifyFields() 
  8250.  
  8251.      Verify that all required fields are filled in. 
  8252.  
  8253.   Retrieve data from the database 
  8254.      bool fetchAllCountries(vecString &AllCountries) 
  8255.  
  8256.      Fetch a list of all countries.  LCP: CountryAll 
  8257.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8258.  
  8259.      Fetch a paired list of countries and their native language descriptions, 
  8260.      sorted by english description.  LCP: CountryEngNat 
  8261.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8262.  
  8263.      Fetch a paired list of native language country descriptions, and the 
  8264.      english name of the country. 
  8265.      bool retrieveFromNetCode() 
  8266.  
  8267.      Determine the country that uses the currently set NetCode.  Fills all the 
  8268.      other country attributes with values. LCP: CountryAttNetCode 
  8269.      bool retrieveFromDesc() 
  8270.  
  8271.      Determine the country that uses the currently set description.  Fills all 
  8272.      the other country attributes with values.  LCP: CountryAttribs 
  8273.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8274.  
  8275.      Determine the primary language of the current country.  "Desc" must be 
  8276.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8277.      CountryPrimLang 
  8278.      bool getAllLanguages(vecString &Languages) 
  8279.  
  8280.      Determine all the languages used by the current country.  "Desc" must be 
  8281.      already set.  The result is returned in priority order (highest priority 
  8282.      first) in vecString &Languages.  LCP: CountryLanguages 
  8283.      bool getLanguageList(vecString &Languages) 
  8284.  
  8285.      Get a list of all possible languages, in alphabetical order, returned in 
  8286.      vecString &Languages.  LCP: CountryLangList 
  8287.      bool getLanguageListEngNat(mapString &Languages) 
  8288.  
  8289.      Get a map of all possible languages, their native description in 
  8290.      alphabetical order by english description, returned in in vecString 
  8291.      &Languages.  LCP: CountryLangListEngNat 
  8292.  
  8293.   Delete a country 
  8294.      bool deleteFromDesc() 
  8295.  
  8296.      Delete the country that uses the currently set description.  LCP: 
  8297.      CountryDelete 
  8298.  
  8299.   Set data members 
  8300.      bool setAll(mapString &FieldValues) 
  8301.  
  8302.      Sets all the data members of a topic using the mapString which is passed 
  8303.      to it.  Only the fields present in the mapString are updated, the other 
  8304.      fields are untouched.  LCP: CountryUpdate 
  8305.      bool setDesc(const string &DescSetting) 
  8306.  
  8307.      Set the short description 
  8308.      bool setDescLong(const string &DescLongSetting) 
  8309.  
  8310.      Set the long description 
  8311.      bool setDescNative(const string &DescNativeSetting) 
  8312.  
  8313.      Set the native language description 
  8314.      bool setNetCode(const string &NetCodeSetting) 
  8315.  
  8316.      Set the internet code for this country 
  8317.      bool erase() 
  8318.  
  8319.      Sets all the data members to empty 
  8320.  
  8321.   Get data members 
  8322.      bool getAll(mapString &FieldValues) 
  8323.  
  8324.      Return a mapString of all the data members of this topic. The key is the 
  8325.      variable name.  LCP: CountryAttribs 
  8326.      string getDesc() 
  8327.  
  8328.      Get the short description 
  8329.      string getDescLong() 
  8330.  
  8331.      Get the long description 
  8332.      string getDescNative() 
  8333.  
  8334.      Get the native language description 
  8335.      string getNetCode() 
  8336.  
  8337.      Get the internet code for this country 
  8338.  
  8339.  
  8340. ΓòÉΓòÉΓòÉ <hidden> H ΓòÉΓòÉΓòÉ
  8341.  
  8342.  
  8343. lyris_Country Class 
  8344.  
  8345.      class lyris_Country 
  8346.  
  8347.      For determining what countries exist, and what languages are spoken & 
  8348.      preferred in each country 
  8349.  
  8350.      Defined in: COUNTRY.H 
  8351.  
  8352.   Create a new country 
  8353.  
  8354.       bool createNew() 
  8355.  
  8356.      Creates a new country/language table row.  LCP: CountryCreate 
  8357.      bool updateDatabase() 
  8358.  
  8359.      Save the current country with the data members that have changed.  LCP: 
  8360.      CountryUpdate 
  8361.      bool VerifyFields() 
  8362.  
  8363.      Verify that all required fields are filled in. 
  8364.  
  8365.   Retrieve data from the database 
  8366.      bool fetchAllCountries(vecString &AllCountries) 
  8367.  
  8368.      Fetch a list of all countries.  LCP: CountryAll 
  8369.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8370.  
  8371.      Fetch a paired list of countries and their native language descriptions, 
  8372.      sorted by english description.  LCP: CountryEngNat 
  8373.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8374.  
  8375.      Fetch a paired list of native language country descriptions, and the 
  8376.      english name of the country. 
  8377.      bool retrieveFromNetCode() 
  8378.  
  8379.      Determine the country that uses the currently set NetCode.  Fills all the 
  8380.      other country attributes with values. LCP: CountryAttNetCode 
  8381.      bool retrieveFromDesc() 
  8382.  
  8383.      Determine the country that uses the currently set description.  Fills all 
  8384.      the other country attributes with values.  LCP: CountryAttribs 
  8385.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8386.  
  8387.      Determine the primary language of the current country.  "Desc" must be 
  8388.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8389.      CountryPrimLang 
  8390.      bool getAllLanguages(vecString &Languages) 
  8391.  
  8392.      Determine all the languages used by the current country.  "Desc" must be 
  8393.      already set.  The result is returned in priority order (highest priority 
  8394.      first) in vecString &Languages.  LCP: CountryLanguages 
  8395.      bool getLanguageList(vecString &Languages) 
  8396.  
  8397.      Get a list of all possible languages, in alphabetical order, returned in 
  8398.      vecString &Languages.  LCP: CountryLangList 
  8399.      bool getLanguageListEngNat(mapString &Languages) 
  8400.  
  8401.      Get a map of all possible languages, their native description in 
  8402.      alphabetical order by english description, returned in in vecString 
  8403.      &Languages.  LCP: CountryLangListEngNat 
  8404.  
  8405.   Delete a country 
  8406.      bool deleteFromDesc() 
  8407.  
  8408.      Delete the country that uses the currently set description.  LCP: 
  8409.      CountryDelete 
  8410.  
  8411.   Set data members 
  8412.      bool setAll(mapString &FieldValues) 
  8413.  
  8414.      Sets all the data members of a topic using the mapString which is passed 
  8415.      to it.  Only the fields present in the mapString are updated, the other 
  8416.      fields are untouched.  LCP: CountryUpdate 
  8417.      bool setDesc(const string &DescSetting) 
  8418.  
  8419.      Set the short description 
  8420.      bool setDescLong(const string &DescLongSetting) 
  8421.  
  8422.      Set the long description 
  8423.      bool setDescNative(const string &DescNativeSetting) 
  8424.  
  8425.      Set the native language description 
  8426.      bool setNetCode(const string &NetCodeSetting) 
  8427.  
  8428.      Set the internet code for this country 
  8429.      bool erase() 
  8430.  
  8431.      Sets all the data members to empty 
  8432.  
  8433.   Get data members 
  8434.      bool getAll(mapString &FieldValues) 
  8435.  
  8436.      Return a mapString of all the data members of this topic. The key is the 
  8437.      variable name.  LCP: CountryAttribs 
  8438.      string getDesc() 
  8439.  
  8440.      Get the short description 
  8441.      string getDescLong() 
  8442.  
  8443.      Get the long description 
  8444.      string getDescNative() 
  8445.  
  8446.      Get the native language description 
  8447.      string getNetCode() 
  8448.  
  8449.      Get the internet code for this country 
  8450.  
  8451.  
  8452. ΓòÉΓòÉΓòÉ <hidden> I ΓòÉΓòÉΓòÉ
  8453.  
  8454.  
  8455. lyris_Country Class 
  8456.  
  8457.      class lyris_Country 
  8458.  
  8459.      For determining what countries exist, and what languages are spoken & 
  8460.      preferred in each country 
  8461.  
  8462.      Defined in: COUNTRY.H 
  8463.  
  8464.   Create a new country 
  8465.  
  8466.       bool createNew() 
  8467.  
  8468.      Creates a new country/language table row.  LCP: CountryCreate 
  8469.      bool updateDatabase() 
  8470.  
  8471.      Save the current country with the data members that have changed.  LCP: 
  8472.      CountryUpdate 
  8473.      bool VerifyFields() 
  8474.  
  8475.      Verify that all required fields are filled in. 
  8476.  
  8477.   Retrieve data from the database 
  8478.      bool fetchAllCountries(vecString &AllCountries) 
  8479.  
  8480.      Fetch a list of all countries.  LCP: CountryAll 
  8481.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8482.  
  8483.      Fetch a paired list of countries and their native language descriptions, 
  8484.      sorted by english description.  LCP: CountryEngNat 
  8485.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8486.  
  8487.      Fetch a paired list of native language country descriptions, and the 
  8488.      english name of the country. 
  8489.      bool retrieveFromNetCode() 
  8490.  
  8491.      Determine the country that uses the currently set NetCode.  Fills all the 
  8492.      other country attributes with values. LCP: CountryAttNetCode 
  8493.      bool retrieveFromDesc() 
  8494.  
  8495.      Determine the country that uses the currently set description.  Fills all 
  8496.      the other country attributes with values.  LCP: CountryAttribs 
  8497.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8498.  
  8499.      Determine the primary language of the current country.  "Desc" must be 
  8500.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8501.      CountryPrimLang 
  8502.      bool getAllLanguages(vecString &Languages) 
  8503.  
  8504.      Determine all the languages used by the current country.  "Desc" must be 
  8505.      already set.  The result is returned in priority order (highest priority 
  8506.      first) in vecString &Languages.  LCP: CountryLanguages 
  8507.      bool getLanguageList(vecString &Languages) 
  8508.  
  8509.      Get a list of all possible languages, in alphabetical order, returned in 
  8510.      vecString &Languages.  LCP: CountryLangList 
  8511.      bool getLanguageListEngNat(mapString &Languages) 
  8512.  
  8513.      Get a map of all possible languages, their native description in 
  8514.      alphabetical order by english description, returned in in vecString 
  8515.      &Languages.  LCP: CountryLangListEngNat 
  8516.  
  8517.   Delete a country 
  8518.      bool deleteFromDesc() 
  8519.  
  8520.      Delete the country that uses the currently set description.  LCP: 
  8521.      CountryDelete 
  8522.  
  8523.   Set data members 
  8524.      bool setAll(mapString &FieldValues) 
  8525.  
  8526.      Sets all the data members of a topic using the mapString which is passed 
  8527.      to it.  Only the fields present in the mapString are updated, the other 
  8528.      fields are untouched.  LCP: CountryUpdate 
  8529.      bool setDesc(const string &DescSetting) 
  8530.  
  8531.      Set the short description 
  8532.      bool setDescLong(const string &DescLongSetting) 
  8533.  
  8534.      Set the long description 
  8535.      bool setDescNative(const string &DescNativeSetting) 
  8536.  
  8537.      Set the native language description 
  8538.      bool setNetCode(const string &NetCodeSetting) 
  8539.  
  8540.      Set the internet code for this country 
  8541.      bool erase() 
  8542.  
  8543.      Sets all the data members to empty 
  8544.  
  8545.   Get data members 
  8546.      bool getAll(mapString &FieldValues) 
  8547.  
  8548.      Return a mapString of all the data members of this topic. The key is the 
  8549.      variable name.  LCP: CountryAttribs 
  8550.      string getDesc() 
  8551.  
  8552.      Get the short description 
  8553.      string getDescLong() 
  8554.  
  8555.      Get the long description 
  8556.      string getDescNative() 
  8557.  
  8558.      Get the native language description 
  8559.      string getNetCode() 
  8560.  
  8561.      Get the internet code for this country 
  8562.  
  8563.  
  8564. ΓòÉΓòÉΓòÉ <hidden> J ΓòÉΓòÉΓòÉ
  8565.  
  8566.  
  8567. lyris_Country Class 
  8568.  
  8569.      class lyris_Country 
  8570.  
  8571.      For determining what countries exist, and what languages are spoken & 
  8572.      preferred in each country 
  8573.  
  8574.      Defined in: COUNTRY.H 
  8575.  
  8576.   Create a new country 
  8577.  
  8578.       bool createNew() 
  8579.  
  8580.      Creates a new country/language table row.  LCP: CountryCreate 
  8581.      bool updateDatabase() 
  8582.  
  8583.      Save the current country with the data members that have changed.  LCP: 
  8584.      CountryUpdate 
  8585.      bool VerifyFields() 
  8586.  
  8587.      Verify that all required fields are filled in. 
  8588.  
  8589.   Retrieve data from the database 
  8590.      bool fetchAllCountries(vecString &AllCountries) 
  8591.  
  8592.      Fetch a list of all countries.  LCP: CountryAll 
  8593.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8594.  
  8595.      Fetch a paired list of countries and their native language descriptions, 
  8596.      sorted by english description.  LCP: CountryEngNat 
  8597.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8598.  
  8599.      Fetch a paired list of native language country descriptions, and the 
  8600.      english name of the country. 
  8601.      bool retrieveFromNetCode() 
  8602.  
  8603.      Determine the country that uses the currently set NetCode.  Fills all the 
  8604.      other country attributes with values. LCP: CountryAttNetCode 
  8605.      bool retrieveFromDesc() 
  8606.  
  8607.      Determine the country that uses the currently set description.  Fills all 
  8608.      the other country attributes with values.  LCP: CountryAttribs 
  8609.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8610.  
  8611.      Determine the primary language of the current country.  "Desc" must be 
  8612.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8613.      CountryPrimLang 
  8614.      bool getAllLanguages(vecString &Languages) 
  8615.  
  8616.      Determine all the languages used by the current country.  "Desc" must be 
  8617.      already set.  The result is returned in priority order (highest priority 
  8618.      first) in vecString &Languages.  LCP: CountryLanguages 
  8619.      bool getLanguageList(vecString &Languages) 
  8620.  
  8621.      Get a list of all possible languages, in alphabetical order, returned in 
  8622.      vecString &Languages.  LCP: CountryLangList 
  8623.      bool getLanguageListEngNat(mapString &Languages) 
  8624.  
  8625.      Get a map of all possible languages, their native description in 
  8626.      alphabetical order by english description, returned in in vecString 
  8627.      &Languages.  LCP: CountryLangListEngNat 
  8628.  
  8629.   Delete a country 
  8630.      bool deleteFromDesc() 
  8631.  
  8632.      Delete the country that uses the currently set description.  LCP: 
  8633.      CountryDelete 
  8634.  
  8635.   Set data members 
  8636.      bool setAll(mapString &FieldValues) 
  8637.  
  8638.      Sets all the data members of a topic using the mapString which is passed 
  8639.      to it.  Only the fields present in the mapString are updated, the other 
  8640.      fields are untouched.  LCP: CountryUpdate 
  8641.      bool setDesc(const string &DescSetting) 
  8642.  
  8643.      Set the short description 
  8644.      bool setDescLong(const string &DescLongSetting) 
  8645.  
  8646.      Set the long description 
  8647.      bool setDescNative(const string &DescNativeSetting) 
  8648.  
  8649.      Set the native language description 
  8650.      bool setNetCode(const string &NetCodeSetting) 
  8651.  
  8652.      Set the internet code for this country 
  8653.      bool erase() 
  8654.  
  8655.      Sets all the data members to empty 
  8656.  
  8657.   Get data members 
  8658.      bool getAll(mapString &FieldValues) 
  8659.  
  8660.      Return a mapString of all the data members of this topic. The key is the 
  8661.      variable name.  LCP: CountryAttribs 
  8662.      string getDesc() 
  8663.  
  8664.      Get the short description 
  8665.      string getDescLong() 
  8666.  
  8667.      Get the long description 
  8668.      string getDescNative() 
  8669.  
  8670.      Get the native language description 
  8671.      string getNetCode() 
  8672.  
  8673.      Get the internet code for this country 
  8674.  
  8675.  
  8676. ΓòÉΓòÉΓòÉ <hidden> K ΓòÉΓòÉΓòÉ
  8677.  
  8678.  
  8679. lyris_Country Class 
  8680.  
  8681.      class lyris_Country 
  8682.  
  8683.      For determining what countries exist, and what languages are spoken & 
  8684.      preferred in each country 
  8685.  
  8686.      Defined in: COUNTRY.H 
  8687.  
  8688.   Create a new country 
  8689.  
  8690.       bool createNew() 
  8691.  
  8692.      Creates a new country/language table row.  LCP: CountryCreate 
  8693.      bool updateDatabase() 
  8694.  
  8695.      Save the current country with the data members that have changed.  LCP: 
  8696.      CountryUpdate 
  8697.      bool VerifyFields() 
  8698.  
  8699.      Verify that all required fields are filled in. 
  8700.  
  8701.   Retrieve data from the database 
  8702.      bool fetchAllCountries(vecString &AllCountries) 
  8703.  
  8704.      Fetch a list of all countries.  LCP: CountryAll 
  8705.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8706.  
  8707.      Fetch a paired list of countries and their native language descriptions, 
  8708.      sorted by english description.  LCP: CountryEngNat 
  8709.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8710.  
  8711.      Fetch a paired list of native language country descriptions, and the 
  8712.      english name of the country. 
  8713.      bool retrieveFromNetCode() 
  8714.  
  8715.      Determine the country that uses the currently set NetCode.  Fills all the 
  8716.      other country attributes with values. LCP: CountryAttNetCode 
  8717.      bool retrieveFromDesc() 
  8718.  
  8719.      Determine the country that uses the currently set description.  Fills all 
  8720.      the other country attributes with values.  LCP: CountryAttribs 
  8721.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8722.  
  8723.      Determine the primary language of the current country.  "Desc" must be 
  8724.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8725.      CountryPrimLang 
  8726.      bool getAllLanguages(vecString &Languages) 
  8727.  
  8728.      Determine all the languages used by the current country.  "Desc" must be 
  8729.      already set.  The result is returned in priority order (highest priority 
  8730.      first) in vecString &Languages.  LCP: CountryLanguages 
  8731.      bool getLanguageList(vecString &Languages) 
  8732.  
  8733.      Get a list of all possible languages, in alphabetical order, returned in 
  8734.      vecString &Languages.  LCP: CountryLangList 
  8735.      bool getLanguageListEngNat(mapString &Languages) 
  8736.  
  8737.      Get a map of all possible languages, their native description in 
  8738.      alphabetical order by english description, returned in in vecString 
  8739.      &Languages.  LCP: CountryLangListEngNat 
  8740.  
  8741.   Delete a country 
  8742.      bool deleteFromDesc() 
  8743.  
  8744.      Delete the country that uses the currently set description.  LCP: 
  8745.      CountryDelete 
  8746.  
  8747.   Set data members 
  8748.      bool setAll(mapString &FieldValues) 
  8749.  
  8750.      Sets all the data members of a topic using the mapString which is passed 
  8751.      to it.  Only the fields present in the mapString are updated, the other 
  8752.      fields are untouched.  LCP: CountryUpdate 
  8753.      bool setDesc(const string &DescSetting) 
  8754.  
  8755.      Set the short description 
  8756.      bool setDescLong(const string &DescLongSetting) 
  8757.  
  8758.      Set the long description 
  8759.      bool setDescNative(const string &DescNativeSetting) 
  8760.  
  8761.      Set the native language description 
  8762.      bool setNetCode(const string &NetCodeSetting) 
  8763.  
  8764.      Set the internet code for this country 
  8765.      bool erase() 
  8766.  
  8767.      Sets all the data members to empty 
  8768.  
  8769.   Get data members 
  8770.      bool getAll(mapString &FieldValues) 
  8771.  
  8772.      Return a mapString of all the data members of this topic. The key is the 
  8773.      variable name.  LCP: CountryAttribs 
  8774.      string getDesc() 
  8775.  
  8776.      Get the short description 
  8777.      string getDescLong() 
  8778.  
  8779.      Get the long description 
  8780.      string getDescNative() 
  8781.  
  8782.      Get the native language description 
  8783.      string getNetCode() 
  8784.  
  8785.      Get the internet code for this country 
  8786.  
  8787.  
  8788. ΓòÉΓòÉΓòÉ <hidden> L ΓòÉΓòÉΓòÉ
  8789.  
  8790.  
  8791. lyris_Country Class 
  8792.  
  8793.      class lyris_Country 
  8794.  
  8795.      For determining what countries exist, and what languages are spoken & 
  8796.      preferred in each country 
  8797.  
  8798.      Defined in: COUNTRY.H 
  8799.  
  8800.   Create a new country 
  8801.  
  8802.       bool createNew() 
  8803.  
  8804.      Creates a new country/language table row.  LCP: CountryCreate 
  8805.      bool updateDatabase() 
  8806.  
  8807.      Save the current country with the data members that have changed.  LCP: 
  8808.      CountryUpdate 
  8809.      bool VerifyFields() 
  8810.  
  8811.      Verify that all required fields are filled in. 
  8812.  
  8813.   Retrieve data from the database 
  8814.      bool fetchAllCountries(vecString &AllCountries) 
  8815.  
  8816.      Fetch a list of all countries.  LCP: CountryAll 
  8817.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8818.  
  8819.      Fetch a paired list of countries and their native language descriptions, 
  8820.      sorted by english description.  LCP: CountryEngNat 
  8821.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8822.  
  8823.      Fetch a paired list of native language country descriptions, and the 
  8824.      english name of the country. 
  8825.      bool retrieveFromNetCode() 
  8826.  
  8827.      Determine the country that uses the currently set NetCode.  Fills all the 
  8828.      other country attributes with values. LCP: CountryAttNetCode 
  8829.      bool retrieveFromDesc() 
  8830.  
  8831.      Determine the country that uses the currently set description.  Fills all 
  8832.      the other country attributes with values.  LCP: CountryAttribs 
  8833.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8834.  
  8835.      Determine the primary language of the current country.  "Desc" must be 
  8836.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8837.      CountryPrimLang 
  8838.      bool getAllLanguages(vecString &Languages) 
  8839.  
  8840.      Determine all the languages used by the current country.  "Desc" must be 
  8841.      already set.  The result is returned in priority order (highest priority 
  8842.      first) in vecString &Languages.  LCP: CountryLanguages 
  8843.      bool getLanguageList(vecString &Languages) 
  8844.  
  8845.      Get a list of all possible languages, in alphabetical order, returned in 
  8846.      vecString &Languages.  LCP: CountryLangList 
  8847.      bool getLanguageListEngNat(mapString &Languages) 
  8848.  
  8849.      Get a map of all possible languages, their native description in 
  8850.      alphabetical order by english description, returned in in vecString 
  8851.      &Languages.  LCP: CountryLangListEngNat 
  8852.  
  8853.   Delete a country 
  8854.      bool deleteFromDesc() 
  8855.  
  8856.      Delete the country that uses the currently set description.  LCP: 
  8857.      CountryDelete 
  8858.  
  8859.   Set data members 
  8860.      bool setAll(mapString &FieldValues) 
  8861.  
  8862.      Sets all the data members of a topic using the mapString which is passed 
  8863.      to it.  Only the fields present in the mapString are updated, the other 
  8864.      fields are untouched.  LCP: CountryUpdate 
  8865.      bool setDesc(const string &DescSetting) 
  8866.  
  8867.      Set the short description 
  8868.      bool setDescLong(const string &DescLongSetting) 
  8869.  
  8870.      Set the long description 
  8871.      bool setDescNative(const string &DescNativeSetting) 
  8872.  
  8873.      Set the native language description 
  8874.      bool setNetCode(const string &NetCodeSetting) 
  8875.  
  8876.      Set the internet code for this country 
  8877.      bool erase() 
  8878.  
  8879.      Sets all the data members to empty 
  8880.  
  8881.   Get data members 
  8882.      bool getAll(mapString &FieldValues) 
  8883.  
  8884.      Return a mapString of all the data members of this topic. The key is the 
  8885.      variable name.  LCP: CountryAttribs 
  8886.      string getDesc() 
  8887.  
  8888.      Get the short description 
  8889.      string getDescLong() 
  8890.  
  8891.      Get the long description 
  8892.      string getDescNative() 
  8893.  
  8894.      Get the native language description 
  8895.      string getNetCode() 
  8896.  
  8897.      Get the internet code for this country 
  8898.  
  8899.  
  8900. ΓòÉΓòÉΓòÉ <hidden> M ΓòÉΓòÉΓòÉ
  8901.  
  8902.  
  8903. lyris_Country Class 
  8904.  
  8905.      class lyris_Country 
  8906.  
  8907.      For determining what countries exist, and what languages are spoken & 
  8908.      preferred in each country 
  8909.  
  8910.      Defined in: COUNTRY.H 
  8911.  
  8912.   Create a new country 
  8913.  
  8914.       bool createNew() 
  8915.  
  8916.      Creates a new country/language table row.  LCP: CountryCreate 
  8917.      bool updateDatabase() 
  8918.  
  8919.      Save the current country with the data members that have changed.  LCP: 
  8920.      CountryUpdate 
  8921.      bool VerifyFields() 
  8922.  
  8923.      Verify that all required fields are filled in. 
  8924.  
  8925.   Retrieve data from the database 
  8926.      bool fetchAllCountries(vecString &AllCountries) 
  8927.  
  8928.      Fetch a list of all countries.  LCP: CountryAll 
  8929.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  8930.  
  8931.      Fetch a paired list of countries and their native language descriptions, 
  8932.      sorted by english description.  LCP: CountryEngNat 
  8933.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  8934.  
  8935.      Fetch a paired list of native language country descriptions, and the 
  8936.      english name of the country. 
  8937.      bool retrieveFromNetCode() 
  8938.  
  8939.      Determine the country that uses the currently set NetCode.  Fills all the 
  8940.      other country attributes with values. LCP: CountryAttNetCode 
  8941.      bool retrieveFromDesc() 
  8942.  
  8943.      Determine the country that uses the currently set description.  Fills all 
  8944.      the other country attributes with values.  LCP: CountryAttribs 
  8945.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  8946.  
  8947.      Determine the primary language of the current country.  "Desc" must be 
  8948.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  8949.      CountryPrimLang 
  8950.      bool getAllLanguages(vecString &Languages) 
  8951.  
  8952.      Determine all the languages used by the current country.  "Desc" must be 
  8953.      already set.  The result is returned in priority order (highest priority 
  8954.      first) in vecString &Languages.  LCP: CountryLanguages 
  8955.      bool getLanguageList(vecString &Languages) 
  8956.  
  8957.      Get a list of all possible languages, in alphabetical order, returned in 
  8958.      vecString &Languages.  LCP: CountryLangList 
  8959.      bool getLanguageListEngNat(mapString &Languages) 
  8960.  
  8961.      Get a map of all possible languages, their native description in 
  8962.      alphabetical order by english description, returned in in vecString 
  8963.      &Languages.  LCP: CountryLangListEngNat 
  8964.  
  8965.   Delete a country 
  8966.      bool deleteFromDesc() 
  8967.  
  8968.      Delete the country that uses the currently set description.  LCP: 
  8969.      CountryDelete 
  8970.  
  8971.   Set data members 
  8972.      bool setAll(mapString &FieldValues) 
  8973.  
  8974.      Sets all the data members of a topic using the mapString which is passed 
  8975.      to it.  Only the fields present in the mapString are updated, the other 
  8976.      fields are untouched.  LCP: CountryUpdate 
  8977.      bool setDesc(const string &DescSetting) 
  8978.  
  8979.      Set the short description 
  8980.      bool setDescLong(const string &DescLongSetting) 
  8981.  
  8982.      Set the long description 
  8983.      bool setDescNative(const string &DescNativeSetting) 
  8984.  
  8985.      Set the native language description 
  8986.      bool setNetCode(const string &NetCodeSetting) 
  8987.  
  8988.      Set the internet code for this country 
  8989.      bool erase() 
  8990.  
  8991.      Sets all the data members to empty 
  8992.  
  8993.   Get data members 
  8994.      bool getAll(mapString &FieldValues) 
  8995.  
  8996.      Return a mapString of all the data members of this topic. The key is the 
  8997.      variable name.  LCP: CountryAttribs 
  8998.      string getDesc() 
  8999.  
  9000.      Get the short description 
  9001.      string getDescLong() 
  9002.  
  9003.      Get the long description 
  9004.      string getDescNative() 
  9005.  
  9006.      Get the native language description 
  9007.      string getNetCode() 
  9008.  
  9009.      Get the internet code for this country 
  9010.  
  9011.  
  9012. ΓòÉΓòÉΓòÉ <hidden> N ΓòÉΓòÉΓòÉ
  9013.  
  9014.  
  9015. lyris_Country Class 
  9016.  
  9017.      class lyris_Country 
  9018.  
  9019.      For determining what countries exist, and what languages are spoken & 
  9020.      preferred in each country 
  9021.  
  9022.      Defined in: COUNTRY.H 
  9023.  
  9024.   Create a new country 
  9025.  
  9026.       bool createNew() 
  9027.  
  9028.      Creates a new country/language table row.  LCP: CountryCreate 
  9029.      bool updateDatabase() 
  9030.  
  9031.      Save the current country with the data members that have changed.  LCP: 
  9032.      CountryUpdate 
  9033.      bool VerifyFields() 
  9034.  
  9035.      Verify that all required fields are filled in. 
  9036.  
  9037.   Retrieve data from the database 
  9038.      bool fetchAllCountries(vecString &AllCountries) 
  9039.  
  9040.      Fetch a list of all countries.  LCP: CountryAll 
  9041.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9042.  
  9043.      Fetch a paired list of countries and their native language descriptions, 
  9044.      sorted by english description.  LCP: CountryEngNat 
  9045.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9046.  
  9047.      Fetch a paired list of native language country descriptions, and the 
  9048.      english name of the country. 
  9049.      bool retrieveFromNetCode() 
  9050.  
  9051.      Determine the country that uses the currently set NetCode.  Fills all the 
  9052.      other country attributes with values. LCP: CountryAttNetCode 
  9053.      bool retrieveFromDesc() 
  9054.  
  9055.      Determine the country that uses the currently set description.  Fills all 
  9056.      the other country attributes with values.  LCP: CountryAttribs 
  9057.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9058.  
  9059.      Determine the primary language of the current country.  "Desc" must be 
  9060.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9061.      CountryPrimLang 
  9062.      bool getAllLanguages(vecString &Languages) 
  9063.  
  9064.      Determine all the languages used by the current country.  "Desc" must be 
  9065.      already set.  The result is returned in priority order (highest priority 
  9066.      first) in vecString &Languages.  LCP: CountryLanguages 
  9067.      bool getLanguageList(vecString &Languages) 
  9068.  
  9069.      Get a list of all possible languages, in alphabetical order, returned in 
  9070.      vecString &Languages.  LCP: CountryLangList 
  9071.      bool getLanguageListEngNat(mapString &Languages) 
  9072.  
  9073.      Get a map of all possible languages, their native description in 
  9074.      alphabetical order by english description, returned in in vecString 
  9075.      &Languages.  LCP: CountryLangListEngNat 
  9076.  
  9077.   Delete a country 
  9078.      bool deleteFromDesc() 
  9079.  
  9080.      Delete the country that uses the currently set description.  LCP: 
  9081.      CountryDelete 
  9082.  
  9083.   Set data members 
  9084.      bool setAll(mapString &FieldValues) 
  9085.  
  9086.      Sets all the data members of a topic using the mapString which is passed 
  9087.      to it.  Only the fields present in the mapString are updated, the other 
  9088.      fields are untouched.  LCP: CountryUpdate 
  9089.      bool setDesc(const string &DescSetting) 
  9090.  
  9091.      Set the short description 
  9092.      bool setDescLong(const string &DescLongSetting) 
  9093.  
  9094.      Set the long description 
  9095.      bool setDescNative(const string &DescNativeSetting) 
  9096.  
  9097.      Set the native language description 
  9098.      bool setNetCode(const string &NetCodeSetting) 
  9099.  
  9100.      Set the internet code for this country 
  9101.      bool erase() 
  9102.  
  9103.      Sets all the data members to empty 
  9104.  
  9105.   Get data members 
  9106.      bool getAll(mapString &FieldValues) 
  9107.  
  9108.      Return a mapString of all the data members of this topic. The key is the 
  9109.      variable name.  LCP: CountryAttribs 
  9110.      string getDesc() 
  9111.  
  9112.      Get the short description 
  9113.      string getDescLong() 
  9114.  
  9115.      Get the long description 
  9116.      string getDescNative() 
  9117.  
  9118.      Get the native language description 
  9119.      string getNetCode() 
  9120.  
  9121.      Get the internet code for this country 
  9122.  
  9123.  
  9124. ΓòÉΓòÉΓòÉ <hidden> O ΓòÉΓòÉΓòÉ
  9125.  
  9126.  
  9127. lyris_Country Class 
  9128.  
  9129.      class lyris_Country 
  9130.  
  9131.      For determining what countries exist, and what languages are spoken & 
  9132.      preferred in each country 
  9133.  
  9134.      Defined in: COUNTRY.H 
  9135.  
  9136.   Create a new country 
  9137.  
  9138.       bool createNew() 
  9139.  
  9140.      Creates a new country/language table row.  LCP: CountryCreate 
  9141.      bool updateDatabase() 
  9142.  
  9143.      Save the current country with the data members that have changed.  LCP: 
  9144.      CountryUpdate 
  9145.      bool VerifyFields() 
  9146.  
  9147.      Verify that all required fields are filled in. 
  9148.  
  9149.   Retrieve data from the database 
  9150.      bool fetchAllCountries(vecString &AllCountries) 
  9151.  
  9152.      Fetch a list of all countries.  LCP: CountryAll 
  9153.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9154.  
  9155.      Fetch a paired list of countries and their native language descriptions, 
  9156.      sorted by english description.  LCP: CountryEngNat 
  9157.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9158.  
  9159.      Fetch a paired list of native language country descriptions, and the 
  9160.      english name of the country. 
  9161.      bool retrieveFromNetCode() 
  9162.  
  9163.      Determine the country that uses the currently set NetCode.  Fills all the 
  9164.      other country attributes with values. LCP: CountryAttNetCode 
  9165.      bool retrieveFromDesc() 
  9166.  
  9167.      Determine the country that uses the currently set description.  Fills all 
  9168.      the other country attributes with values.  LCP: CountryAttribs 
  9169.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9170.  
  9171.      Determine the primary language of the current country.  "Desc" must be 
  9172.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9173.      CountryPrimLang 
  9174.      bool getAllLanguages(vecString &Languages) 
  9175.  
  9176.      Determine all the languages used by the current country.  "Desc" must be 
  9177.      already set.  The result is returned in priority order (highest priority 
  9178.      first) in vecString &Languages.  LCP: CountryLanguages 
  9179.      bool getLanguageList(vecString &Languages) 
  9180.  
  9181.      Get a list of all possible languages, in alphabetical order, returned in 
  9182.      vecString &Languages.  LCP: CountryLangList 
  9183.      bool getLanguageListEngNat(mapString &Languages) 
  9184.  
  9185.      Get a map of all possible languages, their native description in 
  9186.      alphabetical order by english description, returned in in vecString 
  9187.      &Languages.  LCP: CountryLangListEngNat 
  9188.  
  9189.   Delete a country 
  9190.      bool deleteFromDesc() 
  9191.  
  9192.      Delete the country that uses the currently set description.  LCP: 
  9193.      CountryDelete 
  9194.  
  9195.   Set data members 
  9196.      bool setAll(mapString &FieldValues) 
  9197.  
  9198.      Sets all the data members of a topic using the mapString which is passed 
  9199.      to it.  Only the fields present in the mapString are updated, the other 
  9200.      fields are untouched.  LCP: CountryUpdate 
  9201.      bool setDesc(const string &DescSetting) 
  9202.  
  9203.      Set the short description 
  9204.      bool setDescLong(const string &DescLongSetting) 
  9205.  
  9206.      Set the long description 
  9207.      bool setDescNative(const string &DescNativeSetting) 
  9208.  
  9209.      Set the native language description 
  9210.      bool setNetCode(const string &NetCodeSetting) 
  9211.  
  9212.      Set the internet code for this country 
  9213.      bool erase() 
  9214.  
  9215.      Sets all the data members to empty 
  9216.  
  9217.   Get data members 
  9218.      bool getAll(mapString &FieldValues) 
  9219.  
  9220.      Return a mapString of all the data members of this topic. The key is the 
  9221.      variable name.  LCP: CountryAttribs 
  9222.      string getDesc() 
  9223.  
  9224.      Get the short description 
  9225.      string getDescLong() 
  9226.  
  9227.      Get the long description 
  9228.      string getDescNative() 
  9229.  
  9230.      Get the native language description 
  9231.      string getNetCode() 
  9232.  
  9233.      Get the internet code for this country 
  9234.  
  9235.  
  9236. ΓòÉΓòÉΓòÉ <hidden> P ΓòÉΓòÉΓòÉ
  9237.  
  9238.  
  9239. lyris_Country Class 
  9240.  
  9241.      class lyris_Country 
  9242.  
  9243.      For determining what countries exist, and what languages are spoken & 
  9244.      preferred in each country 
  9245.  
  9246.      Defined in: COUNTRY.H 
  9247.  
  9248.   Create a new country 
  9249.  
  9250.       bool createNew() 
  9251.  
  9252.      Creates a new country/language table row.  LCP: CountryCreate 
  9253.      bool updateDatabase() 
  9254.  
  9255.      Save the current country with the data members that have changed.  LCP: 
  9256.      CountryUpdate 
  9257.      bool VerifyFields() 
  9258.  
  9259.      Verify that all required fields are filled in. 
  9260.  
  9261.   Retrieve data from the database 
  9262.      bool fetchAllCountries(vecString &AllCountries) 
  9263.  
  9264.      Fetch a list of all countries.  LCP: CountryAll 
  9265.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9266.  
  9267.      Fetch a paired list of countries and their native language descriptions, 
  9268.      sorted by english description.  LCP: CountryEngNat 
  9269.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9270.  
  9271.      Fetch a paired list of native language country descriptions, and the 
  9272.      english name of the country. 
  9273.      bool retrieveFromNetCode() 
  9274.  
  9275.      Determine the country that uses the currently set NetCode.  Fills all the 
  9276.      other country attributes with values. LCP: CountryAttNetCode 
  9277.      bool retrieveFromDesc() 
  9278.  
  9279.      Determine the country that uses the currently set description.  Fills all 
  9280.      the other country attributes with values.  LCP: CountryAttribs 
  9281.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9282.  
  9283.      Determine the primary language of the current country.  "Desc" must be 
  9284.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9285.      CountryPrimLang 
  9286.      bool getAllLanguages(vecString &Languages) 
  9287.  
  9288.      Determine all the languages used by the current country.  "Desc" must be 
  9289.      already set.  The result is returned in priority order (highest priority 
  9290.      first) in vecString &Languages.  LCP: CountryLanguages 
  9291.      bool getLanguageList(vecString &Languages) 
  9292.  
  9293.      Get a list of all possible languages, in alphabetical order, returned in 
  9294.      vecString &Languages.  LCP: CountryLangList 
  9295.      bool getLanguageListEngNat(mapString &Languages) 
  9296.  
  9297.      Get a map of all possible languages, their native description in 
  9298.      alphabetical order by english description, returned in in vecString 
  9299.      &Languages.  LCP: CountryLangListEngNat 
  9300.  
  9301.   Delete a country 
  9302.      bool deleteFromDesc() 
  9303.  
  9304.      Delete the country that uses the currently set description.  LCP: 
  9305.      CountryDelete 
  9306.  
  9307.   Set data members 
  9308.      bool setAll(mapString &FieldValues) 
  9309.  
  9310.      Sets all the data members of a topic using the mapString which is passed 
  9311.      to it.  Only the fields present in the mapString are updated, the other 
  9312.      fields are untouched.  LCP: CountryUpdate 
  9313.      bool setDesc(const string &DescSetting) 
  9314.  
  9315.      Set the short description 
  9316.      bool setDescLong(const string &DescLongSetting) 
  9317.  
  9318.      Set the long description 
  9319.      bool setDescNative(const string &DescNativeSetting) 
  9320.  
  9321.      Set the native language description 
  9322.      bool setNetCode(const string &NetCodeSetting) 
  9323.  
  9324.      Set the internet code for this country 
  9325.      bool erase() 
  9326.  
  9327.      Sets all the data members to empty 
  9328.  
  9329.   Get data members 
  9330.      bool getAll(mapString &FieldValues) 
  9331.  
  9332.      Return a mapString of all the data members of this topic. The key is the 
  9333.      variable name.  LCP: CountryAttribs 
  9334.      string getDesc() 
  9335.  
  9336.      Get the short description 
  9337.      string getDescLong() 
  9338.  
  9339.      Get the long description 
  9340.      string getDescNative() 
  9341.  
  9342.      Get the native language description 
  9343.      string getNetCode() 
  9344.  
  9345.      Get the internet code for this country 
  9346.  
  9347.  
  9348. ΓòÉΓòÉΓòÉ <hidden> Q ΓòÉΓòÉΓòÉ
  9349.  
  9350.  
  9351. lyris_Country Class 
  9352.  
  9353.      class lyris_Country 
  9354.  
  9355.      For determining what countries exist, and what languages are spoken & 
  9356.      preferred in each country 
  9357.  
  9358.      Defined in: COUNTRY.H 
  9359.  
  9360.   Create a new country 
  9361.  
  9362.       bool createNew() 
  9363.  
  9364.      Creates a new country/language table row.  LCP: CountryCreate 
  9365.      bool updateDatabase() 
  9366.  
  9367.      Save the current country with the data members that have changed.  LCP: 
  9368.      CountryUpdate 
  9369.      bool VerifyFields() 
  9370.  
  9371.      Verify that all required fields are filled in. 
  9372.  
  9373.   Retrieve data from the database 
  9374.      bool fetchAllCountries(vecString &AllCountries) 
  9375.  
  9376.      Fetch a list of all countries.  LCP: CountryAll 
  9377.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9378.  
  9379.      Fetch a paired list of countries and their native language descriptions, 
  9380.      sorted by english description.  LCP: CountryEngNat 
  9381.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9382.  
  9383.      Fetch a paired list of native language country descriptions, and the 
  9384.      english name of the country. 
  9385.      bool retrieveFromNetCode() 
  9386.  
  9387.      Determine the country that uses the currently set NetCode.  Fills all the 
  9388.      other country attributes with values. LCP: CountryAttNetCode 
  9389.      bool retrieveFromDesc() 
  9390.  
  9391.      Determine the country that uses the currently set description.  Fills all 
  9392.      the other country attributes with values.  LCP: CountryAttribs 
  9393.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9394.  
  9395.      Determine the primary language of the current country.  "Desc" must be 
  9396.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9397.      CountryPrimLang 
  9398.      bool getAllLanguages(vecString &Languages) 
  9399.  
  9400.      Determine all the languages used by the current country.  "Desc" must be 
  9401.      already set.  The result is returned in priority order (highest priority 
  9402.      first) in vecString &Languages.  LCP: CountryLanguages 
  9403.      bool getLanguageList(vecString &Languages) 
  9404.  
  9405.      Get a list of all possible languages, in alphabetical order, returned in 
  9406.      vecString &Languages.  LCP: CountryLangList 
  9407.      bool getLanguageListEngNat(mapString &Languages) 
  9408.  
  9409.      Get a map of all possible languages, their native description in 
  9410.      alphabetical order by english description, returned in in vecString 
  9411.      &Languages.  LCP: CountryLangListEngNat 
  9412.  
  9413.   Delete a country 
  9414.      bool deleteFromDesc() 
  9415.  
  9416.      Delete the country that uses the currently set description.  LCP: 
  9417.      CountryDelete 
  9418.  
  9419.   Set data members 
  9420.      bool setAll(mapString &FieldValues) 
  9421.  
  9422.      Sets all the data members of a topic using the mapString which is passed 
  9423.      to it.  Only the fields present in the mapString are updated, the other 
  9424.      fields are untouched.  LCP: CountryUpdate 
  9425.      bool setDesc(const string &DescSetting) 
  9426.  
  9427.      Set the short description 
  9428.      bool setDescLong(const string &DescLongSetting) 
  9429.  
  9430.      Set the long description 
  9431.      bool setDescNative(const string &DescNativeSetting) 
  9432.  
  9433.      Set the native language description 
  9434.      bool setNetCode(const string &NetCodeSetting) 
  9435.  
  9436.      Set the internet code for this country 
  9437.      bool erase() 
  9438.  
  9439.      Sets all the data members to empty 
  9440.  
  9441.   Get data members 
  9442.      bool getAll(mapString &FieldValues) 
  9443.  
  9444.      Return a mapString of all the data members of this topic. The key is the 
  9445.      variable name.  LCP: CountryAttribs 
  9446.      string getDesc() 
  9447.  
  9448.      Get the short description 
  9449.      string getDescLong() 
  9450.  
  9451.      Get the long description 
  9452.      string getDescNative() 
  9453.  
  9454.      Get the native language description 
  9455.      string getNetCode() 
  9456.  
  9457.      Get the internet code for this country 
  9458.  
  9459.  
  9460. ΓòÉΓòÉΓòÉ <hidden> R ΓòÉΓòÉΓòÉ
  9461.  
  9462.  
  9463. lyris_Country Class 
  9464.  
  9465.      class lyris_Country 
  9466.  
  9467.      For determining what countries exist, and what languages are spoken & 
  9468.      preferred in each country 
  9469.  
  9470.      Defined in: COUNTRY.H 
  9471.  
  9472.   Create a new country 
  9473.  
  9474.       bool createNew() 
  9475.  
  9476.      Creates a new country/language table row.  LCP: CountryCreate 
  9477.      bool updateDatabase() 
  9478.  
  9479.      Save the current country with the data members that have changed.  LCP: 
  9480.      CountryUpdate 
  9481.      bool VerifyFields() 
  9482.  
  9483.      Verify that all required fields are filled in. 
  9484.  
  9485.   Retrieve data from the database 
  9486.      bool fetchAllCountries(vecString &AllCountries) 
  9487.  
  9488.      Fetch a list of all countries.  LCP: CountryAll 
  9489.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9490.  
  9491.      Fetch a paired list of countries and their native language descriptions, 
  9492.      sorted by english description.  LCP: CountryEngNat 
  9493.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9494.  
  9495.      Fetch a paired list of native language country descriptions, and the 
  9496.      english name of the country. 
  9497.      bool retrieveFromNetCode() 
  9498.  
  9499.      Determine the country that uses the currently set NetCode.  Fills all the 
  9500.      other country attributes with values. LCP: CountryAttNetCode 
  9501.      bool retrieveFromDesc() 
  9502.  
  9503.      Determine the country that uses the currently set description.  Fills all 
  9504.      the other country attributes with values.  LCP: CountryAttribs 
  9505.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9506.  
  9507.      Determine the primary language of the current country.  "Desc" must be 
  9508.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9509.      CountryPrimLang 
  9510.      bool getAllLanguages(vecString &Languages) 
  9511.  
  9512.      Determine all the languages used by the current country.  "Desc" must be 
  9513.      already set.  The result is returned in priority order (highest priority 
  9514.      first) in vecString &Languages.  LCP: CountryLanguages 
  9515.      bool getLanguageList(vecString &Languages) 
  9516.  
  9517.      Get a list of all possible languages, in alphabetical order, returned in 
  9518.      vecString &Languages.  LCP: CountryLangList 
  9519.      bool getLanguageListEngNat(mapString &Languages) 
  9520.  
  9521.      Get a map of all possible languages, their native description in 
  9522.      alphabetical order by english description, returned in in vecString 
  9523.      &Languages.  LCP: CountryLangListEngNat 
  9524.  
  9525.   Delete a country 
  9526.      bool deleteFromDesc() 
  9527.  
  9528.      Delete the country that uses the currently set description.  LCP: 
  9529.      CountryDelete 
  9530.  
  9531.   Set data members 
  9532.      bool setAll(mapString &FieldValues) 
  9533.  
  9534.      Sets all the data members of a topic using the mapString which is passed 
  9535.      to it.  Only the fields present in the mapString are updated, the other 
  9536.      fields are untouched.  LCP: CountryUpdate 
  9537.      bool setDesc(const string &DescSetting) 
  9538.  
  9539.      Set the short description 
  9540.      bool setDescLong(const string &DescLongSetting) 
  9541.  
  9542.      Set the long description 
  9543.      bool setDescNative(const string &DescNativeSetting) 
  9544.  
  9545.      Set the native language description 
  9546.      bool setNetCode(const string &NetCodeSetting) 
  9547.  
  9548.      Set the internet code for this country 
  9549.      bool erase() 
  9550.  
  9551.      Sets all the data members to empty 
  9552.  
  9553.   Get data members 
  9554.      bool getAll(mapString &FieldValues) 
  9555.  
  9556.      Return a mapString of all the data members of this topic. The key is the 
  9557.      variable name.  LCP: CountryAttribs 
  9558.      string getDesc() 
  9559.  
  9560.      Get the short description 
  9561.      string getDescLong() 
  9562.  
  9563.      Get the long description 
  9564.      string getDescNative() 
  9565.  
  9566.      Get the native language description 
  9567.      string getNetCode() 
  9568.  
  9569.      Get the internet code for this country 
  9570.  
  9571.  
  9572. ΓòÉΓòÉΓòÉ <hidden> S ΓòÉΓòÉΓòÉ
  9573.  
  9574.  
  9575. lyris_Country Class 
  9576.  
  9577.      class lyris_Country 
  9578.  
  9579.      For determining what countries exist, and what languages are spoken & 
  9580.      preferred in each country 
  9581.  
  9582.      Defined in: COUNTRY.H 
  9583.  
  9584.   Create a new country 
  9585.  
  9586.       bool createNew() 
  9587.  
  9588.      Creates a new country/language table row.  LCP: CountryCreate 
  9589.      bool updateDatabase() 
  9590.  
  9591.      Save the current country with the data members that have changed.  LCP: 
  9592.      CountryUpdate 
  9593.      bool VerifyFields() 
  9594.  
  9595.      Verify that all required fields are filled in. 
  9596.  
  9597.   Retrieve data from the database 
  9598.      bool fetchAllCountries(vecString &AllCountries) 
  9599.  
  9600.      Fetch a list of all countries.  LCP: CountryAll 
  9601.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9602.  
  9603.      Fetch a paired list of countries and their native language descriptions, 
  9604.      sorted by english description.  LCP: CountryEngNat 
  9605.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9606.  
  9607.      Fetch a paired list of native language country descriptions, and the 
  9608.      english name of the country. 
  9609.      bool retrieveFromNetCode() 
  9610.  
  9611.      Determine the country that uses the currently set NetCode.  Fills all the 
  9612.      other country attributes with values. LCP: CountryAttNetCode 
  9613.      bool retrieveFromDesc() 
  9614.  
  9615.      Determine the country that uses the currently set description.  Fills all 
  9616.      the other country attributes with values.  LCP: CountryAttribs 
  9617.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9618.  
  9619.      Determine the primary language of the current country.  "Desc" must be 
  9620.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9621.      CountryPrimLang 
  9622.      bool getAllLanguages(vecString &Languages) 
  9623.  
  9624.      Determine all the languages used by the current country.  "Desc" must be 
  9625.      already set.  The result is returned in priority order (highest priority 
  9626.      first) in vecString &Languages.  LCP: CountryLanguages 
  9627.      bool getLanguageList(vecString &Languages) 
  9628.  
  9629.      Get a list of all possible languages, in alphabetical order, returned in 
  9630.      vecString &Languages.  LCP: CountryLangList 
  9631.      bool getLanguageListEngNat(mapString &Languages) 
  9632.  
  9633.      Get a map of all possible languages, their native description in 
  9634.      alphabetical order by english description, returned in in vecString 
  9635.      &Languages.  LCP: CountryLangListEngNat 
  9636.  
  9637.   Delete a country 
  9638.      bool deleteFromDesc() 
  9639.  
  9640.      Delete the country that uses the currently set description.  LCP: 
  9641.      CountryDelete 
  9642.  
  9643.   Set data members 
  9644.      bool setAll(mapString &FieldValues) 
  9645.  
  9646.      Sets all the data members of a topic using the mapString which is passed 
  9647.      to it.  Only the fields present in the mapString are updated, the other 
  9648.      fields are untouched.  LCP: CountryUpdate 
  9649.      bool setDesc(const string &DescSetting) 
  9650.  
  9651.      Set the short description 
  9652.      bool setDescLong(const string &DescLongSetting) 
  9653.  
  9654.      Set the long description 
  9655.      bool setDescNative(const string &DescNativeSetting) 
  9656.  
  9657.      Set the native language description 
  9658.      bool setNetCode(const string &NetCodeSetting) 
  9659.  
  9660.      Set the internet code for this country 
  9661.      bool erase() 
  9662.  
  9663.      Sets all the data members to empty 
  9664.  
  9665.   Get data members 
  9666.      bool getAll(mapString &FieldValues) 
  9667.  
  9668.      Return a mapString of all the data members of this topic. The key is the 
  9669.      variable name.  LCP: CountryAttribs 
  9670.      string getDesc() 
  9671.  
  9672.      Get the short description 
  9673.      string getDescLong() 
  9674.  
  9675.      Get the long description 
  9676.      string getDescNative() 
  9677.  
  9678.      Get the native language description 
  9679.      string getNetCode() 
  9680.  
  9681.      Get the internet code for this country 
  9682.  
  9683.  
  9684. ΓòÉΓòÉΓòÉ <hidden> T ΓòÉΓòÉΓòÉ
  9685.  
  9686.  
  9687. lyris_Country Class 
  9688.  
  9689.      class lyris_Country 
  9690.  
  9691.      For determining what countries exist, and what languages are spoken & 
  9692.      preferred in each country 
  9693.  
  9694.      Defined in: COUNTRY.H 
  9695.  
  9696.   Create a new country 
  9697.  
  9698.       bool createNew() 
  9699.  
  9700.      Creates a new country/language table row.  LCP: CountryCreate 
  9701.      bool updateDatabase() 
  9702.  
  9703.      Save the current country with the data members that have changed.  LCP: 
  9704.      CountryUpdate 
  9705.      bool VerifyFields() 
  9706.  
  9707.      Verify that all required fields are filled in. 
  9708.  
  9709.   Retrieve data from the database 
  9710.      bool fetchAllCountries(vecString &AllCountries) 
  9711.  
  9712.      Fetch a list of all countries.  LCP: CountryAll 
  9713.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9714.  
  9715.      Fetch a paired list of countries and their native language descriptions, 
  9716.      sorted by english description.  LCP: CountryEngNat 
  9717.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9718.  
  9719.      Fetch a paired list of native language country descriptions, and the 
  9720.      english name of the country. 
  9721.      bool retrieveFromNetCode() 
  9722.  
  9723.      Determine the country that uses the currently set NetCode.  Fills all the 
  9724.      other country attributes with values. LCP: CountryAttNetCode 
  9725.      bool retrieveFromDesc() 
  9726.  
  9727.      Determine the country that uses the currently set description.  Fills all 
  9728.      the other country attributes with values.  LCP: CountryAttribs 
  9729.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9730.  
  9731.      Determine the primary language of the current country.  "Desc" must be 
  9732.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9733.      CountryPrimLang 
  9734.      bool getAllLanguages(vecString &Languages) 
  9735.  
  9736.      Determine all the languages used by the current country.  "Desc" must be 
  9737.      already set.  The result is returned in priority order (highest priority 
  9738.      first) in vecString &Languages.  LCP: CountryLanguages 
  9739.      bool getLanguageList(vecString &Languages) 
  9740.  
  9741.      Get a list of all possible languages, in alphabetical order, returned in 
  9742.      vecString &Languages.  LCP: CountryLangList 
  9743.      bool getLanguageListEngNat(mapString &Languages) 
  9744.  
  9745.      Get a map of all possible languages, their native description in 
  9746.      alphabetical order by english description, returned in in vecString 
  9747.      &Languages.  LCP: CountryLangListEngNat 
  9748.  
  9749.   Delete a country 
  9750.      bool deleteFromDesc() 
  9751.  
  9752.      Delete the country that uses the currently set description.  LCP: 
  9753.      CountryDelete 
  9754.  
  9755.   Set data members 
  9756.      bool setAll(mapString &FieldValues) 
  9757.  
  9758.      Sets all the data members of a topic using the mapString which is passed 
  9759.      to it.  Only the fields present in the mapString are updated, the other 
  9760.      fields are untouched.  LCP: CountryUpdate 
  9761.      bool setDesc(const string &DescSetting) 
  9762.  
  9763.      Set the short description 
  9764.      bool setDescLong(const string &DescLongSetting) 
  9765.  
  9766.      Set the long description 
  9767.      bool setDescNative(const string &DescNativeSetting) 
  9768.  
  9769.      Set the native language description 
  9770.      bool setNetCode(const string &NetCodeSetting) 
  9771.  
  9772.      Set the internet code for this country 
  9773.      bool erase() 
  9774.  
  9775.      Sets all the data members to empty 
  9776.  
  9777.   Get data members 
  9778.      bool getAll(mapString &FieldValues) 
  9779.  
  9780.      Return a mapString of all the data members of this topic. The key is the 
  9781.      variable name.  LCP: CountryAttribs 
  9782.      string getDesc() 
  9783.  
  9784.      Get the short description 
  9785.      string getDescLong() 
  9786.  
  9787.      Get the long description 
  9788.      string getDescNative() 
  9789.  
  9790.      Get the native language description 
  9791.      string getNetCode() 
  9792.  
  9793.      Get the internet code for this country 
  9794.  
  9795.  
  9796. ΓòÉΓòÉΓòÉ <hidden> U ΓòÉΓòÉΓòÉ
  9797.  
  9798.  
  9799. lyris_Country Class 
  9800.  
  9801.      class lyris_Country 
  9802.  
  9803.      For determining what countries exist, and what languages are spoken & 
  9804.      preferred in each country 
  9805.  
  9806.      Defined in: COUNTRY.H 
  9807.  
  9808.   Create a new country 
  9809.  
  9810.       bool createNew() 
  9811.  
  9812.      Creates a new country/language table row.  LCP: CountryCreate 
  9813.      bool updateDatabase() 
  9814.  
  9815.      Save the current country with the data members that have changed.  LCP: 
  9816.      CountryUpdate 
  9817.      bool VerifyFields() 
  9818.  
  9819.      Verify that all required fields are filled in. 
  9820.  
  9821.   Retrieve data from the database 
  9822.      bool fetchAllCountries(vecString &AllCountries) 
  9823.  
  9824.      Fetch a list of all countries.  LCP: CountryAll 
  9825.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9826.  
  9827.      Fetch a paired list of countries and their native language descriptions, 
  9828.      sorted by english description.  LCP: CountryEngNat 
  9829.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9830.  
  9831.      Fetch a paired list of native language country descriptions, and the 
  9832.      english name of the country. 
  9833.      bool retrieveFromNetCode() 
  9834.  
  9835.      Determine the country that uses the currently set NetCode.  Fills all the 
  9836.      other country attributes with values. LCP: CountryAttNetCode 
  9837.      bool retrieveFromDesc() 
  9838.  
  9839.      Determine the country that uses the currently set description.  Fills all 
  9840.      the other country attributes with values.  LCP: CountryAttribs 
  9841.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9842.  
  9843.      Determine the primary language of the current country.  "Desc" must be 
  9844.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9845.      CountryPrimLang 
  9846.      bool getAllLanguages(vecString &Languages) 
  9847.  
  9848.      Determine all the languages used by the current country.  "Desc" must be 
  9849.      already set.  The result is returned in priority order (highest priority 
  9850.      first) in vecString &Languages.  LCP: CountryLanguages 
  9851.      bool getLanguageList(vecString &Languages) 
  9852.  
  9853.      Get a list of all possible languages, in alphabetical order, returned in 
  9854.      vecString &Languages.  LCP: CountryLangList 
  9855.      bool getLanguageListEngNat(mapString &Languages) 
  9856.  
  9857.      Get a map of all possible languages, their native description in 
  9858.      alphabetical order by english description, returned in in vecString 
  9859.      &Languages.  LCP: CountryLangListEngNat 
  9860.  
  9861.   Delete a country 
  9862.      bool deleteFromDesc() 
  9863.  
  9864.      Delete the country that uses the currently set description.  LCP: 
  9865.      CountryDelete 
  9866.  
  9867.   Set data members 
  9868.      bool setAll(mapString &FieldValues) 
  9869.  
  9870.      Sets all the data members of a topic using the mapString which is passed 
  9871.      to it.  Only the fields present in the mapString are updated, the other 
  9872.      fields are untouched.  LCP: CountryUpdate 
  9873.      bool setDesc(const string &DescSetting) 
  9874.  
  9875.      Set the short description 
  9876.      bool setDescLong(const string &DescLongSetting) 
  9877.  
  9878.      Set the long description 
  9879.      bool setDescNative(const string &DescNativeSetting) 
  9880.  
  9881.      Set the native language description 
  9882.      bool setNetCode(const string &NetCodeSetting) 
  9883.  
  9884.      Set the internet code for this country 
  9885.      bool erase() 
  9886.  
  9887.      Sets all the data members to empty 
  9888.  
  9889.   Get data members 
  9890.      bool getAll(mapString &FieldValues) 
  9891.  
  9892.      Return a mapString of all the data members of this topic. The key is the 
  9893.      variable name.  LCP: CountryAttribs 
  9894.      string getDesc() 
  9895.  
  9896.      Get the short description 
  9897.      string getDescLong() 
  9898.  
  9899.      Get the long description 
  9900.      string getDescNative() 
  9901.  
  9902.      Get the native language description 
  9903.      string getNetCode() 
  9904.  
  9905.      Get the internet code for this country 
  9906.  
  9907.  
  9908. ΓòÉΓòÉΓòÉ <hidden> V ΓòÉΓòÉΓòÉ
  9909.  
  9910.  
  9911. lyris_Country Class 
  9912.  
  9913.      class lyris_Country 
  9914.  
  9915.      For determining what countries exist, and what languages are spoken & 
  9916.      preferred in each country 
  9917.  
  9918.      Defined in: COUNTRY.H 
  9919.  
  9920.   Create a new country 
  9921.  
  9922.       bool createNew() 
  9923.  
  9924.      Creates a new country/language table row.  LCP: CountryCreate 
  9925.      bool updateDatabase() 
  9926.  
  9927.      Save the current country with the data members that have changed.  LCP: 
  9928.      CountryUpdate 
  9929.      bool VerifyFields() 
  9930.  
  9931.      Verify that all required fields are filled in. 
  9932.  
  9933.   Retrieve data from the database 
  9934.      bool fetchAllCountries(vecString &AllCountries) 
  9935.  
  9936.      Fetch a list of all countries.  LCP: CountryAll 
  9937.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  9938.  
  9939.      Fetch a paired list of countries and their native language descriptions, 
  9940.      sorted by english description.  LCP: CountryEngNat 
  9941.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  9942.  
  9943.      Fetch a paired list of native language country descriptions, and the 
  9944.      english name of the country. 
  9945.      bool retrieveFromNetCode() 
  9946.  
  9947.      Determine the country that uses the currently set NetCode.  Fills all the 
  9948.      other country attributes with values. LCP: CountryAttNetCode 
  9949.      bool retrieveFromDesc() 
  9950.  
  9951.      Determine the country that uses the currently set description.  Fills all 
  9952.      the other country attributes with values.  LCP: CountryAttribs 
  9953.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  9954.  
  9955.      Determine the primary language of the current country.  "Desc" must be 
  9956.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  9957.      CountryPrimLang 
  9958.      bool getAllLanguages(vecString &Languages) 
  9959.  
  9960.      Determine all the languages used by the current country.  "Desc" must be 
  9961.      already set.  The result is returned in priority order (highest priority 
  9962.      first) in vecString &Languages.  LCP: CountryLanguages 
  9963.      bool getLanguageList(vecString &Languages) 
  9964.  
  9965.      Get a list of all possible languages, in alphabetical order, returned in 
  9966.      vecString &Languages.  LCP: CountryLangList 
  9967.      bool getLanguageListEngNat(mapString &Languages) 
  9968.  
  9969.      Get a map of all possible languages, their native description in 
  9970.      alphabetical order by english description, returned in in vecString 
  9971.      &Languages.  LCP: CountryLangListEngNat 
  9972.  
  9973.   Delete a country 
  9974.      bool deleteFromDesc() 
  9975.  
  9976.      Delete the country that uses the currently set description.  LCP: 
  9977.      CountryDelete 
  9978.  
  9979.   Set data members 
  9980.      bool setAll(mapString &FieldValues) 
  9981.  
  9982.      Sets all the data members of a topic using the mapString which is passed 
  9983.      to it.  Only the fields present in the mapString are updated, the other 
  9984.      fields are untouched.  LCP: CountryUpdate 
  9985.      bool setDesc(const string &DescSetting) 
  9986.  
  9987.      Set the short description 
  9988.      bool setDescLong(const string &DescLongSetting) 
  9989.  
  9990.      Set the long description 
  9991.      bool setDescNative(const string &DescNativeSetting) 
  9992.  
  9993.      Set the native language description 
  9994.      bool setNetCode(const string &NetCodeSetting) 
  9995.  
  9996.      Set the internet code for this country 
  9997.      bool erase() 
  9998.  
  9999.      Sets all the data members to empty 
  10000.  
  10001.   Get data members 
  10002.      bool getAll(mapString &FieldValues) 
  10003.  
  10004.      Return a mapString of all the data members of this topic. The key is the 
  10005.      variable name.  LCP: CountryAttribs 
  10006.      string getDesc() 
  10007.  
  10008.      Get the short description 
  10009.      string getDescLong() 
  10010.  
  10011.      Get the long description 
  10012.      string getDescNative() 
  10013.  
  10014.      Get the native language description 
  10015.      string getNetCode() 
  10016.  
  10017.      Get the internet code for this country 
  10018.  
  10019.  
  10020. ΓòÉΓòÉΓòÉ <hidden> W ΓòÉΓòÉΓòÉ
  10021.  
  10022.  
  10023. lyris_Country Class 
  10024.  
  10025.      class lyris_Country 
  10026.  
  10027.      For determining what countries exist, and what languages are spoken & 
  10028.      preferred in each country 
  10029.  
  10030.      Defined in: COUNTRY.H 
  10031.  
  10032.   Create a new country 
  10033.  
  10034.       bool createNew() 
  10035.  
  10036.      Creates a new country/language table row.  LCP: CountryCreate 
  10037.      bool updateDatabase() 
  10038.  
  10039.      Save the current country with the data members that have changed.  LCP: 
  10040.      CountryUpdate 
  10041.      bool VerifyFields() 
  10042.  
  10043.      Verify that all required fields are filled in. 
  10044.  
  10045.   Retrieve data from the database 
  10046.      bool fetchAllCountries(vecString &AllCountries) 
  10047.  
  10048.      Fetch a list of all countries.  LCP: CountryAll 
  10049.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10050.  
  10051.      Fetch a paired list of countries and their native language descriptions, 
  10052.      sorted by english description.  LCP: CountryEngNat 
  10053.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10054.  
  10055.      Fetch a paired list of native language country descriptions, and the 
  10056.      english name of the country. 
  10057.      bool retrieveFromNetCode() 
  10058.  
  10059.      Determine the country that uses the currently set NetCode.  Fills all the 
  10060.      other country attributes with values. LCP: CountryAttNetCode 
  10061.      bool retrieveFromDesc() 
  10062.  
  10063.      Determine the country that uses the currently set description.  Fills all 
  10064.      the other country attributes with values.  LCP: CountryAttribs 
  10065.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10066.  
  10067.      Determine the primary language of the current country.  "Desc" must be 
  10068.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10069.      CountryPrimLang 
  10070.      bool getAllLanguages(vecString &Languages) 
  10071.  
  10072.      Determine all the languages used by the current country.  "Desc" must be 
  10073.      already set.  The result is returned in priority order (highest priority 
  10074.      first) in vecString &Languages.  LCP: CountryLanguages 
  10075.      bool getLanguageList(vecString &Languages) 
  10076.  
  10077.      Get a list of all possible languages, in alphabetical order, returned in 
  10078.      vecString &Languages.  LCP: CountryLangList 
  10079.      bool getLanguageListEngNat(mapString &Languages) 
  10080.  
  10081.      Get a map of all possible languages, their native description in 
  10082.      alphabetical order by english description, returned in in vecString 
  10083.      &Languages.  LCP: CountryLangListEngNat 
  10084.  
  10085.   Delete a country 
  10086.      bool deleteFromDesc() 
  10087.  
  10088.      Delete the country that uses the currently set description.  LCP: 
  10089.      CountryDelete 
  10090.  
  10091.   Set data members 
  10092.      bool setAll(mapString &FieldValues) 
  10093.  
  10094.      Sets all the data members of a topic using the mapString which is passed 
  10095.      to it.  Only the fields present in the mapString are updated, the other 
  10096.      fields are untouched.  LCP: CountryUpdate 
  10097.      bool setDesc(const string &DescSetting) 
  10098.  
  10099.      Set the short description 
  10100.      bool setDescLong(const string &DescLongSetting) 
  10101.  
  10102.      Set the long description 
  10103.      bool setDescNative(const string &DescNativeSetting) 
  10104.  
  10105.      Set the native language description 
  10106.      bool setNetCode(const string &NetCodeSetting) 
  10107.  
  10108.      Set the internet code for this country 
  10109.      bool erase() 
  10110.  
  10111.      Sets all the data members to empty 
  10112.  
  10113.   Get data members 
  10114.      bool getAll(mapString &FieldValues) 
  10115.  
  10116.      Return a mapString of all the data members of this topic. The key is the 
  10117.      variable name.  LCP: CountryAttribs 
  10118.      string getDesc() 
  10119.  
  10120.      Get the short description 
  10121.      string getDescLong() 
  10122.  
  10123.      Get the long description 
  10124.      string getDescNative() 
  10125.  
  10126.      Get the native language description 
  10127.      string getNetCode() 
  10128.  
  10129.      Get the internet code for this country 
  10130.  
  10131.  
  10132. ΓòÉΓòÉΓòÉ <hidden> X ΓòÉΓòÉΓòÉ
  10133.  
  10134.  
  10135. lyris_Country Class 
  10136.  
  10137.      class lyris_Country 
  10138.  
  10139.      For determining what countries exist, and what languages are spoken & 
  10140.      preferred in each country 
  10141.  
  10142.      Defined in: COUNTRY.H 
  10143.  
  10144.   Create a new country 
  10145.  
  10146.       bool createNew() 
  10147.  
  10148.      Creates a new country/language table row.  LCP: CountryCreate 
  10149.      bool updateDatabase() 
  10150.  
  10151.      Save the current country with the data members that have changed.  LCP: 
  10152.      CountryUpdate 
  10153.      bool VerifyFields() 
  10154.  
  10155.      Verify that all required fields are filled in. 
  10156.  
  10157.   Retrieve data from the database 
  10158.      bool fetchAllCountries(vecString &AllCountries) 
  10159.  
  10160.      Fetch a list of all countries.  LCP: CountryAll 
  10161.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10162.  
  10163.      Fetch a paired list of countries and their native language descriptions, 
  10164.      sorted by english description.  LCP: CountryEngNat 
  10165.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10166.  
  10167.      Fetch a paired list of native language country descriptions, and the 
  10168.      english name of the country. 
  10169.      bool retrieveFromNetCode() 
  10170.  
  10171.      Determine the country that uses the currently set NetCode.  Fills all the 
  10172.      other country attributes with values. LCP: CountryAttNetCode 
  10173.      bool retrieveFromDesc() 
  10174.  
  10175.      Determine the country that uses the currently set description.  Fills all 
  10176.      the other country attributes with values.  LCP: CountryAttribs 
  10177.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10178.  
  10179.      Determine the primary language of the current country.  "Desc" must be 
  10180.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10181.      CountryPrimLang 
  10182.      bool getAllLanguages(vecString &Languages) 
  10183.  
  10184.      Determine all the languages used by the current country.  "Desc" must be 
  10185.      already set.  The result is returned in priority order (highest priority 
  10186.      first) in vecString &Languages.  LCP: CountryLanguages 
  10187.      bool getLanguageList(vecString &Languages) 
  10188.  
  10189.      Get a list of all possible languages, in alphabetical order, returned in 
  10190.      vecString &Languages.  LCP: CountryLangList 
  10191.      bool getLanguageListEngNat(mapString &Languages) 
  10192.  
  10193.      Get a map of all possible languages, their native description in 
  10194.      alphabetical order by english description, returned in in vecString 
  10195.      &Languages.  LCP: CountryLangListEngNat 
  10196.  
  10197.   Delete a country 
  10198.      bool deleteFromDesc() 
  10199.  
  10200.      Delete the country that uses the currently set description.  LCP: 
  10201.      CountryDelete 
  10202.  
  10203.   Set data members 
  10204.      bool setAll(mapString &FieldValues) 
  10205.  
  10206.      Sets all the data members of a topic using the mapString which is passed 
  10207.      to it.  Only the fields present in the mapString are updated, the other 
  10208.      fields are untouched.  LCP: CountryUpdate 
  10209.      bool setDesc(const string &DescSetting) 
  10210.  
  10211.      Set the short description 
  10212.      bool setDescLong(const string &DescLongSetting) 
  10213.  
  10214.      Set the long description 
  10215.      bool setDescNative(const string &DescNativeSetting) 
  10216.  
  10217.      Set the native language description 
  10218.      bool setNetCode(const string &NetCodeSetting) 
  10219.  
  10220.      Set the internet code for this country 
  10221.      bool erase() 
  10222.  
  10223.      Sets all the data members to empty 
  10224.  
  10225.   Get data members 
  10226.      bool getAll(mapString &FieldValues) 
  10227.  
  10228.      Return a mapString of all the data members of this topic. The key is the 
  10229.      variable name.  LCP: CountryAttribs 
  10230.      string getDesc() 
  10231.  
  10232.      Get the short description 
  10233.      string getDescLong() 
  10234.  
  10235.      Get the long description 
  10236.      string getDescNative() 
  10237.  
  10238.      Get the native language description 
  10239.      string getNetCode() 
  10240.  
  10241.      Get the internet code for this country 
  10242.  
  10243.  
  10244. ΓòÉΓòÉΓòÉ <hidden> Y ΓòÉΓòÉΓòÉ
  10245.  
  10246.  
  10247. lyris_Country Class 
  10248.  
  10249.      class lyris_Country 
  10250.  
  10251.      For determining what countries exist, and what languages are spoken & 
  10252.      preferred in each country 
  10253.  
  10254.      Defined in: COUNTRY.H 
  10255.  
  10256.   Create a new country 
  10257.  
  10258.       bool createNew() 
  10259.  
  10260.      Creates a new country/language table row.  LCP: CountryCreate 
  10261.      bool updateDatabase() 
  10262.  
  10263.      Save the current country with the data members that have changed.  LCP: 
  10264.      CountryUpdate 
  10265.      bool VerifyFields() 
  10266.  
  10267.      Verify that all required fields are filled in. 
  10268.  
  10269.   Retrieve data from the database 
  10270.      bool fetchAllCountries(vecString &AllCountries) 
  10271.  
  10272.      Fetch a list of all countries.  LCP: CountryAll 
  10273.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10274.  
  10275.      Fetch a paired list of countries and their native language descriptions, 
  10276.      sorted by english description.  LCP: CountryEngNat 
  10277.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10278.  
  10279.      Fetch a paired list of native language country descriptions, and the 
  10280.      english name of the country. 
  10281.      bool retrieveFromNetCode() 
  10282.  
  10283.      Determine the country that uses the currently set NetCode.  Fills all the 
  10284.      other country attributes with values. LCP: CountryAttNetCode 
  10285.      bool retrieveFromDesc() 
  10286.  
  10287.      Determine the country that uses the currently set description.  Fills all 
  10288.      the other country attributes with values.  LCP: CountryAttribs 
  10289.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10290.  
  10291.      Determine the primary language of the current country.  "Desc" must be 
  10292.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10293.      CountryPrimLang 
  10294.      bool getAllLanguages(vecString &Languages) 
  10295.  
  10296.      Determine all the languages used by the current country.  "Desc" must be 
  10297.      already set.  The result is returned in priority order (highest priority 
  10298.      first) in vecString &Languages.  LCP: CountryLanguages 
  10299.      bool getLanguageList(vecString &Languages) 
  10300.  
  10301.      Get a list of all possible languages, in alphabetical order, returned in 
  10302.      vecString &Languages.  LCP: CountryLangList 
  10303.      bool getLanguageListEngNat(mapString &Languages) 
  10304.  
  10305.      Get a map of all possible languages, their native description in 
  10306.      alphabetical order by english description, returned in in vecString 
  10307.      &Languages.  LCP: CountryLangListEngNat 
  10308.  
  10309.   Delete a country 
  10310.      bool deleteFromDesc() 
  10311.  
  10312.      Delete the country that uses the currently set description.  LCP: 
  10313.      CountryDelete 
  10314.  
  10315.   Set data members 
  10316.      bool setAll(mapString &FieldValues) 
  10317.  
  10318.      Sets all the data members of a topic using the mapString which is passed 
  10319.      to it.  Only the fields present in the mapString are updated, the other 
  10320.      fields are untouched.  LCP: CountryUpdate 
  10321.      bool setDesc(const string &DescSetting) 
  10322.  
  10323.      Set the short description 
  10324.      bool setDescLong(const string &DescLongSetting) 
  10325.  
  10326.      Set the long description 
  10327.      bool setDescNative(const string &DescNativeSetting) 
  10328.  
  10329.      Set the native language description 
  10330.      bool setNetCode(const string &NetCodeSetting) 
  10331.  
  10332.      Set the internet code for this country 
  10333.      bool erase() 
  10334.  
  10335.      Sets all the data members to empty 
  10336.  
  10337.   Get data members 
  10338.      bool getAll(mapString &FieldValues) 
  10339.  
  10340.      Return a mapString of all the data members of this topic. The key is the 
  10341.      variable name.  LCP: CountryAttribs 
  10342.      string getDesc() 
  10343.  
  10344.      Get the short description 
  10345.      string getDescLong() 
  10346.  
  10347.      Get the long description 
  10348.      string getDescNative() 
  10349.  
  10350.      Get the native language description 
  10351.      string getNetCode() 
  10352.  
  10353.      Get the internet code for this country 
  10354.  
  10355.  
  10356. ΓòÉΓòÉΓòÉ <hidden> Z ΓòÉΓòÉΓòÉ
  10357.  
  10358.  
  10359. lyris_Country Class 
  10360.  
  10361.      class lyris_Country 
  10362.  
  10363.      For determining what countries exist, and what languages are spoken & 
  10364.      preferred in each country 
  10365.  
  10366.      Defined in: COUNTRY.H 
  10367.  
  10368.   Create a new country 
  10369.  
  10370.       bool createNew() 
  10371.  
  10372.      Creates a new country/language table row.  LCP: CountryCreate 
  10373.      bool updateDatabase() 
  10374.  
  10375.      Save the current country with the data members that have changed.  LCP: 
  10376.      CountryUpdate 
  10377.      bool VerifyFields() 
  10378.  
  10379.      Verify that all required fields are filled in. 
  10380.  
  10381.   Retrieve data from the database 
  10382.      bool fetchAllCountries(vecString &AllCountries) 
  10383.  
  10384.      Fetch a list of all countries.  LCP: CountryAll 
  10385.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10386.  
  10387.      Fetch a paired list of countries and their native language descriptions, 
  10388.      sorted by english description.  LCP: CountryEngNat 
  10389.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10390.  
  10391.      Fetch a paired list of native language country descriptions, and the 
  10392.      english name of the country. 
  10393.      bool retrieveFromNetCode() 
  10394.  
  10395.      Determine the country that uses the currently set NetCode.  Fills all the 
  10396.      other country attributes with values. LCP: CountryAttNetCode 
  10397.      bool retrieveFromDesc() 
  10398.  
  10399.      Determine the country that uses the currently set description.  Fills all 
  10400.      the other country attributes with values.  LCP: CountryAttribs 
  10401.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10402.  
  10403.      Determine the primary language of the current country.  "Desc" must be 
  10404.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10405.      CountryPrimLang 
  10406.      bool getAllLanguages(vecString &Languages) 
  10407.  
  10408.      Determine all the languages used by the current country.  "Desc" must be 
  10409.      already set.  The result is returned in priority order (highest priority 
  10410.      first) in vecString &Languages.  LCP: CountryLanguages 
  10411.      bool getLanguageList(vecString &Languages) 
  10412.  
  10413.      Get a list of all possible languages, in alphabetical order, returned in 
  10414.      vecString &Languages.  LCP: CountryLangList 
  10415.      bool getLanguageListEngNat(mapString &Languages) 
  10416.  
  10417.      Get a map of all possible languages, their native description in 
  10418.      alphabetical order by english description, returned in in vecString 
  10419.      &Languages.  LCP: CountryLangListEngNat 
  10420.  
  10421.   Delete a country 
  10422.      bool deleteFromDesc() 
  10423.  
  10424.      Delete the country that uses the currently set description.  LCP: 
  10425.      CountryDelete 
  10426.  
  10427.   Set data members 
  10428.      bool setAll(mapString &FieldValues) 
  10429.  
  10430.      Sets all the data members of a topic using the mapString which is passed 
  10431.      to it.  Only the fields present in the mapString are updated, the other 
  10432.      fields are untouched.  LCP: CountryUpdate 
  10433.      bool setDesc(const string &DescSetting) 
  10434.  
  10435.      Set the short description 
  10436.      bool setDescLong(const string &DescLongSetting) 
  10437.  
  10438.      Set the long description 
  10439.      bool setDescNative(const string &DescNativeSetting) 
  10440.  
  10441.      Set the native language description 
  10442.      bool setNetCode(const string &NetCodeSetting) 
  10443.  
  10444.      Set the internet code for this country 
  10445.      bool erase() 
  10446.  
  10447.      Sets all the data members to empty 
  10448.  
  10449.   Get data members 
  10450.      bool getAll(mapString &FieldValues) 
  10451.  
  10452.      Return a mapString of all the data members of this topic. The key is the 
  10453.      variable name.  LCP: CountryAttribs 
  10454.      string getDesc() 
  10455.  
  10456.      Get the short description 
  10457.      string getDescLong() 
  10458.  
  10459.      Get the long description 
  10460.      string getDescNative() 
  10461.  
  10462.      Get the native language description 
  10463.      string getNetCode() 
  10464.  
  10465.      Get the internet code for this country 
  10466.  
  10467.  
  10468. ΓòÉΓòÉΓòÉ <hidden> [ ΓòÉΓòÉΓòÉ
  10469.  
  10470.  
  10471. lyris_Country Class 
  10472.  
  10473.      class lyris_Country 
  10474.  
  10475.      For determining what countries exist, and what languages are spoken & 
  10476.      preferred in each country 
  10477.  
  10478.      Defined in: COUNTRY.H 
  10479.  
  10480.   Create a new country 
  10481.  
  10482.       bool createNew() 
  10483.  
  10484.      Creates a new country/language table row.  LCP: CountryCreate 
  10485.      bool updateDatabase() 
  10486.  
  10487.      Save the current country with the data members that have changed.  LCP: 
  10488.      CountryUpdate 
  10489.      bool VerifyFields() 
  10490.  
  10491.      Verify that all required fields are filled in. 
  10492.  
  10493.   Retrieve data from the database 
  10494.      bool fetchAllCountries(vecString &AllCountries) 
  10495.  
  10496.      Fetch a list of all countries.  LCP: CountryAll 
  10497.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10498.  
  10499.      Fetch a paired list of countries and their native language descriptions, 
  10500.      sorted by english description.  LCP: CountryEngNat 
  10501.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10502.  
  10503.      Fetch a paired list of native language country descriptions, and the 
  10504.      english name of the country. 
  10505.      bool retrieveFromNetCode() 
  10506.  
  10507.      Determine the country that uses the currently set NetCode.  Fills all the 
  10508.      other country attributes with values. LCP: CountryAttNetCode 
  10509.      bool retrieveFromDesc() 
  10510.  
  10511.      Determine the country that uses the currently set description.  Fills all 
  10512.      the other country attributes with values.  LCP: CountryAttribs 
  10513.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10514.  
  10515.      Determine the primary language of the current country.  "Desc" must be 
  10516.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10517.      CountryPrimLang 
  10518.      bool getAllLanguages(vecString &Languages) 
  10519.  
  10520.      Determine all the languages used by the current country.  "Desc" must be 
  10521.      already set.  The result is returned in priority order (highest priority 
  10522.      first) in vecString &Languages.  LCP: CountryLanguages 
  10523.      bool getLanguageList(vecString &Languages) 
  10524.  
  10525.      Get a list of all possible languages, in alphabetical order, returned in 
  10526.      vecString &Languages.  LCP: CountryLangList 
  10527.      bool getLanguageListEngNat(mapString &Languages) 
  10528.  
  10529.      Get a map of all possible languages, their native description in 
  10530.      alphabetical order by english description, returned in in vecString 
  10531.      &Languages.  LCP: CountryLangListEngNat 
  10532.  
  10533.   Delete a country 
  10534.      bool deleteFromDesc() 
  10535.  
  10536.      Delete the country that uses the currently set description.  LCP: 
  10537.      CountryDelete 
  10538.  
  10539.   Set data members 
  10540.      bool setAll(mapString &FieldValues) 
  10541.  
  10542.      Sets all the data members of a topic using the mapString which is passed 
  10543.      to it.  Only the fields present in the mapString are updated, the other 
  10544.      fields are untouched.  LCP: CountryUpdate 
  10545.      bool setDesc(const string &DescSetting) 
  10546.  
  10547.      Set the short description 
  10548.      bool setDescLong(const string &DescLongSetting) 
  10549.  
  10550.      Set the long description 
  10551.      bool setDescNative(const string &DescNativeSetting) 
  10552.  
  10553.      Set the native language description 
  10554.      bool setNetCode(const string &NetCodeSetting) 
  10555.  
  10556.      Set the internet code for this country 
  10557.      bool erase() 
  10558.  
  10559.      Sets all the data members to empty 
  10560.  
  10561.   Get data members 
  10562.      bool getAll(mapString &FieldValues) 
  10563.  
  10564.      Return a mapString of all the data members of this topic. The key is the 
  10565.      variable name.  LCP: CountryAttribs 
  10566.      string getDesc() 
  10567.  
  10568.      Get the short description 
  10569.      string getDescLong() 
  10570.  
  10571.      Get the long description 
  10572.      string getDescNative() 
  10573.  
  10574.      Get the native language description 
  10575.      string getNetCode() 
  10576.  
  10577.      Get the internet code for this country 
  10578.  
  10579.  
  10580. ΓòÉΓòÉΓòÉ <hidden> \ ΓòÉΓòÉΓòÉ
  10581.  
  10582.  
  10583. lyris_Country Class 
  10584.  
  10585.      class lyris_Country 
  10586.  
  10587.      For determining what countries exist, and what languages are spoken & 
  10588.      preferred in each country 
  10589.  
  10590.      Defined in: COUNTRY.H 
  10591.  
  10592.   Create a new country 
  10593.  
  10594.       bool createNew() 
  10595.  
  10596.      Creates a new country/language table row.  LCP: CountryCreate 
  10597.      bool updateDatabase() 
  10598.  
  10599.      Save the current country with the data members that have changed.  LCP: 
  10600.      CountryUpdate 
  10601.      bool VerifyFields() 
  10602.  
  10603.      Verify that all required fields are filled in. 
  10604.  
  10605.   Retrieve data from the database 
  10606.      bool fetchAllCountries(vecString &AllCountries) 
  10607.  
  10608.      Fetch a list of all countries.  LCP: CountryAll 
  10609.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10610.  
  10611.      Fetch a paired list of countries and their native language descriptions, 
  10612.      sorted by english description.  LCP: CountryEngNat 
  10613.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10614.  
  10615.      Fetch a paired list of native language country descriptions, and the 
  10616.      english name of the country. 
  10617.      bool retrieveFromNetCode() 
  10618.  
  10619.      Determine the country that uses the currently set NetCode.  Fills all the 
  10620.      other country attributes with values. LCP: CountryAttNetCode 
  10621.      bool retrieveFromDesc() 
  10622.  
  10623.      Determine the country that uses the currently set description.  Fills all 
  10624.      the other country attributes with values.  LCP: CountryAttribs 
  10625.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10626.  
  10627.      Determine the primary language of the current country.  "Desc" must be 
  10628.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10629.      CountryPrimLang 
  10630.      bool getAllLanguages(vecString &Languages) 
  10631.  
  10632.      Determine all the languages used by the current country.  "Desc" must be 
  10633.      already set.  The result is returned in priority order (highest priority 
  10634.      first) in vecString &Languages.  LCP: CountryLanguages 
  10635.      bool getLanguageList(vecString &Languages) 
  10636.  
  10637.      Get a list of all possible languages, in alphabetical order, returned in 
  10638.      vecString &Languages.  LCP: CountryLangList 
  10639.      bool getLanguageListEngNat(mapString &Languages) 
  10640.  
  10641.      Get a map of all possible languages, their native description in 
  10642.      alphabetical order by english description, returned in in vecString 
  10643.      &Languages.  LCP: CountryLangListEngNat 
  10644.  
  10645.   Delete a country 
  10646.      bool deleteFromDesc() 
  10647.  
  10648.      Delete the country that uses the currently set description.  LCP: 
  10649.      CountryDelete 
  10650.  
  10651.   Set data members 
  10652.      bool setAll(mapString &FieldValues) 
  10653.  
  10654.      Sets all the data members of a topic using the mapString which is passed 
  10655.      to it.  Only the fields present in the mapString are updated, the other 
  10656.      fields are untouched.  LCP: CountryUpdate 
  10657.      bool setDesc(const string &DescSetting) 
  10658.  
  10659.      Set the short description 
  10660.      bool setDescLong(const string &DescLongSetting) 
  10661.  
  10662.      Set the long description 
  10663.      bool setDescNative(const string &DescNativeSetting) 
  10664.  
  10665.      Set the native language description 
  10666.      bool setNetCode(const string &NetCodeSetting) 
  10667.  
  10668.      Set the internet code for this country 
  10669.      bool erase() 
  10670.  
  10671.      Sets all the data members to empty 
  10672.  
  10673.   Get data members 
  10674.      bool getAll(mapString &FieldValues) 
  10675.  
  10676.      Return a mapString of all the data members of this topic. The key is the 
  10677.      variable name.  LCP: CountryAttribs 
  10678.      string getDesc() 
  10679.  
  10680.      Get the short description 
  10681.      string getDescLong() 
  10682.  
  10683.      Get the long description 
  10684.      string getDescNative() 
  10685.  
  10686.      Get the native language description 
  10687.      string getNetCode() 
  10688.  
  10689.      Get the internet code for this country 
  10690.  
  10691.  
  10692. ΓòÉΓòÉΓòÉ <hidden> ] ΓòÉΓòÉΓòÉ
  10693.  
  10694.  
  10695. lyris_Country Class 
  10696.  
  10697.      class lyris_Country 
  10698.  
  10699.      For determining what countries exist, and what languages are spoken & 
  10700.      preferred in each country 
  10701.  
  10702.      Defined in: COUNTRY.H 
  10703.  
  10704.   Create a new country 
  10705.  
  10706.       bool createNew() 
  10707.  
  10708.      Creates a new country/language table row.  LCP: CountryCreate 
  10709.      bool updateDatabase() 
  10710.  
  10711.      Save the current country with the data members that have changed.  LCP: 
  10712.      CountryUpdate 
  10713.      bool VerifyFields() 
  10714.  
  10715.      Verify that all required fields are filled in. 
  10716.  
  10717.   Retrieve data from the database 
  10718.      bool fetchAllCountries(vecString &AllCountries) 
  10719.  
  10720.      Fetch a list of all countries.  LCP: CountryAll 
  10721.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10722.  
  10723.      Fetch a paired list of countries and their native language descriptions, 
  10724.      sorted by english description.  LCP: CountryEngNat 
  10725.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10726.  
  10727.      Fetch a paired list of native language country descriptions, and the 
  10728.      english name of the country. 
  10729.      bool retrieveFromNetCode() 
  10730.  
  10731.      Determine the country that uses the currently set NetCode.  Fills all the 
  10732.      other country attributes with values. LCP: CountryAttNetCode 
  10733.      bool retrieveFromDesc() 
  10734.  
  10735.      Determine the country that uses the currently set description.  Fills all 
  10736.      the other country attributes with values.  LCP: CountryAttribs 
  10737.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10738.  
  10739.      Determine the primary language of the current country.  "Desc" must be 
  10740.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10741.      CountryPrimLang 
  10742.      bool getAllLanguages(vecString &Languages) 
  10743.  
  10744.      Determine all the languages used by the current country.  "Desc" must be 
  10745.      already set.  The result is returned in priority order (highest priority 
  10746.      first) in vecString &Languages.  LCP: CountryLanguages 
  10747.      bool getLanguageList(vecString &Languages) 
  10748.  
  10749.      Get a list of all possible languages, in alphabetical order, returned in 
  10750.      vecString &Languages.  LCP: CountryLangList 
  10751.      bool getLanguageListEngNat(mapString &Languages) 
  10752.  
  10753.      Get a map of all possible languages, their native description in 
  10754.      alphabetical order by english description, returned in in vecString 
  10755.      &Languages.  LCP: CountryLangListEngNat 
  10756.  
  10757.   Delete a country 
  10758.      bool deleteFromDesc() 
  10759.  
  10760.      Delete the country that uses the currently set description.  LCP: 
  10761.      CountryDelete 
  10762.  
  10763.   Set data members 
  10764.      bool setAll(mapString &FieldValues) 
  10765.  
  10766.      Sets all the data members of a topic using the mapString which is passed 
  10767.      to it.  Only the fields present in the mapString are updated, the other 
  10768.      fields are untouched.  LCP: CountryUpdate 
  10769.      bool setDesc(const string &DescSetting) 
  10770.  
  10771.      Set the short description 
  10772.      bool setDescLong(const string &DescLongSetting) 
  10773.  
  10774.      Set the long description 
  10775.      bool setDescNative(const string &DescNativeSetting) 
  10776.  
  10777.      Set the native language description 
  10778.      bool setNetCode(const string &NetCodeSetting) 
  10779.  
  10780.      Set the internet code for this country 
  10781.      bool erase() 
  10782.  
  10783.      Sets all the data members to empty 
  10784.  
  10785.   Get data members 
  10786.      bool getAll(mapString &FieldValues) 
  10787.  
  10788.      Return a mapString of all the data members of this topic. The key is the 
  10789.      variable name.  LCP: CountryAttribs 
  10790.      string getDesc() 
  10791.  
  10792.      Get the short description 
  10793.      string getDescLong() 
  10794.  
  10795.      Get the long description 
  10796.      string getDescNative() 
  10797.  
  10798.      Get the native language description 
  10799.      string getNetCode() 
  10800.  
  10801.      Get the internet code for this country 
  10802.  
  10803.  
  10804. ΓòÉΓòÉΓòÉ <hidden> ^ ΓòÉΓòÉΓòÉ
  10805.  
  10806.  
  10807. lyris_Country Class 
  10808.  
  10809.      class lyris_Country 
  10810.  
  10811.      For determining what countries exist, and what languages are spoken & 
  10812.      preferred in each country 
  10813.  
  10814.      Defined in: COUNTRY.H 
  10815.  
  10816.   Create a new country 
  10817.  
  10818.       bool createNew() 
  10819.  
  10820.      Creates a new country/language table row.  LCP: CountryCreate 
  10821.      bool updateDatabase() 
  10822.  
  10823.      Save the current country with the data members that have changed.  LCP: 
  10824.      CountryUpdate 
  10825.      bool VerifyFields() 
  10826.  
  10827.      Verify that all required fields are filled in. 
  10828.  
  10829.   Retrieve data from the database 
  10830.      bool fetchAllCountries(vecString &AllCountries) 
  10831.  
  10832.      Fetch a list of all countries.  LCP: CountryAll 
  10833.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10834.  
  10835.      Fetch a paired list of countries and their native language descriptions, 
  10836.      sorted by english description.  LCP: CountryEngNat 
  10837.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10838.  
  10839.      Fetch a paired list of native language country descriptions, and the 
  10840.      english name of the country. 
  10841.      bool retrieveFromNetCode() 
  10842.  
  10843.      Determine the country that uses the currently set NetCode.  Fills all the 
  10844.      other country attributes with values. LCP: CountryAttNetCode 
  10845.      bool retrieveFromDesc() 
  10846.  
  10847.      Determine the country that uses the currently set description.  Fills all 
  10848.      the other country attributes with values.  LCP: CountryAttribs 
  10849.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10850.  
  10851.      Determine the primary language of the current country.  "Desc" must be 
  10852.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10853.      CountryPrimLang 
  10854.      bool getAllLanguages(vecString &Languages) 
  10855.  
  10856.      Determine all the languages used by the current country.  "Desc" must be 
  10857.      already set.  The result is returned in priority order (highest priority 
  10858.      first) in vecString &Languages.  LCP: CountryLanguages 
  10859.      bool getLanguageList(vecString &Languages) 
  10860.  
  10861.      Get a list of all possible languages, in alphabetical order, returned in 
  10862.      vecString &Languages.  LCP: CountryLangList 
  10863.      bool getLanguageListEngNat(mapString &Languages) 
  10864.  
  10865.      Get a map of all possible languages, their native description in 
  10866.      alphabetical order by english description, returned in in vecString 
  10867.      &Languages.  LCP: CountryLangListEngNat 
  10868.  
  10869.   Delete a country 
  10870.      bool deleteFromDesc() 
  10871.  
  10872.      Delete the country that uses the currently set description.  LCP: 
  10873.      CountryDelete 
  10874.  
  10875.   Set data members 
  10876.      bool setAll(mapString &FieldValues) 
  10877.  
  10878.      Sets all the data members of a topic using the mapString which is passed 
  10879.      to it.  Only the fields present in the mapString are updated, the other 
  10880.      fields are untouched.  LCP: CountryUpdate 
  10881.      bool setDesc(const string &DescSetting) 
  10882.  
  10883.      Set the short description 
  10884.      bool setDescLong(const string &DescLongSetting) 
  10885.  
  10886.      Set the long description 
  10887.      bool setDescNative(const string &DescNativeSetting) 
  10888.  
  10889.      Set the native language description 
  10890.      bool setNetCode(const string &NetCodeSetting) 
  10891.  
  10892.      Set the internet code for this country 
  10893.      bool erase() 
  10894.  
  10895.      Sets all the data members to empty 
  10896.  
  10897.   Get data members 
  10898.      bool getAll(mapString &FieldValues) 
  10899.  
  10900.      Return a mapString of all the data members of this topic. The key is the 
  10901.      variable name.  LCP: CountryAttribs 
  10902.      string getDesc() 
  10903.  
  10904.      Get the short description 
  10905.      string getDescLong() 
  10906.  
  10907.      Get the long description 
  10908.      string getDescNative() 
  10909.  
  10910.      Get the native language description 
  10911.      string getNetCode() 
  10912.  
  10913.      Get the internet code for this country 
  10914.  
  10915.  
  10916. ΓòÉΓòÉΓòÉ <hidden> _ ΓòÉΓòÉΓòÉ
  10917.  
  10918.  
  10919. lyris_Country Class 
  10920.  
  10921.      class lyris_Country 
  10922.  
  10923.      For determining what countries exist, and what languages are spoken & 
  10924.      preferred in each country 
  10925.  
  10926.      Defined in: COUNTRY.H 
  10927.  
  10928.   Create a new country 
  10929.  
  10930.       bool createNew() 
  10931.  
  10932.      Creates a new country/language table row.  LCP: CountryCreate 
  10933.      bool updateDatabase() 
  10934.  
  10935.      Save the current country with the data members that have changed.  LCP: 
  10936.      CountryUpdate 
  10937.      bool VerifyFields() 
  10938.  
  10939.      Verify that all required fields are filled in. 
  10940.  
  10941.   Retrieve data from the database 
  10942.      bool fetchAllCountries(vecString &AllCountries) 
  10943.  
  10944.      Fetch a list of all countries.  LCP: CountryAll 
  10945.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  10946.  
  10947.      Fetch a paired list of countries and their native language descriptions, 
  10948.      sorted by english description.  LCP: CountryEngNat 
  10949.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  10950.  
  10951.      Fetch a paired list of native language country descriptions, and the 
  10952.      english name of the country. 
  10953.      bool retrieveFromNetCode() 
  10954.  
  10955.      Determine the country that uses the currently set NetCode.  Fills all the 
  10956.      other country attributes with values. LCP: CountryAttNetCode 
  10957.      bool retrieveFromDesc() 
  10958.  
  10959.      Determine the country that uses the currently set description.  Fills all 
  10960.      the other country attributes with values.  LCP: CountryAttribs 
  10961.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  10962.  
  10963.      Determine the primary language of the current country.  "Desc" must be 
  10964.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  10965.      CountryPrimLang 
  10966.      bool getAllLanguages(vecString &Languages) 
  10967.  
  10968.      Determine all the languages used by the current country.  "Desc" must be 
  10969.      already set.  The result is returned in priority order (highest priority 
  10970.      first) in vecString &Languages.  LCP: CountryLanguages 
  10971.      bool getLanguageList(vecString &Languages) 
  10972.  
  10973.      Get a list of all possible languages, in alphabetical order, returned in 
  10974.      vecString &Languages.  LCP: CountryLangList 
  10975.      bool getLanguageListEngNat(mapString &Languages) 
  10976.  
  10977.      Get a map of all possible languages, their native description in 
  10978.      alphabetical order by english description, returned in in vecString 
  10979.      &Languages.  LCP: CountryLangListEngNat 
  10980.  
  10981.   Delete a country 
  10982.      bool deleteFromDesc() 
  10983.  
  10984.      Delete the country that uses the currently set description.  LCP: 
  10985.      CountryDelete 
  10986.  
  10987.   Set data members 
  10988.      bool setAll(mapString &FieldValues) 
  10989.  
  10990.      Sets all the data members of a topic using the mapString which is passed 
  10991.      to it.  Only the fields present in the mapString are updated, the other 
  10992.      fields are untouched.  LCP: CountryUpdate 
  10993.      bool setDesc(const string &DescSetting) 
  10994.  
  10995.      Set the short description 
  10996.      bool setDescLong(const string &DescLongSetting) 
  10997.  
  10998.      Set the long description 
  10999.      bool setDescNative(const string &DescNativeSetting) 
  11000.  
  11001.      Set the native language description 
  11002.      bool setNetCode(const string &NetCodeSetting) 
  11003.  
  11004.      Set the internet code for this country 
  11005.      bool erase() 
  11006.  
  11007.      Sets all the data members to empty 
  11008.  
  11009.   Get data members 
  11010.      bool getAll(mapString &FieldValues) 
  11011.  
  11012.      Return a mapString of all the data members of this topic. The key is the 
  11013.      variable name.  LCP: CountryAttribs 
  11014.      string getDesc() 
  11015.  
  11016.      Get the short description 
  11017.      string getDescLong() 
  11018.  
  11019.      Get the long description 
  11020.      string getDescNative() 
  11021.  
  11022.      Get the native language description 
  11023.      string getNetCode() 
  11024.  
  11025.      Get the internet code for this country 
  11026.  
  11027.  
  11028. ΓòÉΓòÉΓòÉ <hidden> ` ΓòÉΓòÉΓòÉ
  11029.  
  11030.  
  11031. lyris_Country Class 
  11032.  
  11033.      class lyris_Country 
  11034.  
  11035.      For determining what countries exist, and what languages are spoken & 
  11036.      preferred in each country 
  11037.  
  11038.      Defined in: COUNTRY.H 
  11039.  
  11040.   Create a new country 
  11041.  
  11042.       bool createNew() 
  11043.  
  11044.      Creates a new country/language table row.  LCP: CountryCreate 
  11045.      bool updateDatabase() 
  11046.  
  11047.      Save the current country with the data members that have changed.  LCP: 
  11048.      CountryUpdate 
  11049.      bool VerifyFields() 
  11050.  
  11051.      Verify that all required fields are filled in. 
  11052.  
  11053.   Retrieve data from the database 
  11054.      bool fetchAllCountries(vecString &AllCountries) 
  11055.  
  11056.      Fetch a list of all countries.  LCP: CountryAll 
  11057.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11058.  
  11059.      Fetch a paired list of countries and their native language descriptions, 
  11060.      sorted by english description.  LCP: CountryEngNat 
  11061.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11062.  
  11063.      Fetch a paired list of native language country descriptions, and the 
  11064.      english name of the country. 
  11065.      bool retrieveFromNetCode() 
  11066.  
  11067.      Determine the country that uses the currently set NetCode.  Fills all the 
  11068.      other country attributes with values. LCP: CountryAttNetCode 
  11069.      bool retrieveFromDesc() 
  11070.  
  11071.      Determine the country that uses the currently set description.  Fills all 
  11072.      the other country attributes with values.  LCP: CountryAttribs 
  11073.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11074.  
  11075.      Determine the primary language of the current country.  "Desc" must be 
  11076.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11077.      CountryPrimLang 
  11078.      bool getAllLanguages(vecString &Languages) 
  11079.  
  11080.      Determine all the languages used by the current country.  "Desc" must be 
  11081.      already set.  The result is returned in priority order (highest priority 
  11082.      first) in vecString &Languages.  LCP: CountryLanguages 
  11083.      bool getLanguageList(vecString &Languages) 
  11084.  
  11085.      Get a list of all possible languages, in alphabetical order, returned in 
  11086.      vecString &Languages.  LCP: CountryLangList 
  11087.      bool getLanguageListEngNat(mapString &Languages) 
  11088.  
  11089.      Get a map of all possible languages, their native description in 
  11090.      alphabetical order by english description, returned in in vecString 
  11091.      &Languages.  LCP: CountryLangListEngNat 
  11092.  
  11093.   Delete a country 
  11094.      bool deleteFromDesc() 
  11095.  
  11096.      Delete the country that uses the currently set description.  LCP: 
  11097.      CountryDelete 
  11098.  
  11099.   Set data members 
  11100.      bool setAll(mapString &FieldValues) 
  11101.  
  11102.      Sets all the data members of a topic using the mapString which is passed 
  11103.      to it.  Only the fields present in the mapString are updated, the other 
  11104.      fields are untouched.  LCP: CountryUpdate 
  11105.      bool setDesc(const string &DescSetting) 
  11106.  
  11107.      Set the short description 
  11108.      bool setDescLong(const string &DescLongSetting) 
  11109.  
  11110.      Set the long description 
  11111.      bool setDescNative(const string &DescNativeSetting) 
  11112.  
  11113.      Set the native language description 
  11114.      bool setNetCode(const string &NetCodeSetting) 
  11115.  
  11116.      Set the internet code for this country 
  11117.      bool erase() 
  11118.  
  11119.      Sets all the data members to empty 
  11120.  
  11121.   Get data members 
  11122.      bool getAll(mapString &FieldValues) 
  11123.  
  11124.      Return a mapString of all the data members of this topic. The key is the 
  11125.      variable name.  LCP: CountryAttribs 
  11126.      string getDesc() 
  11127.  
  11128.      Get the short description 
  11129.      string getDescLong() 
  11130.  
  11131.      Get the long description 
  11132.      string getDescNative() 
  11133.  
  11134.      Get the native language description 
  11135.      string getNetCode() 
  11136.  
  11137.      Get the internet code for this country 
  11138.  
  11139.  
  11140. ΓòÉΓòÉΓòÉ <hidden> a ΓòÉΓòÉΓòÉ
  11141.  
  11142.  
  11143. lyris_Country Class 
  11144.  
  11145.      class lyris_Country 
  11146.  
  11147.      For determining what countries exist, and what languages are spoken & 
  11148.      preferred in each country 
  11149.  
  11150.      Defined in: COUNTRY.H 
  11151.  
  11152.   Create a new country 
  11153.  
  11154.       bool createNew() 
  11155.  
  11156.      Creates a new country/language table row.  LCP: CountryCreate 
  11157.      bool updateDatabase() 
  11158.  
  11159.      Save the current country with the data members that have changed.  LCP: 
  11160.      CountryUpdate 
  11161.      bool VerifyFields() 
  11162.  
  11163.      Verify that all required fields are filled in. 
  11164.  
  11165.   Retrieve data from the database 
  11166.      bool fetchAllCountries(vecString &AllCountries) 
  11167.  
  11168.      Fetch a list of all countries.  LCP: CountryAll 
  11169.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11170.  
  11171.      Fetch a paired list of countries and their native language descriptions, 
  11172.      sorted by english description.  LCP: CountryEngNat 
  11173.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11174.  
  11175.      Fetch a paired list of native language country descriptions, and the 
  11176.      english name of the country. 
  11177.      bool retrieveFromNetCode() 
  11178.  
  11179.      Determine the country that uses the currently set NetCode.  Fills all the 
  11180.      other country attributes with values. LCP: CountryAttNetCode 
  11181.      bool retrieveFromDesc() 
  11182.  
  11183.      Determine the country that uses the currently set description.  Fills all 
  11184.      the other country attributes with values.  LCP: CountryAttribs 
  11185.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11186.  
  11187.      Determine the primary language of the current country.  "Desc" must be 
  11188.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11189.      CountryPrimLang 
  11190.      bool getAllLanguages(vecString &Languages) 
  11191.  
  11192.      Determine all the languages used by the current country.  "Desc" must be 
  11193.      already set.  The result is returned in priority order (highest priority 
  11194.      first) in vecString &Languages.  LCP: CountryLanguages 
  11195.      bool getLanguageList(vecString &Languages) 
  11196.  
  11197.      Get a list of all possible languages, in alphabetical order, returned in 
  11198.      vecString &Languages.  LCP: CountryLangList 
  11199.      bool getLanguageListEngNat(mapString &Languages) 
  11200.  
  11201.      Get a map of all possible languages, their native description in 
  11202.      alphabetical order by english description, returned in in vecString 
  11203.      &Languages.  LCP: CountryLangListEngNat 
  11204.  
  11205.   Delete a country 
  11206.      bool deleteFromDesc() 
  11207.  
  11208.      Delete the country that uses the currently set description.  LCP: 
  11209.      CountryDelete 
  11210.  
  11211.   Set data members 
  11212.      bool setAll(mapString &FieldValues) 
  11213.  
  11214.      Sets all the data members of a topic using the mapString which is passed 
  11215.      to it.  Only the fields present in the mapString are updated, the other 
  11216.      fields are untouched.  LCP: CountryUpdate 
  11217.      bool setDesc(const string &DescSetting) 
  11218.  
  11219.      Set the short description 
  11220.      bool setDescLong(const string &DescLongSetting) 
  11221.  
  11222.      Set the long description 
  11223.      bool setDescNative(const string &DescNativeSetting) 
  11224.  
  11225.      Set the native language description 
  11226.      bool setNetCode(const string &NetCodeSetting) 
  11227.  
  11228.      Set the internet code for this country 
  11229.      bool erase() 
  11230.  
  11231.      Sets all the data members to empty 
  11232.  
  11233.   Get data members 
  11234.      bool getAll(mapString &FieldValues) 
  11235.  
  11236.      Return a mapString of all the data members of this topic. The key is the 
  11237.      variable name.  LCP: CountryAttribs 
  11238.      string getDesc() 
  11239.  
  11240.      Get the short description 
  11241.      string getDescLong() 
  11242.  
  11243.      Get the long description 
  11244.      string getDescNative() 
  11245.  
  11246.      Get the native language description 
  11247.      string getNetCode() 
  11248.  
  11249.      Get the internet code for this country 
  11250.  
  11251.  
  11252. ΓòÉΓòÉΓòÉ <hidden> b ΓòÉΓòÉΓòÉ
  11253.  
  11254.  
  11255. lyris_Country Class 
  11256.  
  11257.      class lyris_Country 
  11258.  
  11259.      For determining what countries exist, and what languages are spoken & 
  11260.      preferred in each country 
  11261.  
  11262.      Defined in: COUNTRY.H 
  11263.  
  11264.   Create a new country 
  11265.  
  11266.       bool createNew() 
  11267.  
  11268.      Creates a new country/language table row.  LCP: CountryCreate 
  11269.      bool updateDatabase() 
  11270.  
  11271.      Save the current country with the data members that have changed.  LCP: 
  11272.      CountryUpdate 
  11273.      bool VerifyFields() 
  11274.  
  11275.      Verify that all required fields are filled in. 
  11276.  
  11277.   Retrieve data from the database 
  11278.      bool fetchAllCountries(vecString &AllCountries) 
  11279.  
  11280.      Fetch a list of all countries.  LCP: CountryAll 
  11281.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11282.  
  11283.      Fetch a paired list of countries and their native language descriptions, 
  11284.      sorted by english description.  LCP: CountryEngNat 
  11285.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11286.  
  11287.      Fetch a paired list of native language country descriptions, and the 
  11288.      english name of the country. 
  11289.      bool retrieveFromNetCode() 
  11290.  
  11291.      Determine the country that uses the currently set NetCode.  Fills all the 
  11292.      other country attributes with values. LCP: CountryAttNetCode 
  11293.      bool retrieveFromDesc() 
  11294.  
  11295.      Determine the country that uses the currently set description.  Fills all 
  11296.      the other country attributes with values.  LCP: CountryAttribs 
  11297.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11298.  
  11299.      Determine the primary language of the current country.  "Desc" must be 
  11300.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11301.      CountryPrimLang 
  11302.      bool getAllLanguages(vecString &Languages) 
  11303.  
  11304.      Determine all the languages used by the current country.  "Desc" must be 
  11305.      already set.  The result is returned in priority order (highest priority 
  11306.      first) in vecString &Languages.  LCP: CountryLanguages 
  11307.      bool getLanguageList(vecString &Languages) 
  11308.  
  11309.      Get a list of all possible languages, in alphabetical order, returned in 
  11310.      vecString &Languages.  LCP: CountryLangList 
  11311.      bool getLanguageListEngNat(mapString &Languages) 
  11312.  
  11313.      Get a map of all possible languages, their native description in 
  11314.      alphabetical order by english description, returned in in vecString 
  11315.      &Languages.  LCP: CountryLangListEngNat 
  11316.  
  11317.   Delete a country 
  11318.      bool deleteFromDesc() 
  11319.  
  11320.      Delete the country that uses the currently set description.  LCP: 
  11321.      CountryDelete 
  11322.  
  11323.   Set data members 
  11324.      bool setAll(mapString &FieldValues) 
  11325.  
  11326.      Sets all the data members of a topic using the mapString which is passed 
  11327.      to it.  Only the fields present in the mapString are updated, the other 
  11328.      fields are untouched.  LCP: CountryUpdate 
  11329.      bool setDesc(const string &DescSetting) 
  11330.  
  11331.      Set the short description 
  11332.      bool setDescLong(const string &DescLongSetting) 
  11333.  
  11334.      Set the long description 
  11335.      bool setDescNative(const string &DescNativeSetting) 
  11336.  
  11337.      Set the native language description 
  11338.      bool setNetCode(const string &NetCodeSetting) 
  11339.  
  11340.      Set the internet code for this country 
  11341.      bool erase() 
  11342.  
  11343.      Sets all the data members to empty 
  11344.  
  11345.   Get data members 
  11346.      bool getAll(mapString &FieldValues) 
  11347.  
  11348.      Return a mapString of all the data members of this topic. The key is the 
  11349.      variable name.  LCP: CountryAttribs 
  11350.      string getDesc() 
  11351.  
  11352.      Get the short description 
  11353.      string getDescLong() 
  11354.  
  11355.      Get the long description 
  11356.      string getDescNative() 
  11357.  
  11358.      Get the native language description 
  11359.      string getNetCode() 
  11360.  
  11361.      Get the internet code for this country 
  11362.  
  11363.  
  11364. ΓòÉΓòÉΓòÉ <hidden> c ΓòÉΓòÉΓòÉ
  11365.  
  11366.  
  11367. lyris_Country Class 
  11368.  
  11369.      class lyris_Country 
  11370.  
  11371.      For determining what countries exist, and what languages are spoken & 
  11372.      preferred in each country 
  11373.  
  11374.      Defined in: COUNTRY.H 
  11375.  
  11376.   Create a new country 
  11377.  
  11378.       bool createNew() 
  11379.  
  11380.      Creates a new country/language table row.  LCP: CountryCreate 
  11381.      bool updateDatabase() 
  11382.  
  11383.      Save the current country with the data members that have changed.  LCP: 
  11384.      CountryUpdate 
  11385.      bool VerifyFields() 
  11386.  
  11387.      Verify that all required fields are filled in. 
  11388.  
  11389.   Retrieve data from the database 
  11390.      bool fetchAllCountries(vecString &AllCountries) 
  11391.  
  11392.      Fetch a list of all countries.  LCP: CountryAll 
  11393.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11394.  
  11395.      Fetch a paired list of countries and their native language descriptions, 
  11396.      sorted by english description.  LCP: CountryEngNat 
  11397.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11398.  
  11399.      Fetch a paired list of native language country descriptions, and the 
  11400.      english name of the country. 
  11401.      bool retrieveFromNetCode() 
  11402.  
  11403.      Determine the country that uses the currently set NetCode.  Fills all the 
  11404.      other country attributes with values. LCP: CountryAttNetCode 
  11405.      bool retrieveFromDesc() 
  11406.  
  11407.      Determine the country that uses the currently set description.  Fills all 
  11408.      the other country attributes with values.  LCP: CountryAttribs 
  11409.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11410.  
  11411.      Determine the primary language of the current country.  "Desc" must be 
  11412.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11413.      CountryPrimLang 
  11414.      bool getAllLanguages(vecString &Languages) 
  11415.  
  11416.      Determine all the languages used by the current country.  "Desc" must be 
  11417.      already set.  The result is returned in priority order (highest priority 
  11418.      first) in vecString &Languages.  LCP: CountryLanguages 
  11419.      bool getLanguageList(vecString &Languages) 
  11420.  
  11421.      Get a list of all possible languages, in alphabetical order, returned in 
  11422.      vecString &Languages.  LCP: CountryLangList 
  11423.      bool getLanguageListEngNat(mapString &Languages) 
  11424.  
  11425.      Get a map of all possible languages, their native description in 
  11426.      alphabetical order by english description, returned in in vecString 
  11427.      &Languages.  LCP: CountryLangListEngNat 
  11428.  
  11429.   Delete a country 
  11430.      bool deleteFromDesc() 
  11431.  
  11432.      Delete the country that uses the currently set description.  LCP: 
  11433.      CountryDelete 
  11434.  
  11435.   Set data members 
  11436.      bool setAll(mapString &FieldValues) 
  11437.  
  11438.      Sets all the data members of a topic using the mapString which is passed 
  11439.      to it.  Only the fields present in the mapString are updated, the other 
  11440.      fields are untouched.  LCP: CountryUpdate 
  11441.      bool setDesc(const string &DescSetting) 
  11442.  
  11443.      Set the short description 
  11444.      bool setDescLong(const string &DescLongSetting) 
  11445.  
  11446.      Set the long description 
  11447.      bool setDescNative(const string &DescNativeSetting) 
  11448.  
  11449.      Set the native language description 
  11450.      bool setNetCode(const string &NetCodeSetting) 
  11451.  
  11452.      Set the internet code for this country 
  11453.      bool erase() 
  11454.  
  11455.      Sets all the data members to empty 
  11456.  
  11457.   Get data members 
  11458.      bool getAll(mapString &FieldValues) 
  11459.  
  11460.      Return a mapString of all the data members of this topic. The key is the 
  11461.      variable name.  LCP: CountryAttribs 
  11462.      string getDesc() 
  11463.  
  11464.      Get the short description 
  11465.      string getDescLong() 
  11466.  
  11467.      Get the long description 
  11468.      string getDescNative() 
  11469.  
  11470.      Get the native language description 
  11471.      string getNetCode() 
  11472.  
  11473.      Get the internet code for this country 
  11474.  
  11475.  
  11476. ΓòÉΓòÉΓòÉ <hidden> d ΓòÉΓòÉΓòÉ
  11477.  
  11478.  
  11479. lyris_Country Class 
  11480.  
  11481.      class lyris_Country 
  11482.  
  11483.      For determining what countries exist, and what languages are spoken & 
  11484.      preferred in each country 
  11485.  
  11486.      Defined in: COUNTRY.H 
  11487.  
  11488.   Create a new country 
  11489.  
  11490.       bool createNew() 
  11491.  
  11492.      Creates a new country/language table row.  LCP: CountryCreate 
  11493.      bool updateDatabase() 
  11494.  
  11495.      Save the current country with the data members that have changed.  LCP: 
  11496.      CountryUpdate 
  11497.      bool VerifyFields() 
  11498.  
  11499.      Verify that all required fields are filled in. 
  11500.  
  11501.   Retrieve data from the database 
  11502.      bool fetchAllCountries(vecString &AllCountries) 
  11503.  
  11504.      Fetch a list of all countries.  LCP: CountryAll 
  11505.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11506.  
  11507.      Fetch a paired list of countries and their native language descriptions, 
  11508.      sorted by english description.  LCP: CountryEngNat 
  11509.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11510.  
  11511.      Fetch a paired list of native language country descriptions, and the 
  11512.      english name of the country. 
  11513.      bool retrieveFromNetCode() 
  11514.  
  11515.      Determine the country that uses the currently set NetCode.  Fills all the 
  11516.      other country attributes with values. LCP: CountryAttNetCode 
  11517.      bool retrieveFromDesc() 
  11518.  
  11519.      Determine the country that uses the currently set description.  Fills all 
  11520.      the other country attributes with values.  LCP: CountryAttribs 
  11521.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11522.  
  11523.      Determine the primary language of the current country.  "Desc" must be 
  11524.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11525.      CountryPrimLang 
  11526.      bool getAllLanguages(vecString &Languages) 
  11527.  
  11528.      Determine all the languages used by the current country.  "Desc" must be 
  11529.      already set.  The result is returned in priority order (highest priority 
  11530.      first) in vecString &Languages.  LCP: CountryLanguages 
  11531.      bool getLanguageList(vecString &Languages) 
  11532.  
  11533.      Get a list of all possible languages, in alphabetical order, returned in 
  11534.      vecString &Languages.  LCP: CountryLangList 
  11535.      bool getLanguageListEngNat(mapString &Languages) 
  11536.  
  11537.      Get a map of all possible languages, their native description in 
  11538.      alphabetical order by english description, returned in in vecString 
  11539.      &Languages.  LCP: CountryLangListEngNat 
  11540.  
  11541.   Delete a country 
  11542.      bool deleteFromDesc() 
  11543.  
  11544.      Delete the country that uses the currently set description.  LCP: 
  11545.      CountryDelete 
  11546.  
  11547.   Set data members 
  11548.      bool setAll(mapString &FieldValues) 
  11549.  
  11550.      Sets all the data members of a topic using the mapString which is passed 
  11551.      to it.  Only the fields present in the mapString are updated, the other 
  11552.      fields are untouched.  LCP: CountryUpdate 
  11553.      bool setDesc(const string &DescSetting) 
  11554.  
  11555.      Set the short description 
  11556.      bool setDescLong(const string &DescLongSetting) 
  11557.  
  11558.      Set the long description 
  11559.      bool setDescNative(const string &DescNativeSetting) 
  11560.  
  11561.      Set the native language description 
  11562.      bool setNetCode(const string &NetCodeSetting) 
  11563.  
  11564.      Set the internet code for this country 
  11565.      bool erase() 
  11566.  
  11567.      Sets all the data members to empty 
  11568.  
  11569.   Get data members 
  11570.      bool getAll(mapString &FieldValues) 
  11571.  
  11572.      Return a mapString of all the data members of this topic. The key is the 
  11573.      variable name.  LCP: CountryAttribs 
  11574.      string getDesc() 
  11575.  
  11576.      Get the short description 
  11577.      string getDescLong() 
  11578.  
  11579.      Get the long description 
  11580.      string getDescNative() 
  11581.  
  11582.      Get the native language description 
  11583.      string getNetCode() 
  11584.  
  11585.      Get the internet code for this country 
  11586.  
  11587.  
  11588. ΓòÉΓòÉΓòÉ <hidden> e ΓòÉΓòÉΓòÉ
  11589.  
  11590.  
  11591. lyris_Country Class 
  11592.  
  11593.      class lyris_Country 
  11594.  
  11595.      For determining what countries exist, and what languages are spoken & 
  11596.      preferred in each country 
  11597.  
  11598.      Defined in: COUNTRY.H 
  11599.  
  11600.   Create a new country 
  11601.  
  11602.       bool createNew() 
  11603.  
  11604.      Creates a new country/language table row.  LCP: CountryCreate 
  11605.      bool updateDatabase() 
  11606.  
  11607.      Save the current country with the data members that have changed.  LCP: 
  11608.      CountryUpdate 
  11609.      bool VerifyFields() 
  11610.  
  11611.      Verify that all required fields are filled in. 
  11612.  
  11613.   Retrieve data from the database 
  11614.      bool fetchAllCountries(vecString &AllCountries) 
  11615.  
  11616.      Fetch a list of all countries.  LCP: CountryAll 
  11617.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11618.  
  11619.      Fetch a paired list of countries and their native language descriptions, 
  11620.      sorted by english description.  LCP: CountryEngNat 
  11621.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11622.  
  11623.      Fetch a paired list of native language country descriptions, and the 
  11624.      english name of the country. 
  11625.      bool retrieveFromNetCode() 
  11626.  
  11627.      Determine the country that uses the currently set NetCode.  Fills all the 
  11628.      other country attributes with values. LCP: CountryAttNetCode 
  11629.      bool retrieveFromDesc() 
  11630.  
  11631.      Determine the country that uses the currently set description.  Fills all 
  11632.      the other country attributes with values.  LCP: CountryAttribs 
  11633.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11634.  
  11635.      Determine the primary language of the current country.  "Desc" must be 
  11636.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11637.      CountryPrimLang 
  11638.      bool getAllLanguages(vecString &Languages) 
  11639.  
  11640.      Determine all the languages used by the current country.  "Desc" must be 
  11641.      already set.  The result is returned in priority order (highest priority 
  11642.      first) in vecString &Languages.  LCP: CountryLanguages 
  11643.      bool getLanguageList(vecString &Languages) 
  11644.  
  11645.      Get a list of all possible languages, in alphabetical order, returned in 
  11646.      vecString &Languages.  LCP: CountryLangList 
  11647.      bool getLanguageListEngNat(mapString &Languages) 
  11648.  
  11649.      Get a map of all possible languages, their native description in 
  11650.      alphabetical order by english description, returned in in vecString 
  11651.      &Languages.  LCP: CountryLangListEngNat 
  11652.  
  11653.   Delete a country 
  11654.      bool deleteFromDesc() 
  11655.  
  11656.      Delete the country that uses the currently set description.  LCP: 
  11657.      CountryDelete 
  11658.  
  11659.   Set data members 
  11660.      bool setAll(mapString &FieldValues) 
  11661.  
  11662.      Sets all the data members of a topic using the mapString which is passed 
  11663.      to it.  Only the fields present in the mapString are updated, the other 
  11664.      fields are untouched.  LCP: CountryUpdate 
  11665.      bool setDesc(const string &DescSetting) 
  11666.  
  11667.      Set the short description 
  11668.      bool setDescLong(const string &DescLongSetting) 
  11669.  
  11670.      Set the long description 
  11671.      bool setDescNative(const string &DescNativeSetting) 
  11672.  
  11673.      Set the native language description 
  11674.      bool setNetCode(const string &NetCodeSetting) 
  11675.  
  11676.      Set the internet code for this country 
  11677.      bool erase() 
  11678.  
  11679.      Sets all the data members to empty 
  11680.  
  11681.   Get data members 
  11682.      bool getAll(mapString &FieldValues) 
  11683.  
  11684.      Return a mapString of all the data members of this topic. The key is the 
  11685.      variable name.  LCP: CountryAttribs 
  11686.      string getDesc() 
  11687.  
  11688.      Get the short description 
  11689.      string getDescLong() 
  11690.  
  11691.      Get the long description 
  11692.      string getDescNative() 
  11693.  
  11694.      Get the native language description 
  11695.      string getNetCode() 
  11696.  
  11697.      Get the internet code for this country 
  11698.  
  11699.  
  11700. ΓòÉΓòÉΓòÉ <hidden> f ΓòÉΓòÉΓòÉ
  11701.  
  11702.  
  11703. lyris_Country Class 
  11704.  
  11705.      class lyris_Country 
  11706.  
  11707.      For determining what countries exist, and what languages are spoken & 
  11708.      preferred in each country 
  11709.  
  11710.      Defined in: COUNTRY.H 
  11711.  
  11712.   Create a new country 
  11713.  
  11714.       bool createNew() 
  11715.  
  11716.      Creates a new country/language table row.  LCP: CountryCreate 
  11717.      bool updateDatabase() 
  11718.  
  11719.      Save the current country with the data members that have changed.  LCP: 
  11720.      CountryUpdate 
  11721.      bool VerifyFields() 
  11722.  
  11723.      Verify that all required fields are filled in. 
  11724.  
  11725.   Retrieve data from the database 
  11726.      bool fetchAllCountries(vecString &AllCountries) 
  11727.  
  11728.      Fetch a list of all countries.  LCP: CountryAll 
  11729.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11730.  
  11731.      Fetch a paired list of countries and their native language descriptions, 
  11732.      sorted by english description.  LCP: CountryEngNat 
  11733.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11734.  
  11735.      Fetch a paired list of native language country descriptions, and the 
  11736.      english name of the country. 
  11737.      bool retrieveFromNetCode() 
  11738.  
  11739.      Determine the country that uses the currently set NetCode.  Fills all the 
  11740.      other country attributes with values. LCP: CountryAttNetCode 
  11741.      bool retrieveFromDesc() 
  11742.  
  11743.      Determine the country that uses the currently set description.  Fills all 
  11744.      the other country attributes with values.  LCP: CountryAttribs 
  11745.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11746.  
  11747.      Determine the primary language of the current country.  "Desc" must be 
  11748.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11749.      CountryPrimLang 
  11750.      bool getAllLanguages(vecString &Languages) 
  11751.  
  11752.      Determine all the languages used by the current country.  "Desc" must be 
  11753.      already set.  The result is returned in priority order (highest priority 
  11754.      first) in vecString &Languages.  LCP: CountryLanguages 
  11755.      bool getLanguageList(vecString &Languages) 
  11756.  
  11757.      Get a list of all possible languages, in alphabetical order, returned in 
  11758.      vecString &Languages.  LCP: CountryLangList 
  11759.      bool getLanguageListEngNat(mapString &Languages) 
  11760.  
  11761.      Get a map of all possible languages, their native description in 
  11762.      alphabetical order by english description, returned in in vecString 
  11763.      &Languages.  LCP: CountryLangListEngNat 
  11764.  
  11765.   Delete a country 
  11766.      bool deleteFromDesc() 
  11767.  
  11768.      Delete the country that uses the currently set description.  LCP: 
  11769.      CountryDelete 
  11770.  
  11771.   Set data members 
  11772.      bool setAll(mapString &FieldValues) 
  11773.  
  11774.      Sets all the data members of a topic using the mapString which is passed 
  11775.      to it.  Only the fields present in the mapString are updated, the other 
  11776.      fields are untouched.  LCP: CountryUpdate 
  11777.      bool setDesc(const string &DescSetting) 
  11778.  
  11779.      Set the short description 
  11780.      bool setDescLong(const string &DescLongSetting) 
  11781.  
  11782.      Set the long description 
  11783.      bool setDescNative(const string &DescNativeSetting) 
  11784.  
  11785.      Set the native language description 
  11786.      bool setNetCode(const string &NetCodeSetting) 
  11787.  
  11788.      Set the internet code for this country 
  11789.      bool erase() 
  11790.  
  11791.      Sets all the data members to empty 
  11792.  
  11793.   Get data members 
  11794.      bool getAll(mapString &FieldValues) 
  11795.  
  11796.      Return a mapString of all the data members of this topic. The key is the 
  11797.      variable name.  LCP: CountryAttribs 
  11798.      string getDesc() 
  11799.  
  11800.      Get the short description 
  11801.      string getDescLong() 
  11802.  
  11803.      Get the long description 
  11804.      string getDescNative() 
  11805.  
  11806.      Get the native language description 
  11807.      string getNetCode() 
  11808.  
  11809.      Get the internet code for this country 
  11810.  
  11811.  
  11812. ΓòÉΓòÉΓòÉ <hidden> g ΓòÉΓòÉΓòÉ
  11813.  
  11814.  
  11815. lyris_Country Class 
  11816.  
  11817.      class lyris_Country 
  11818.  
  11819.      For determining what countries exist, and what languages are spoken & 
  11820.      preferred in each country 
  11821.  
  11822.      Defined in: COUNTRY.H 
  11823.  
  11824.   Create a new country 
  11825.  
  11826.       bool createNew() 
  11827.  
  11828.      Creates a new country/language table row.  LCP: CountryCreate 
  11829.      bool updateDatabase() 
  11830.  
  11831.      Save the current country with the data members that have changed.  LCP: 
  11832.      CountryUpdate 
  11833.      bool VerifyFields() 
  11834.  
  11835.      Verify that all required fields are filled in. 
  11836.  
  11837.   Retrieve data from the database 
  11838.      bool fetchAllCountries(vecString &AllCountries) 
  11839.  
  11840.      Fetch a list of all countries.  LCP: CountryAll 
  11841.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11842.  
  11843.      Fetch a paired list of countries and their native language descriptions, 
  11844.      sorted by english description.  LCP: CountryEngNat 
  11845.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11846.  
  11847.      Fetch a paired list of native language country descriptions, and the 
  11848.      english name of the country. 
  11849.      bool retrieveFromNetCode() 
  11850.  
  11851.      Determine the country that uses the currently set NetCode.  Fills all the 
  11852.      other country attributes with values. LCP: CountryAttNetCode 
  11853.      bool retrieveFromDesc() 
  11854.  
  11855.      Determine the country that uses the currently set description.  Fills all 
  11856.      the other country attributes with values.  LCP: CountryAttribs 
  11857.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11858.  
  11859.      Determine the primary language of the current country.  "Desc" must be 
  11860.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11861.      CountryPrimLang 
  11862.      bool getAllLanguages(vecString &Languages) 
  11863.  
  11864.      Determine all the languages used by the current country.  "Desc" must be 
  11865.      already set.  The result is returned in priority order (highest priority 
  11866.      first) in vecString &Languages.  LCP: CountryLanguages 
  11867.      bool getLanguageList(vecString &Languages) 
  11868.  
  11869.      Get a list of all possible languages, in alphabetical order, returned in 
  11870.      vecString &Languages.  LCP: CountryLangList 
  11871.      bool getLanguageListEngNat(mapString &Languages) 
  11872.  
  11873.      Get a map of all possible languages, their native description in 
  11874.      alphabetical order by english description, returned in in vecString 
  11875.      &Languages.  LCP: CountryLangListEngNat 
  11876.  
  11877.   Delete a country 
  11878.      bool deleteFromDesc() 
  11879.  
  11880.      Delete the country that uses the currently set description.  LCP: 
  11881.      CountryDelete 
  11882.  
  11883.   Set data members 
  11884.      bool setAll(mapString &FieldValues) 
  11885.  
  11886.      Sets all the data members of a topic using the mapString which is passed 
  11887.      to it.  Only the fields present in the mapString are updated, the other 
  11888.      fields are untouched.  LCP: CountryUpdate 
  11889.      bool setDesc(const string &DescSetting) 
  11890.  
  11891.      Set the short description 
  11892.      bool setDescLong(const string &DescLongSetting) 
  11893.  
  11894.      Set the long description 
  11895.      bool setDescNative(const string &DescNativeSetting) 
  11896.  
  11897.      Set the native language description 
  11898.      bool setNetCode(const string &NetCodeSetting) 
  11899.  
  11900.      Set the internet code for this country 
  11901.      bool erase() 
  11902.  
  11903.      Sets all the data members to empty 
  11904.  
  11905.   Get data members 
  11906.      bool getAll(mapString &FieldValues) 
  11907.  
  11908.      Return a mapString of all the data members of this topic. The key is the 
  11909.      variable name.  LCP: CountryAttribs 
  11910.      string getDesc() 
  11911.  
  11912.      Get the short description 
  11913.      string getDescLong() 
  11914.  
  11915.      Get the long description 
  11916.      string getDescNative() 
  11917.  
  11918.      Get the native language description 
  11919.      string getNetCode() 
  11920.  
  11921.      Get the internet code for this country 
  11922.  
  11923.  
  11924. ΓòÉΓòÉΓòÉ <hidden> h ΓòÉΓòÉΓòÉ
  11925.  
  11926.  
  11927. lyris_Country Class 
  11928.  
  11929.      class lyris_Country 
  11930.  
  11931.      For determining what countries exist, and what languages are spoken & 
  11932.      preferred in each country 
  11933.  
  11934.      Defined in: COUNTRY.H 
  11935.  
  11936.   Create a new country 
  11937.  
  11938.       bool createNew() 
  11939.  
  11940.      Creates a new country/language table row.  LCP: CountryCreate 
  11941.      bool updateDatabase() 
  11942.  
  11943.      Save the current country with the data members that have changed.  LCP: 
  11944.      CountryUpdate 
  11945.      bool VerifyFields() 
  11946.  
  11947.      Verify that all required fields are filled in. 
  11948.  
  11949.   Retrieve data from the database 
  11950.      bool fetchAllCountries(vecString &AllCountries) 
  11951.  
  11952.      Fetch a list of all countries.  LCP: CountryAll 
  11953.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  11954.  
  11955.      Fetch a paired list of countries and their native language descriptions, 
  11956.      sorted by english description.  LCP: CountryEngNat 
  11957.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  11958.  
  11959.      Fetch a paired list of native language country descriptions, and the 
  11960.      english name of the country. 
  11961.      bool retrieveFromNetCode() 
  11962.  
  11963.      Determine the country that uses the currently set NetCode.  Fills all the 
  11964.      other country attributes with values. LCP: CountryAttNetCode 
  11965.      bool retrieveFromDesc() 
  11966.  
  11967.      Determine the country that uses the currently set description.  Fills all 
  11968.      the other country attributes with values.  LCP: CountryAttribs 
  11969.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  11970.  
  11971.      Determine the primary language of the current country.  "Desc" must be 
  11972.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  11973.      CountryPrimLang 
  11974.      bool getAllLanguages(vecString &Languages) 
  11975.  
  11976.      Determine all the languages used by the current country.  "Desc" must be 
  11977.      already set.  The result is returned in priority order (highest priority 
  11978.      first) in vecString &Languages.  LCP: CountryLanguages 
  11979.      bool getLanguageList(vecString &Languages) 
  11980.  
  11981.      Get a list of all possible languages, in alphabetical order, returned in 
  11982.      vecString &Languages.  LCP: CountryLangList 
  11983.      bool getLanguageListEngNat(mapString &Languages) 
  11984.  
  11985.      Get a map of all possible languages, their native description in 
  11986.      alphabetical order by english description, returned in in vecString 
  11987.      &Languages.  LCP: CountryLangListEngNat 
  11988.  
  11989.   Delete a country 
  11990.      bool deleteFromDesc() 
  11991.  
  11992.      Delete the country that uses the currently set description.  LCP: 
  11993.      CountryDelete 
  11994.  
  11995.   Set data members 
  11996.      bool setAll(mapString &FieldValues) 
  11997.  
  11998.      Sets all the data members of a topic using the mapString which is passed 
  11999.      to it.  Only the fields present in the mapString are updated, the other 
  12000.      fields are untouched.  LCP: CountryUpdate 
  12001.      bool setDesc(const string &DescSetting) 
  12002.  
  12003.      Set the short description 
  12004.      bool setDescLong(const string &DescLongSetting) 
  12005.  
  12006.      Set the long description 
  12007.      bool setDescNative(const string &DescNativeSetting) 
  12008.  
  12009.      Set the native language description 
  12010.      bool setNetCode(const string &NetCodeSetting) 
  12011.  
  12012.      Set the internet code for this country 
  12013.      bool erase() 
  12014.  
  12015.      Sets all the data members to empty 
  12016.  
  12017.   Get data members 
  12018.      bool getAll(mapString &FieldValues) 
  12019.  
  12020.      Return a mapString of all the data members of this topic. The key is the 
  12021.      variable name.  LCP: CountryAttribs 
  12022.      string getDesc() 
  12023.  
  12024.      Get the short description 
  12025.      string getDescLong() 
  12026.  
  12027.      Get the long description 
  12028.      string getDescNative() 
  12029.  
  12030.      Get the native language description 
  12031.      string getNetCode() 
  12032.  
  12033.      Get the internet code for this country 
  12034.  
  12035.  
  12036. ΓòÉΓòÉΓòÉ <hidden> i ΓòÉΓòÉΓòÉ
  12037.  
  12038.  
  12039. lyris_Country Class 
  12040.  
  12041.      class lyris_Country 
  12042.  
  12043.      For determining what countries exist, and what languages are spoken & 
  12044.      preferred in each country 
  12045.  
  12046.      Defined in: COUNTRY.H 
  12047.  
  12048.   Create a new country 
  12049.  
  12050.       bool createNew() 
  12051.  
  12052.      Creates a new country/language table row.  LCP: CountryCreate 
  12053.      bool updateDatabase() 
  12054.  
  12055.      Save the current country with the data members that have changed.  LCP: 
  12056.      CountryUpdate 
  12057.      bool VerifyFields() 
  12058.  
  12059.      Verify that all required fields are filled in. 
  12060.  
  12061.   Retrieve data from the database 
  12062.      bool fetchAllCountries(vecString &AllCountries) 
  12063.  
  12064.      Fetch a list of all countries.  LCP: CountryAll 
  12065.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12066.  
  12067.      Fetch a paired list of countries and their native language descriptions, 
  12068.      sorted by english description.  LCP: CountryEngNat 
  12069.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12070.  
  12071.      Fetch a paired list of native language country descriptions, and the 
  12072.      english name of the country. 
  12073.      bool retrieveFromNetCode() 
  12074.  
  12075.      Determine the country that uses the currently set NetCode.  Fills all the 
  12076.      other country attributes with values. LCP: CountryAttNetCode 
  12077.      bool retrieveFromDesc() 
  12078.  
  12079.      Determine the country that uses the currently set description.  Fills all 
  12080.      the other country attributes with values.  LCP: CountryAttribs 
  12081.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12082.  
  12083.      Determine the primary language of the current country.  "Desc" must be 
  12084.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12085.      CountryPrimLang 
  12086.      bool getAllLanguages(vecString &Languages) 
  12087.  
  12088.      Determine all the languages used by the current country.  "Desc" must be 
  12089.      already set.  The result is returned in priority order (highest priority 
  12090.      first) in vecString &Languages.  LCP: CountryLanguages 
  12091.      bool getLanguageList(vecString &Languages) 
  12092.  
  12093.      Get a list of all possible languages, in alphabetical order, returned in 
  12094.      vecString &Languages.  LCP: CountryLangList 
  12095.      bool getLanguageListEngNat(mapString &Languages) 
  12096.  
  12097.      Get a map of all possible languages, their native description in 
  12098.      alphabetical order by english description, returned in in vecString 
  12099.      &Languages.  LCP: CountryLangListEngNat 
  12100.  
  12101.   Delete a country 
  12102.      bool deleteFromDesc() 
  12103.  
  12104.      Delete the country that uses the currently set description.  LCP: 
  12105.      CountryDelete 
  12106.  
  12107.   Set data members 
  12108.      bool setAll(mapString &FieldValues) 
  12109.  
  12110.      Sets all the data members of a topic using the mapString which is passed 
  12111.      to it.  Only the fields present in the mapString are updated, the other 
  12112.      fields are untouched.  LCP: CountryUpdate 
  12113.      bool setDesc(const string &DescSetting) 
  12114.  
  12115.      Set the short description 
  12116.      bool setDescLong(const string &DescLongSetting) 
  12117.  
  12118.      Set the long description 
  12119.      bool setDescNative(const string &DescNativeSetting) 
  12120.  
  12121.      Set the native language description 
  12122.      bool setNetCode(const string &NetCodeSetting) 
  12123.  
  12124.      Set the internet code for this country 
  12125.      bool erase() 
  12126.  
  12127.      Sets all the data members to empty 
  12128.  
  12129.   Get data members 
  12130.      bool getAll(mapString &FieldValues) 
  12131.  
  12132.      Return a mapString of all the data members of this topic. The key is the 
  12133.      variable name.  LCP: CountryAttribs 
  12134.      string getDesc() 
  12135.  
  12136.      Get the short description 
  12137.      string getDescLong() 
  12138.  
  12139.      Get the long description 
  12140.      string getDescNative() 
  12141.  
  12142.      Get the native language description 
  12143.      string getNetCode() 
  12144.  
  12145.      Get the internet code for this country 
  12146.  
  12147.  
  12148. ΓòÉΓòÉΓòÉ <hidden> j ΓòÉΓòÉΓòÉ
  12149.  
  12150.  
  12151. lyris_Country Class 
  12152.  
  12153.      class lyris_Country 
  12154.  
  12155.      For determining what countries exist, and what languages are spoken & 
  12156.      preferred in each country 
  12157.  
  12158.      Defined in: COUNTRY.H 
  12159.  
  12160.   Create a new country 
  12161.  
  12162.       bool createNew() 
  12163.  
  12164.      Creates a new country/language table row.  LCP: CountryCreate 
  12165.      bool updateDatabase() 
  12166.  
  12167.      Save the current country with the data members that have changed.  LCP: 
  12168.      CountryUpdate 
  12169.      bool VerifyFields() 
  12170.  
  12171.      Verify that all required fields are filled in. 
  12172.  
  12173.   Retrieve data from the database 
  12174.      bool fetchAllCountries(vecString &AllCountries) 
  12175.  
  12176.      Fetch a list of all countries.  LCP: CountryAll 
  12177.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12178.  
  12179.      Fetch a paired list of countries and their native language descriptions, 
  12180.      sorted by english description.  LCP: CountryEngNat 
  12181.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12182.  
  12183.      Fetch a paired list of native language country descriptions, and the 
  12184.      english name of the country. 
  12185.      bool retrieveFromNetCode() 
  12186.  
  12187.      Determine the country that uses the currently set NetCode.  Fills all the 
  12188.      other country attributes with values. LCP: CountryAttNetCode 
  12189.      bool retrieveFromDesc() 
  12190.  
  12191.      Determine the country that uses the currently set description.  Fills all 
  12192.      the other country attributes with values.  LCP: CountryAttribs 
  12193.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12194.  
  12195.      Determine the primary language of the current country.  "Desc" must be 
  12196.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12197.      CountryPrimLang 
  12198.      bool getAllLanguages(vecString &Languages) 
  12199.  
  12200.      Determine all the languages used by the current country.  "Desc" must be 
  12201.      already set.  The result is returned in priority order (highest priority 
  12202.      first) in vecString &Languages.  LCP: CountryLanguages 
  12203.      bool getLanguageList(vecString &Languages) 
  12204.  
  12205.      Get a list of all possible languages, in alphabetical order, returned in 
  12206.      vecString &Languages.  LCP: CountryLangList 
  12207.      bool getLanguageListEngNat(mapString &Languages) 
  12208.  
  12209.      Get a map of all possible languages, their native description in 
  12210.      alphabetical order by english description, returned in in vecString 
  12211.      &Languages.  LCP: CountryLangListEngNat 
  12212.  
  12213.   Delete a country 
  12214.      bool deleteFromDesc() 
  12215.  
  12216.      Delete the country that uses the currently set description.  LCP: 
  12217.      CountryDelete 
  12218.  
  12219.   Set data members 
  12220.      bool setAll(mapString &FieldValues) 
  12221.  
  12222.      Sets all the data members of a topic using the mapString which is passed 
  12223.      to it.  Only the fields present in the mapString are updated, the other 
  12224.      fields are untouched.  LCP: CountryUpdate 
  12225.      bool setDesc(const string &DescSetting) 
  12226.  
  12227.      Set the short description 
  12228.      bool setDescLong(const string &DescLongSetting) 
  12229.  
  12230.      Set the long description 
  12231.      bool setDescNative(const string &DescNativeSetting) 
  12232.  
  12233.      Set the native language description 
  12234.      bool setNetCode(const string &NetCodeSetting) 
  12235.  
  12236.      Set the internet code for this country 
  12237.      bool erase() 
  12238.  
  12239.      Sets all the data members to empty 
  12240.  
  12241.   Get data members 
  12242.      bool getAll(mapString &FieldValues) 
  12243.  
  12244.      Return a mapString of all the data members of this topic. The key is the 
  12245.      variable name.  LCP: CountryAttribs 
  12246.      string getDesc() 
  12247.  
  12248.      Get the short description 
  12249.      string getDescLong() 
  12250.  
  12251.      Get the long description 
  12252.      string getDescNative() 
  12253.  
  12254.      Get the native language description 
  12255.      string getNetCode() 
  12256.  
  12257.      Get the internet code for this country 
  12258.  
  12259.  
  12260. ΓòÉΓòÉΓòÉ <hidden> k ΓòÉΓòÉΓòÉ
  12261.  
  12262.  
  12263. lyris_Country Class 
  12264.  
  12265.      class lyris_Country 
  12266.  
  12267.      For determining what countries exist, and what languages are spoken & 
  12268.      preferred in each country 
  12269.  
  12270.      Defined in: COUNTRY.H 
  12271.  
  12272.   Create a new country 
  12273.  
  12274.       bool createNew() 
  12275.  
  12276.      Creates a new country/language table row.  LCP: CountryCreate 
  12277.      bool updateDatabase() 
  12278.  
  12279.      Save the current country with the data members that have changed.  LCP: 
  12280.      CountryUpdate 
  12281.      bool VerifyFields() 
  12282.  
  12283.      Verify that all required fields are filled in. 
  12284.  
  12285.   Retrieve data from the database 
  12286.      bool fetchAllCountries(vecString &AllCountries) 
  12287.  
  12288.      Fetch a list of all countries.  LCP: CountryAll 
  12289.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12290.  
  12291.      Fetch a paired list of countries and their native language descriptions, 
  12292.      sorted by english description.  LCP: CountryEngNat 
  12293.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12294.  
  12295.      Fetch a paired list of native language country descriptions, and the 
  12296.      english name of the country. 
  12297.      bool retrieveFromNetCode() 
  12298.  
  12299.      Determine the country that uses the currently set NetCode.  Fills all the 
  12300.      other country attributes with values. LCP: CountryAttNetCode 
  12301.      bool retrieveFromDesc() 
  12302.  
  12303.      Determine the country that uses the currently set description.  Fills all 
  12304.      the other country attributes with values.  LCP: CountryAttribs 
  12305.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12306.  
  12307.      Determine the primary language of the current country.  "Desc" must be 
  12308.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12309.      CountryPrimLang 
  12310.      bool getAllLanguages(vecString &Languages) 
  12311.  
  12312.      Determine all the languages used by the current country.  "Desc" must be 
  12313.      already set.  The result is returned in priority order (highest priority 
  12314.      first) in vecString &Languages.  LCP: CountryLanguages 
  12315.      bool getLanguageList(vecString &Languages) 
  12316.  
  12317.      Get a list of all possible languages, in alphabetical order, returned in 
  12318.      vecString &Languages.  LCP: CountryLangList 
  12319.      bool getLanguageListEngNat(mapString &Languages) 
  12320.  
  12321.      Get a map of all possible languages, their native description in 
  12322.      alphabetical order by english description, returned in in vecString 
  12323.      &Languages.  LCP: CountryLangListEngNat 
  12324.  
  12325.   Delete a country 
  12326.      bool deleteFromDesc() 
  12327.  
  12328.      Delete the country that uses the currently set description.  LCP: 
  12329.      CountryDelete 
  12330.  
  12331.   Set data members 
  12332.      bool setAll(mapString &FieldValues) 
  12333.  
  12334.      Sets all the data members of a topic using the mapString which is passed 
  12335.      to it.  Only the fields present in the mapString are updated, the other 
  12336.      fields are untouched.  LCP: CountryUpdate 
  12337.      bool setDesc(const string &DescSetting) 
  12338.  
  12339.      Set the short description 
  12340.      bool setDescLong(const string &DescLongSetting) 
  12341.  
  12342.      Set the long description 
  12343.      bool setDescNative(const string &DescNativeSetting) 
  12344.  
  12345.      Set the native language description 
  12346.      bool setNetCode(const string &NetCodeSetting) 
  12347.  
  12348.      Set the internet code for this country 
  12349.      bool erase() 
  12350.  
  12351.      Sets all the data members to empty 
  12352.  
  12353.   Get data members 
  12354.      bool getAll(mapString &FieldValues) 
  12355.  
  12356.      Return a mapString of all the data members of this topic. The key is the 
  12357.      variable name.  LCP: CountryAttribs 
  12358.      string getDesc() 
  12359.  
  12360.      Get the short description 
  12361.      string getDescLong() 
  12362.  
  12363.      Get the long description 
  12364.      string getDescNative() 
  12365.  
  12366.      Get the native language description 
  12367.      string getNetCode() 
  12368.  
  12369.      Get the internet code for this country 
  12370.  
  12371.  
  12372. ΓòÉΓòÉΓòÉ <hidden> l ΓòÉΓòÉΓòÉ
  12373.  
  12374.  
  12375. lyris_Country Class 
  12376.  
  12377.      class lyris_Country 
  12378.  
  12379.      For determining what countries exist, and what languages are spoken & 
  12380.      preferred in each country 
  12381.  
  12382.      Defined in: COUNTRY.H 
  12383.  
  12384.   Create a new country 
  12385.  
  12386.       bool createNew() 
  12387.  
  12388.      Creates a new country/language table row.  LCP: CountryCreate 
  12389.      bool updateDatabase() 
  12390.  
  12391.      Save the current country with the data members that have changed.  LCP: 
  12392.      CountryUpdate 
  12393.      bool VerifyFields() 
  12394.  
  12395.      Verify that all required fields are filled in. 
  12396.  
  12397.   Retrieve data from the database 
  12398.      bool fetchAllCountries(vecString &AllCountries) 
  12399.  
  12400.      Fetch a list of all countries.  LCP: CountryAll 
  12401.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12402.  
  12403.      Fetch a paired list of countries and their native language descriptions, 
  12404.      sorted by english description.  LCP: CountryEngNat 
  12405.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12406.  
  12407.      Fetch a paired list of native language country descriptions, and the 
  12408.      english name of the country. 
  12409.      bool retrieveFromNetCode() 
  12410.  
  12411.      Determine the country that uses the currently set NetCode.  Fills all the 
  12412.      other country attributes with values. LCP: CountryAttNetCode 
  12413.      bool retrieveFromDesc() 
  12414.  
  12415.      Determine the country that uses the currently set description.  Fills all 
  12416.      the other country attributes with values.  LCP: CountryAttribs 
  12417.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12418.  
  12419.      Determine the primary language of the current country.  "Desc" must be 
  12420.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12421.      CountryPrimLang 
  12422.      bool getAllLanguages(vecString &Languages) 
  12423.  
  12424.      Determine all the languages used by the current country.  "Desc" must be 
  12425.      already set.  The result is returned in priority order (highest priority 
  12426.      first) in vecString &Languages.  LCP: CountryLanguages 
  12427.      bool getLanguageList(vecString &Languages) 
  12428.  
  12429.      Get a list of all possible languages, in alphabetical order, returned in 
  12430.      vecString &Languages.  LCP: CountryLangList 
  12431.      bool getLanguageListEngNat(mapString &Languages) 
  12432.  
  12433.      Get a map of all possible languages, their native description in 
  12434.      alphabetical order by english description, returned in in vecString 
  12435.      &Languages.  LCP: CountryLangListEngNat 
  12436.  
  12437.   Delete a country 
  12438.      bool deleteFromDesc() 
  12439.  
  12440.      Delete the country that uses the currently set description.  LCP: 
  12441.      CountryDelete 
  12442.  
  12443.   Set data members 
  12444.      bool setAll(mapString &FieldValues) 
  12445.  
  12446.      Sets all the data members of a topic using the mapString which is passed 
  12447.      to it.  Only the fields present in the mapString are updated, the other 
  12448.      fields are untouched.  LCP: CountryUpdate 
  12449.      bool setDesc(const string &DescSetting) 
  12450.  
  12451.      Set the short description 
  12452.      bool setDescLong(const string &DescLongSetting) 
  12453.  
  12454.      Set the long description 
  12455.      bool setDescNative(const string &DescNativeSetting) 
  12456.  
  12457.      Set the native language description 
  12458.      bool setNetCode(const string &NetCodeSetting) 
  12459.  
  12460.      Set the internet code for this country 
  12461.      bool erase() 
  12462.  
  12463.      Sets all the data members to empty 
  12464.  
  12465.   Get data members 
  12466.      bool getAll(mapString &FieldValues) 
  12467.  
  12468.      Return a mapString of all the data members of this topic. The key is the 
  12469.      variable name.  LCP: CountryAttribs 
  12470.      string getDesc() 
  12471.  
  12472.      Get the short description 
  12473.      string getDescLong() 
  12474.  
  12475.      Get the long description 
  12476.      string getDescNative() 
  12477.  
  12478.      Get the native language description 
  12479.      string getNetCode() 
  12480.  
  12481.      Get the internet code for this country 
  12482.  
  12483.  
  12484. ΓòÉΓòÉΓòÉ <hidden> m ΓòÉΓòÉΓòÉ
  12485.  
  12486.  
  12487. lyris_Country Class 
  12488.  
  12489.      class lyris_Country 
  12490.  
  12491.      For determining what countries exist, and what languages are spoken & 
  12492.      preferred in each country 
  12493.  
  12494.      Defined in: COUNTRY.H 
  12495.  
  12496.   Create a new country 
  12497.  
  12498.       bool createNew() 
  12499.  
  12500.      Creates a new country/language table row.  LCP: CountryCreate 
  12501.      bool updateDatabase() 
  12502.  
  12503.      Save the current country with the data members that have changed.  LCP: 
  12504.      CountryUpdate 
  12505.      bool VerifyFields() 
  12506.  
  12507.      Verify that all required fields are filled in. 
  12508.  
  12509.   Retrieve data from the database 
  12510.      bool fetchAllCountries(vecString &AllCountries) 
  12511.  
  12512.      Fetch a list of all countries.  LCP: CountryAll 
  12513.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12514.  
  12515.      Fetch a paired list of countries and their native language descriptions, 
  12516.      sorted by english description.  LCP: CountryEngNat 
  12517.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12518.  
  12519.      Fetch a paired list of native language country descriptions, and the 
  12520.      english name of the country. 
  12521.      bool retrieveFromNetCode() 
  12522.  
  12523.      Determine the country that uses the currently set NetCode.  Fills all the 
  12524.      other country attributes with values. LCP: CountryAttNetCode 
  12525.      bool retrieveFromDesc() 
  12526.  
  12527.      Determine the country that uses the currently set description.  Fills all 
  12528.      the other country attributes with values.  LCP: CountryAttribs 
  12529.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12530.  
  12531.      Determine the primary language of the current country.  "Desc" must be 
  12532.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12533.      CountryPrimLang 
  12534.      bool getAllLanguages(vecString &Languages) 
  12535.  
  12536.      Determine all the languages used by the current country.  "Desc" must be 
  12537.      already set.  The result is returned in priority order (highest priority 
  12538.      first) in vecString &Languages.  LCP: CountryLanguages 
  12539.      bool getLanguageList(vecString &Languages) 
  12540.  
  12541.      Get a list of all possible languages, in alphabetical order, returned in 
  12542.      vecString &Languages.  LCP: CountryLangList 
  12543.      bool getLanguageListEngNat(mapString &Languages) 
  12544.  
  12545.      Get a map of all possible languages, their native description in 
  12546.      alphabetical order by english description, returned in in vecString 
  12547.      &Languages.  LCP: CountryLangListEngNat 
  12548.  
  12549.   Delete a country 
  12550.      bool deleteFromDesc() 
  12551.  
  12552.      Delete the country that uses the currently set description.  LCP: 
  12553.      CountryDelete 
  12554.  
  12555.   Set data members 
  12556.      bool setAll(mapString &FieldValues) 
  12557.  
  12558.      Sets all the data members of a topic using the mapString which is passed 
  12559.      to it.  Only the fields present in the mapString are updated, the other 
  12560.      fields are untouched.  LCP: CountryUpdate 
  12561.      bool setDesc(const string &DescSetting) 
  12562.  
  12563.      Set the short description 
  12564.      bool setDescLong(const string &DescLongSetting) 
  12565.  
  12566.      Set the long description 
  12567.      bool setDescNative(const string &DescNativeSetting) 
  12568.  
  12569.      Set the native language description 
  12570.      bool setNetCode(const string &NetCodeSetting) 
  12571.  
  12572.      Set the internet code for this country 
  12573.      bool erase() 
  12574.  
  12575.      Sets all the data members to empty 
  12576.  
  12577.   Get data members 
  12578.      bool getAll(mapString &FieldValues) 
  12579.  
  12580.      Return a mapString of all the data members of this topic. The key is the 
  12581.      variable name.  LCP: CountryAttribs 
  12582.      string getDesc() 
  12583.  
  12584.      Get the short description 
  12585.      string getDescLong() 
  12586.  
  12587.      Get the long description 
  12588.      string getDescNative() 
  12589.  
  12590.      Get the native language description 
  12591.      string getNetCode() 
  12592.  
  12593.      Get the internet code for this country 
  12594.  
  12595.  
  12596. ΓòÉΓòÉΓòÉ <hidden> n ΓòÉΓòÉΓòÉ
  12597.  
  12598.  
  12599. lyris_Country Class 
  12600.  
  12601.      class lyris_Country 
  12602.  
  12603.      For determining what countries exist, and what languages are spoken & 
  12604.      preferred in each country 
  12605.  
  12606.      Defined in: COUNTRY.H 
  12607.  
  12608.   Create a new country 
  12609.  
  12610.       bool createNew() 
  12611.  
  12612.      Creates a new country/language table row.  LCP: CountryCreate 
  12613.      bool updateDatabase() 
  12614.  
  12615.      Save the current country with the data members that have changed.  LCP: 
  12616.      CountryUpdate 
  12617.      bool VerifyFields() 
  12618.  
  12619.      Verify that all required fields are filled in. 
  12620.  
  12621.   Retrieve data from the database 
  12622.      bool fetchAllCountries(vecString &AllCountries) 
  12623.  
  12624.      Fetch a list of all countries.  LCP: CountryAll 
  12625.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12626.  
  12627.      Fetch a paired list of countries and their native language descriptions, 
  12628.      sorted by english description.  LCP: CountryEngNat 
  12629.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12630.  
  12631.      Fetch a paired list of native language country descriptions, and the 
  12632.      english name of the country. 
  12633.      bool retrieveFromNetCode() 
  12634.  
  12635.      Determine the country that uses the currently set NetCode.  Fills all the 
  12636.      other country attributes with values. LCP: CountryAttNetCode 
  12637.      bool retrieveFromDesc() 
  12638.  
  12639.      Determine the country that uses the currently set description.  Fills all 
  12640.      the other country attributes with values.  LCP: CountryAttribs 
  12641.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12642.  
  12643.      Determine the primary language of the current country.  "Desc" must be 
  12644.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12645.      CountryPrimLang 
  12646.      bool getAllLanguages(vecString &Languages) 
  12647.  
  12648.      Determine all the languages used by the current country.  "Desc" must be 
  12649.      already set.  The result is returned in priority order (highest priority 
  12650.      first) in vecString &Languages.  LCP: CountryLanguages 
  12651.      bool getLanguageList(vecString &Languages) 
  12652.  
  12653.      Get a list of all possible languages, in alphabetical order, returned in 
  12654.      vecString &Languages.  LCP: CountryLangList 
  12655.      bool getLanguageListEngNat(mapString &Languages) 
  12656.  
  12657.      Get a map of all possible languages, their native description in 
  12658.      alphabetical order by english description, returned in in vecString 
  12659.      &Languages.  LCP: CountryLangListEngNat 
  12660.  
  12661.   Delete a country 
  12662.      bool deleteFromDesc() 
  12663.  
  12664.      Delete the country that uses the currently set description.  LCP: 
  12665.      CountryDelete 
  12666.  
  12667.   Set data members 
  12668.      bool setAll(mapString &FieldValues) 
  12669.  
  12670.      Sets all the data members of a topic using the mapString which is passed 
  12671.      to it.  Only the fields present in the mapString are updated, the other 
  12672.      fields are untouched.  LCP: CountryUpdate 
  12673.      bool setDesc(const string &DescSetting) 
  12674.  
  12675.      Set the short description 
  12676.      bool setDescLong(const string &DescLongSetting) 
  12677.  
  12678.      Set the long description 
  12679.      bool setDescNative(const string &DescNativeSetting) 
  12680.  
  12681.      Set the native language description 
  12682.      bool setNetCode(const string &NetCodeSetting) 
  12683.  
  12684.      Set the internet code for this country 
  12685.      bool erase() 
  12686.  
  12687.      Sets all the data members to empty 
  12688.  
  12689.   Get data members 
  12690.      bool getAll(mapString &FieldValues) 
  12691.  
  12692.      Return a mapString of all the data members of this topic. The key is the 
  12693.      variable name.  LCP: CountryAttribs 
  12694.      string getDesc() 
  12695.  
  12696.      Get the short description 
  12697.      string getDescLong() 
  12698.  
  12699.      Get the long description 
  12700.      string getDescNative() 
  12701.  
  12702.      Get the native language description 
  12703.      string getNetCode() 
  12704.  
  12705.      Get the internet code for this country 
  12706.  
  12707.  
  12708. ΓòÉΓòÉΓòÉ <hidden> o ΓòÉΓòÉΓòÉ
  12709.  
  12710.  
  12711. lyris_Country Class 
  12712.  
  12713.      class lyris_Country 
  12714.  
  12715.      For determining what countries exist, and what languages are spoken & 
  12716.      preferred in each country 
  12717.  
  12718.      Defined in: COUNTRY.H 
  12719.  
  12720.   Create a new country 
  12721.  
  12722.       bool createNew() 
  12723.  
  12724.      Creates a new country/language table row.  LCP: CountryCreate 
  12725.      bool updateDatabase() 
  12726.  
  12727.      Save the current country with the data members that have changed.  LCP: 
  12728.      CountryUpdate 
  12729.      bool VerifyFields() 
  12730.  
  12731.      Verify that all required fields are filled in. 
  12732.  
  12733.   Retrieve data from the database 
  12734.      bool fetchAllCountries(vecString &AllCountries) 
  12735.  
  12736.      Fetch a list of all countries.  LCP: CountryAll 
  12737.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12738.  
  12739.      Fetch a paired list of countries and their native language descriptions, 
  12740.      sorted by english description.  LCP: CountryEngNat 
  12741.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12742.  
  12743.      Fetch a paired list of native language country descriptions, and the 
  12744.      english name of the country. 
  12745.      bool retrieveFromNetCode() 
  12746.  
  12747.      Determine the country that uses the currently set NetCode.  Fills all the 
  12748.      other country attributes with values. LCP: CountryAttNetCode 
  12749.      bool retrieveFromDesc() 
  12750.  
  12751.      Determine the country that uses the currently set description.  Fills all 
  12752.      the other country attributes with values.  LCP: CountryAttribs 
  12753.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12754.  
  12755.      Determine the primary language of the current country.  "Desc" must be 
  12756.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12757.      CountryPrimLang 
  12758.      bool getAllLanguages(vecString &Languages) 
  12759.  
  12760.      Determine all the languages used by the current country.  "Desc" must be 
  12761.      already set.  The result is returned in priority order (highest priority 
  12762.      first) in vecString &Languages.  LCP: CountryLanguages 
  12763.      bool getLanguageList(vecString &Languages) 
  12764.  
  12765.      Get a list of all possible languages, in alphabetical order, returned in 
  12766.      vecString &Languages.  LCP: CountryLangList 
  12767.      bool getLanguageListEngNat(mapString &Languages) 
  12768.  
  12769.      Get a map of all possible languages, their native description in 
  12770.      alphabetical order by english description, returned in in vecString 
  12771.      &Languages.  LCP: CountryLangListEngNat 
  12772.  
  12773.   Delete a country 
  12774.      bool deleteFromDesc() 
  12775.  
  12776.      Delete the country that uses the currently set description.  LCP: 
  12777.      CountryDelete 
  12778.  
  12779.   Set data members 
  12780.      bool setAll(mapString &FieldValues) 
  12781.  
  12782.      Sets all the data members of a topic using the mapString which is passed 
  12783.      to it.  Only the fields present in the mapString are updated, the other 
  12784.      fields are untouched.  LCP: CountryUpdate 
  12785.      bool setDesc(const string &DescSetting) 
  12786.  
  12787.      Set the short description 
  12788.      bool setDescLong(const string &DescLongSetting) 
  12789.  
  12790.      Set the long description 
  12791.      bool setDescNative(const string &DescNativeSetting) 
  12792.  
  12793.      Set the native language description 
  12794.      bool setNetCode(const string &NetCodeSetting) 
  12795.  
  12796.      Set the internet code for this country 
  12797.      bool erase() 
  12798.  
  12799.      Sets all the data members to empty 
  12800.  
  12801.   Get data members 
  12802.      bool getAll(mapString &FieldValues) 
  12803.  
  12804.      Return a mapString of all the data members of this topic. The key is the 
  12805.      variable name.  LCP: CountryAttribs 
  12806.      string getDesc() 
  12807.  
  12808.      Get the short description 
  12809.      string getDescLong() 
  12810.  
  12811.      Get the long description 
  12812.      string getDescNative() 
  12813.  
  12814.      Get the native language description 
  12815.      string getNetCode() 
  12816.  
  12817.      Get the internet code for this country 
  12818.  
  12819.  
  12820. ΓòÉΓòÉΓòÉ <hidden> p ΓòÉΓòÉΓòÉ
  12821.  
  12822.  
  12823. lyris_Country Class 
  12824.  
  12825.      class lyris_Country 
  12826.  
  12827.      For determining what countries exist, and what languages are spoken & 
  12828.      preferred in each country 
  12829.  
  12830.      Defined in: COUNTRY.H 
  12831.  
  12832.   Create a new country 
  12833.  
  12834.       bool createNew() 
  12835.  
  12836.      Creates a new country/language table row.  LCP: CountryCreate 
  12837.      bool updateDatabase() 
  12838.  
  12839.      Save the current country with the data members that have changed.  LCP: 
  12840.      CountryUpdate 
  12841.      bool VerifyFields() 
  12842.  
  12843.      Verify that all required fields are filled in. 
  12844.  
  12845.   Retrieve data from the database 
  12846.      bool fetchAllCountries(vecString &AllCountries) 
  12847.  
  12848.      Fetch a list of all countries.  LCP: CountryAll 
  12849.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12850.  
  12851.      Fetch a paired list of countries and their native language descriptions, 
  12852.      sorted by english description.  LCP: CountryEngNat 
  12853.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12854.  
  12855.      Fetch a paired list of native language country descriptions, and the 
  12856.      english name of the country. 
  12857.      bool retrieveFromNetCode() 
  12858.  
  12859.      Determine the country that uses the currently set NetCode.  Fills all the 
  12860.      other country attributes with values. LCP: CountryAttNetCode 
  12861.      bool retrieveFromDesc() 
  12862.  
  12863.      Determine the country that uses the currently set description.  Fills all 
  12864.      the other country attributes with values.  LCP: CountryAttribs 
  12865.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12866.  
  12867.      Determine the primary language of the current country.  "Desc" must be 
  12868.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12869.      CountryPrimLang 
  12870.      bool getAllLanguages(vecString &Languages) 
  12871.  
  12872.      Determine all the languages used by the current country.  "Desc" must be 
  12873.      already set.  The result is returned in priority order (highest priority 
  12874.      first) in vecString &Languages.  LCP: CountryLanguages 
  12875.      bool getLanguageList(vecString &Languages) 
  12876.  
  12877.      Get a list of all possible languages, in alphabetical order, returned in 
  12878.      vecString &Languages.  LCP: CountryLangList 
  12879.      bool getLanguageListEngNat(mapString &Languages) 
  12880.  
  12881.      Get a map of all possible languages, their native description in 
  12882.      alphabetical order by english description, returned in in vecString 
  12883.      &Languages.  LCP: CountryLangListEngNat 
  12884.  
  12885.   Delete a country 
  12886.      bool deleteFromDesc() 
  12887.  
  12888.      Delete the country that uses the currently set description.  LCP: 
  12889.      CountryDelete 
  12890.  
  12891.   Set data members 
  12892.      bool setAll(mapString &FieldValues) 
  12893.  
  12894.      Sets all the data members of a topic using the mapString which is passed 
  12895.      to it.  Only the fields present in the mapString are updated, the other 
  12896.      fields are untouched.  LCP: CountryUpdate 
  12897.      bool setDesc(const string &DescSetting) 
  12898.  
  12899.      Set the short description 
  12900.      bool setDescLong(const string &DescLongSetting) 
  12901.  
  12902.      Set the long description 
  12903.      bool setDescNative(const string &DescNativeSetting) 
  12904.  
  12905.      Set the native language description 
  12906.      bool setNetCode(const string &NetCodeSetting) 
  12907.  
  12908.      Set the internet code for this country 
  12909.      bool erase() 
  12910.  
  12911.      Sets all the data members to empty 
  12912.  
  12913.   Get data members 
  12914.      bool getAll(mapString &FieldValues) 
  12915.  
  12916.      Return a mapString of all the data members of this topic. The key is the 
  12917.      variable name.  LCP: CountryAttribs 
  12918.      string getDesc() 
  12919.  
  12920.      Get the short description 
  12921.      string getDescLong() 
  12922.  
  12923.      Get the long description 
  12924.      string getDescNative() 
  12925.  
  12926.      Get the native language description 
  12927.      string getNetCode() 
  12928.  
  12929.      Get the internet code for this country 
  12930.  
  12931.  
  12932. ΓòÉΓòÉΓòÉ <hidden> q ΓòÉΓòÉΓòÉ
  12933.  
  12934.  
  12935. lyris_Country Class 
  12936.  
  12937.      class lyris_Country 
  12938.  
  12939.      For determining what countries exist, and what languages are spoken & 
  12940.      preferred in each country 
  12941.  
  12942.      Defined in: COUNTRY.H 
  12943.  
  12944.   Create a new country 
  12945.  
  12946.       bool createNew() 
  12947.  
  12948.      Creates a new country/language table row.  LCP: CountryCreate 
  12949.      bool updateDatabase() 
  12950.  
  12951.      Save the current country with the data members that have changed.  LCP: 
  12952.      CountryUpdate 
  12953.      bool VerifyFields() 
  12954.  
  12955.      Verify that all required fields are filled in. 
  12956.  
  12957.   Retrieve data from the database 
  12958.      bool fetchAllCountries(vecString &AllCountries) 
  12959.  
  12960.      Fetch a list of all countries.  LCP: CountryAll 
  12961.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  12962.  
  12963.      Fetch a paired list of countries and their native language descriptions, 
  12964.      sorted by english description.  LCP: CountryEngNat 
  12965.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  12966.  
  12967.      Fetch a paired list of native language country descriptions, and the 
  12968.      english name of the country. 
  12969.      bool retrieveFromNetCode() 
  12970.  
  12971.      Determine the country that uses the currently set NetCode.  Fills all the 
  12972.      other country attributes with values. LCP: CountryAttNetCode 
  12973.      bool retrieveFromDesc() 
  12974.  
  12975.      Determine the country that uses the currently set description.  Fills all 
  12976.      the other country attributes with values.  LCP: CountryAttribs 
  12977.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  12978.  
  12979.      Determine the primary language of the current country.  "Desc" must be 
  12980.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  12981.      CountryPrimLang 
  12982.      bool getAllLanguages(vecString &Languages) 
  12983.  
  12984.      Determine all the languages used by the current country.  "Desc" must be 
  12985.      already set.  The result is returned in priority order (highest priority 
  12986.      first) in vecString &Languages.  LCP: CountryLanguages 
  12987.      bool getLanguageList(vecString &Languages) 
  12988.  
  12989.      Get a list of all possible languages, in alphabetical order, returned in 
  12990.      vecString &Languages.  LCP: CountryLangList 
  12991.      bool getLanguageListEngNat(mapString &Languages) 
  12992.  
  12993.      Get a map of all possible languages, their native description in 
  12994.      alphabetical order by english description, returned in in vecString 
  12995.      &Languages.  LCP: CountryLangListEngNat 
  12996.  
  12997.   Delete a country 
  12998.      bool deleteFromDesc() 
  12999.  
  13000.      Delete the country that uses the currently set description.  LCP: 
  13001.      CountryDelete 
  13002.  
  13003.   Set data members 
  13004.      bool setAll(mapString &FieldValues) 
  13005.  
  13006.      Sets all the data members of a topic using the mapString which is passed 
  13007.      to it.  Only the fields present in the mapString are updated, the other 
  13008.      fields are untouched.  LCP: CountryUpdate 
  13009.      bool setDesc(const string &DescSetting) 
  13010.  
  13011.      Set the short description 
  13012.      bool setDescLong(const string &DescLongSetting) 
  13013.  
  13014.      Set the long description 
  13015.      bool setDescNative(const string &DescNativeSetting) 
  13016.  
  13017.      Set the native language description 
  13018.      bool setNetCode(const string &NetCodeSetting) 
  13019.  
  13020.      Set the internet code for this country 
  13021.      bool erase() 
  13022.  
  13023.      Sets all the data members to empty 
  13024.  
  13025.   Get data members 
  13026.      bool getAll(mapString &FieldValues) 
  13027.  
  13028.      Return a mapString of all the data members of this topic. The key is the 
  13029.      variable name.  LCP: CountryAttribs 
  13030.      string getDesc() 
  13031.  
  13032.      Get the short description 
  13033.      string getDescLong() 
  13034.  
  13035.      Get the long description 
  13036.      string getDescNative() 
  13037.  
  13038.      Get the native language description 
  13039.      string getNetCode() 
  13040.  
  13041.      Get the internet code for this country 
  13042.  
  13043.  
  13044. ΓòÉΓòÉΓòÉ <hidden> r ΓòÉΓòÉΓòÉ
  13045.  
  13046.  
  13047. lyris_Country Class 
  13048.  
  13049.      class lyris_Country 
  13050.  
  13051.      For determining what countries exist, and what languages are spoken & 
  13052.      preferred in each country 
  13053.  
  13054.      Defined in: COUNTRY.H 
  13055.  
  13056.   Create a new country 
  13057.  
  13058.       bool createNew() 
  13059.  
  13060.      Creates a new country/language table row.  LCP: CountryCreate 
  13061.      bool updateDatabase() 
  13062.  
  13063.      Save the current country with the data members that have changed.  LCP: 
  13064.      CountryUpdate 
  13065.      bool VerifyFields() 
  13066.  
  13067.      Verify that all required fields are filled in. 
  13068.  
  13069.   Retrieve data from the database 
  13070.      bool fetchAllCountries(vecString &AllCountries) 
  13071.  
  13072.      Fetch a list of all countries.  LCP: CountryAll 
  13073.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13074.  
  13075.      Fetch a paired list of countries and their native language descriptions, 
  13076.      sorted by english description.  LCP: CountryEngNat 
  13077.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13078.  
  13079.      Fetch a paired list of native language country descriptions, and the 
  13080.      english name of the country. 
  13081.      bool retrieveFromNetCode() 
  13082.  
  13083.      Determine the country that uses the currently set NetCode.  Fills all the 
  13084.      other country attributes with values. LCP: CountryAttNetCode 
  13085.      bool retrieveFromDesc() 
  13086.  
  13087.      Determine the country that uses the currently set description.  Fills all 
  13088.      the other country attributes with values.  LCP: CountryAttribs 
  13089.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13090.  
  13091.      Determine the primary language of the current country.  "Desc" must be 
  13092.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13093.      CountryPrimLang 
  13094.      bool getAllLanguages(vecString &Languages) 
  13095.  
  13096.      Determine all the languages used by the current country.  "Desc" must be 
  13097.      already set.  The result is returned in priority order (highest priority 
  13098.      first) in vecString &Languages.  LCP: CountryLanguages 
  13099.      bool getLanguageList(vecString &Languages) 
  13100.  
  13101.      Get a list of all possible languages, in alphabetical order, returned in 
  13102.      vecString &Languages.  LCP: CountryLangList 
  13103.      bool getLanguageListEngNat(mapString &Languages) 
  13104.  
  13105.      Get a map of all possible languages, their native description in 
  13106.      alphabetical order by english description, returned in in vecString 
  13107.      &Languages.  LCP: CountryLangListEngNat 
  13108.  
  13109.   Delete a country 
  13110.      bool deleteFromDesc() 
  13111.  
  13112.      Delete the country that uses the currently set description.  LCP: 
  13113.      CountryDelete 
  13114.  
  13115.   Set data members 
  13116.      bool setAll(mapString &FieldValues) 
  13117.  
  13118.      Sets all the data members of a topic using the mapString which is passed 
  13119.      to it.  Only the fields present in the mapString are updated, the other 
  13120.      fields are untouched.  LCP: CountryUpdate 
  13121.      bool setDesc(const string &DescSetting) 
  13122.  
  13123.      Set the short description 
  13124.      bool setDescLong(const string &DescLongSetting) 
  13125.  
  13126.      Set the long description 
  13127.      bool setDescNative(const string &DescNativeSetting) 
  13128.  
  13129.      Set the native language description 
  13130.      bool setNetCode(const string &NetCodeSetting) 
  13131.  
  13132.      Set the internet code for this country 
  13133.      bool erase() 
  13134.  
  13135.      Sets all the data members to empty 
  13136.  
  13137.   Get data members 
  13138.      bool getAll(mapString &FieldValues) 
  13139.  
  13140.      Return a mapString of all the data members of this topic. The key is the 
  13141.      variable name.  LCP: CountryAttribs 
  13142.      string getDesc() 
  13143.  
  13144.      Get the short description 
  13145.      string getDescLong() 
  13146.  
  13147.      Get the long description 
  13148.      string getDescNative() 
  13149.  
  13150.      Get the native language description 
  13151.      string getNetCode() 
  13152.  
  13153.      Get the internet code for this country 
  13154.  
  13155.  
  13156. ΓòÉΓòÉΓòÉ <hidden> s ΓòÉΓòÉΓòÉ
  13157.  
  13158.  
  13159. lyris_Country Class 
  13160.  
  13161.      class lyris_Country 
  13162.  
  13163.      For determining what countries exist, and what languages are spoken & 
  13164.      preferred in each country 
  13165.  
  13166.      Defined in: COUNTRY.H 
  13167.  
  13168.   Create a new country 
  13169.  
  13170.       bool createNew() 
  13171.  
  13172.      Creates a new country/language table row.  LCP: CountryCreate 
  13173.      bool updateDatabase() 
  13174.  
  13175.      Save the current country with the data members that have changed.  LCP: 
  13176.      CountryUpdate 
  13177.      bool VerifyFields() 
  13178.  
  13179.      Verify that all required fields are filled in. 
  13180.  
  13181.   Retrieve data from the database 
  13182.      bool fetchAllCountries(vecString &AllCountries) 
  13183.  
  13184.      Fetch a list of all countries.  LCP: CountryAll 
  13185.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13186.  
  13187.      Fetch a paired list of countries and their native language descriptions, 
  13188.      sorted by english description.  LCP: CountryEngNat 
  13189.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13190.  
  13191.      Fetch a paired list of native language country descriptions, and the 
  13192.      english name of the country. 
  13193.      bool retrieveFromNetCode() 
  13194.  
  13195.      Determine the country that uses the currently set NetCode.  Fills all the 
  13196.      other country attributes with values. LCP: CountryAttNetCode 
  13197.      bool retrieveFromDesc() 
  13198.  
  13199.      Determine the country that uses the currently set description.  Fills all 
  13200.      the other country attributes with values.  LCP: CountryAttribs 
  13201.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13202.  
  13203.      Determine the primary language of the current country.  "Desc" must be 
  13204.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13205.      CountryPrimLang 
  13206.      bool getAllLanguages(vecString &Languages) 
  13207.  
  13208.      Determine all the languages used by the current country.  "Desc" must be 
  13209.      already set.  The result is returned in priority order (highest priority 
  13210.      first) in vecString &Languages.  LCP: CountryLanguages 
  13211.      bool getLanguageList(vecString &Languages) 
  13212.  
  13213.      Get a list of all possible languages, in alphabetical order, returned in 
  13214.      vecString &Languages.  LCP: CountryLangList 
  13215.      bool getLanguageListEngNat(mapString &Languages) 
  13216.  
  13217.      Get a map of all possible languages, their native description in 
  13218.      alphabetical order by english description, returned in in vecString 
  13219.      &Languages.  LCP: CountryLangListEngNat 
  13220.  
  13221.   Delete a country 
  13222.      bool deleteFromDesc() 
  13223.  
  13224.      Delete the country that uses the currently set description.  LCP: 
  13225.      CountryDelete 
  13226.  
  13227.   Set data members 
  13228.      bool setAll(mapString &FieldValues) 
  13229.  
  13230.      Sets all the data members of a topic using the mapString which is passed 
  13231.      to it.  Only the fields present in the mapString are updated, the other 
  13232.      fields are untouched.  LCP: CountryUpdate 
  13233.      bool setDesc(const string &DescSetting) 
  13234.  
  13235.      Set the short description 
  13236.      bool setDescLong(const string &DescLongSetting) 
  13237.  
  13238.      Set the long description 
  13239.      bool setDescNative(const string &DescNativeSetting) 
  13240.  
  13241.      Set the native language description 
  13242.      bool setNetCode(const string &NetCodeSetting) 
  13243.  
  13244.      Set the internet code for this country 
  13245.      bool erase() 
  13246.  
  13247.      Sets all the data members to empty 
  13248.  
  13249.   Get data members 
  13250.      bool getAll(mapString &FieldValues) 
  13251.  
  13252.      Return a mapString of all the data members of this topic. The key is the 
  13253.      variable name.  LCP: CountryAttribs 
  13254.      string getDesc() 
  13255.  
  13256.      Get the short description 
  13257.      string getDescLong() 
  13258.  
  13259.      Get the long description 
  13260.      string getDescNative() 
  13261.  
  13262.      Get the native language description 
  13263.      string getNetCode() 
  13264.  
  13265.      Get the internet code for this country 
  13266.  
  13267.  
  13268. ΓòÉΓòÉΓòÉ <hidden> t ΓòÉΓòÉΓòÉ
  13269.  
  13270.  
  13271. lyris_Country Class 
  13272.  
  13273.      class lyris_Country 
  13274.  
  13275.      For determining what countries exist, and what languages are spoken & 
  13276.      preferred in each country 
  13277.  
  13278.      Defined in: COUNTRY.H 
  13279.  
  13280.   Create a new country 
  13281.  
  13282.       bool createNew() 
  13283.  
  13284.      Creates a new country/language table row.  LCP: CountryCreate 
  13285.      bool updateDatabase() 
  13286.  
  13287.      Save the current country with the data members that have changed.  LCP: 
  13288.      CountryUpdate 
  13289.      bool VerifyFields() 
  13290.  
  13291.      Verify that all required fields are filled in. 
  13292.  
  13293.   Retrieve data from the database 
  13294.      bool fetchAllCountries(vecString &AllCountries) 
  13295.  
  13296.      Fetch a list of all countries.  LCP: CountryAll 
  13297.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13298.  
  13299.      Fetch a paired list of countries and their native language descriptions, 
  13300.      sorted by english description.  LCP: CountryEngNat 
  13301.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13302.  
  13303.      Fetch a paired list of native language country descriptions, and the 
  13304.      english name of the country. 
  13305.      bool retrieveFromNetCode() 
  13306.  
  13307.      Determine the country that uses the currently set NetCode.  Fills all the 
  13308.      other country attributes with values. LCP: CountryAttNetCode 
  13309.      bool retrieveFromDesc() 
  13310.  
  13311.      Determine the country that uses the currently set description.  Fills all 
  13312.      the other country attributes with values.  LCP: CountryAttribs 
  13313.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13314.  
  13315.      Determine the primary language of the current country.  "Desc" must be 
  13316.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13317.      CountryPrimLang 
  13318.      bool getAllLanguages(vecString &Languages) 
  13319.  
  13320.      Determine all the languages used by the current country.  "Desc" must be 
  13321.      already set.  The result is returned in priority order (highest priority 
  13322.      first) in vecString &Languages.  LCP: CountryLanguages 
  13323.      bool getLanguageList(vecString &Languages) 
  13324.  
  13325.      Get a list of all possible languages, in alphabetical order, returned in 
  13326.      vecString &Languages.  LCP: CountryLangList 
  13327.      bool getLanguageListEngNat(mapString &Languages) 
  13328.  
  13329.      Get a map of all possible languages, their native description in 
  13330.      alphabetical order by english description, returned in in vecString 
  13331.      &Languages.  LCP: CountryLangListEngNat 
  13332.  
  13333.   Delete a country 
  13334.      bool deleteFromDesc() 
  13335.  
  13336.      Delete the country that uses the currently set description.  LCP: 
  13337.      CountryDelete 
  13338.  
  13339.   Set data members 
  13340.      bool setAll(mapString &FieldValues) 
  13341.  
  13342.      Sets all the data members of a topic using the mapString which is passed 
  13343.      to it.  Only the fields present in the mapString are updated, the other 
  13344.      fields are untouched.  LCP: CountryUpdate 
  13345.      bool setDesc(const string &DescSetting) 
  13346.  
  13347.      Set the short description 
  13348.      bool setDescLong(const string &DescLongSetting) 
  13349.  
  13350.      Set the long description 
  13351.      bool setDescNative(const string &DescNativeSetting) 
  13352.  
  13353.      Set the native language description 
  13354.      bool setNetCode(const string &NetCodeSetting) 
  13355.  
  13356.      Set the internet code for this country 
  13357.      bool erase() 
  13358.  
  13359.      Sets all the data members to empty 
  13360.  
  13361.   Get data members 
  13362.      bool getAll(mapString &FieldValues) 
  13363.  
  13364.      Return a mapString of all the data members of this topic. The key is the 
  13365.      variable name.  LCP: CountryAttribs 
  13366.      string getDesc() 
  13367.  
  13368.      Get the short description 
  13369.      string getDescLong() 
  13370.  
  13371.      Get the long description 
  13372.      string getDescNative() 
  13373.  
  13374.      Get the native language description 
  13375.      string getNetCode() 
  13376.  
  13377.      Get the internet code for this country 
  13378.  
  13379.  
  13380. ΓòÉΓòÉΓòÉ <hidden> u ΓòÉΓòÉΓòÉ
  13381.  
  13382.  
  13383. lyris_Country Class 
  13384.  
  13385.      class lyris_Country 
  13386.  
  13387.      For determining what countries exist, and what languages are spoken & 
  13388.      preferred in each country 
  13389.  
  13390.      Defined in: COUNTRY.H 
  13391.  
  13392.   Create a new country 
  13393.  
  13394.       bool createNew() 
  13395.  
  13396.      Creates a new country/language table row.  LCP: CountryCreate 
  13397.      bool updateDatabase() 
  13398.  
  13399.      Save the current country with the data members that have changed.  LCP: 
  13400.      CountryUpdate 
  13401.      bool VerifyFields() 
  13402.  
  13403.      Verify that all required fields are filled in. 
  13404.  
  13405.   Retrieve data from the database 
  13406.      bool fetchAllCountries(vecString &AllCountries) 
  13407.  
  13408.      Fetch a list of all countries.  LCP: CountryAll 
  13409.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13410.  
  13411.      Fetch a paired list of countries and their native language descriptions, 
  13412.      sorted by english description.  LCP: CountryEngNat 
  13413.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13414.  
  13415.      Fetch a paired list of native language country descriptions, and the 
  13416.      english name of the country. 
  13417.      bool retrieveFromNetCode() 
  13418.  
  13419.      Determine the country that uses the currently set NetCode.  Fills all the 
  13420.      other country attributes with values. LCP: CountryAttNetCode 
  13421.      bool retrieveFromDesc() 
  13422.  
  13423.      Determine the country that uses the currently set description.  Fills all 
  13424.      the other country attributes with values.  LCP: CountryAttribs 
  13425.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13426.  
  13427.      Determine the primary language of the current country.  "Desc" must be 
  13428.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13429.      CountryPrimLang 
  13430.      bool getAllLanguages(vecString &Languages) 
  13431.  
  13432.      Determine all the languages used by the current country.  "Desc" must be 
  13433.      already set.  The result is returned in priority order (highest priority 
  13434.      first) in vecString &Languages.  LCP: CountryLanguages 
  13435.      bool getLanguageList(vecString &Languages) 
  13436.  
  13437.      Get a list of all possible languages, in alphabetical order, returned in 
  13438.      vecString &Languages.  LCP: CountryLangList 
  13439.      bool getLanguageListEngNat(mapString &Languages) 
  13440.  
  13441.      Get a map of all possible languages, their native description in 
  13442.      alphabetical order by english description, returned in in vecString 
  13443.      &Languages.  LCP: CountryLangListEngNat 
  13444.  
  13445.   Delete a country 
  13446.      bool deleteFromDesc() 
  13447.  
  13448.      Delete the country that uses the currently set description.  LCP: 
  13449.      CountryDelete 
  13450.  
  13451.   Set data members 
  13452.      bool setAll(mapString &FieldValues) 
  13453.  
  13454.      Sets all the data members of a topic using the mapString which is passed 
  13455.      to it.  Only the fields present in the mapString are updated, the other 
  13456.      fields are untouched.  LCP: CountryUpdate 
  13457.      bool setDesc(const string &DescSetting) 
  13458.  
  13459.      Set the short description 
  13460.      bool setDescLong(const string &DescLongSetting) 
  13461.  
  13462.      Set the long description 
  13463.      bool setDescNative(const string &DescNativeSetting) 
  13464.  
  13465.      Set the native language description 
  13466.      bool setNetCode(const string &NetCodeSetting) 
  13467.  
  13468.      Set the internet code for this country 
  13469.      bool erase() 
  13470.  
  13471.      Sets all the data members to empty 
  13472.  
  13473.   Get data members 
  13474.      bool getAll(mapString &FieldValues) 
  13475.  
  13476.      Return a mapString of all the data members of this topic. The key is the 
  13477.      variable name.  LCP: CountryAttribs 
  13478.      string getDesc() 
  13479.  
  13480.      Get the short description 
  13481.      string getDescLong() 
  13482.  
  13483.      Get the long description 
  13484.      string getDescNative() 
  13485.  
  13486.      Get the native language description 
  13487.      string getNetCode() 
  13488.  
  13489.      Get the internet code for this country 
  13490.  
  13491.  
  13492. ΓòÉΓòÉΓòÉ <hidden> v ΓòÉΓòÉΓòÉ
  13493.  
  13494.  
  13495. lyris_Country Class 
  13496.  
  13497.      class lyris_Country 
  13498.  
  13499.      For determining what countries exist, and what languages are spoken & 
  13500.      preferred in each country 
  13501.  
  13502.      Defined in: COUNTRY.H 
  13503.  
  13504.   Create a new country 
  13505.  
  13506.       bool createNew() 
  13507.  
  13508.      Creates a new country/language table row.  LCP: CountryCreate 
  13509.      bool updateDatabase() 
  13510.  
  13511.      Save the current country with the data members that have changed.  LCP: 
  13512.      CountryUpdate 
  13513.      bool VerifyFields() 
  13514.  
  13515.      Verify that all required fields are filled in. 
  13516.  
  13517.   Retrieve data from the database 
  13518.      bool fetchAllCountries(vecString &AllCountries) 
  13519.  
  13520.      Fetch a list of all countries.  LCP: CountryAll 
  13521.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13522.  
  13523.      Fetch a paired list of countries and their native language descriptions, 
  13524.      sorted by english description.  LCP: CountryEngNat 
  13525.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13526.  
  13527.      Fetch a paired list of native language country descriptions, and the 
  13528.      english name of the country. 
  13529.      bool retrieveFromNetCode() 
  13530.  
  13531.      Determine the country that uses the currently set NetCode.  Fills all the 
  13532.      other country attributes with values. LCP: CountryAttNetCode 
  13533.      bool retrieveFromDesc() 
  13534.  
  13535.      Determine the country that uses the currently set description.  Fills all 
  13536.      the other country attributes with values.  LCP: CountryAttribs 
  13537.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13538.  
  13539.      Determine the primary language of the current country.  "Desc" must be 
  13540.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13541.      CountryPrimLang 
  13542.      bool getAllLanguages(vecString &Languages) 
  13543.  
  13544.      Determine all the languages used by the current country.  "Desc" must be 
  13545.      already set.  The result is returned in priority order (highest priority 
  13546.      first) in vecString &Languages.  LCP: CountryLanguages 
  13547.      bool getLanguageList(vecString &Languages) 
  13548.  
  13549.      Get a list of all possible languages, in alphabetical order, returned in 
  13550.      vecString &Languages.  LCP: CountryLangList 
  13551.      bool getLanguageListEngNat(mapString &Languages) 
  13552.  
  13553.      Get a map of all possible languages, their native description in 
  13554.      alphabetical order by english description, returned in in vecString 
  13555.      &Languages.  LCP: CountryLangListEngNat 
  13556.  
  13557.   Delete a country 
  13558.      bool deleteFromDesc() 
  13559.  
  13560.      Delete the country that uses the currently set description.  LCP: 
  13561.      CountryDelete 
  13562.  
  13563.   Set data members 
  13564.      bool setAll(mapString &FieldValues) 
  13565.  
  13566.      Sets all the data members of a topic using the mapString which is passed 
  13567.      to it.  Only the fields present in the mapString are updated, the other 
  13568.      fields are untouched.  LCP: CountryUpdate 
  13569.      bool setDesc(const string &DescSetting) 
  13570.  
  13571.      Set the short description 
  13572.      bool setDescLong(const string &DescLongSetting) 
  13573.  
  13574.      Set the long description 
  13575.      bool setDescNative(const string &DescNativeSetting) 
  13576.  
  13577.      Set the native language description 
  13578.      bool setNetCode(const string &NetCodeSetting) 
  13579.  
  13580.      Set the internet code for this country 
  13581.      bool erase() 
  13582.  
  13583.      Sets all the data members to empty 
  13584.  
  13585.   Get data members 
  13586.      bool getAll(mapString &FieldValues) 
  13587.  
  13588.      Return a mapString of all the data members of this topic. The key is the 
  13589.      variable name.  LCP: CountryAttribs 
  13590.      string getDesc() 
  13591.  
  13592.      Get the short description 
  13593.      string getDescLong() 
  13594.  
  13595.      Get the long description 
  13596.      string getDescNative() 
  13597.  
  13598.      Get the native language description 
  13599.      string getNetCode() 
  13600.  
  13601.      Get the internet code for this country 
  13602.  
  13603.  
  13604. ΓòÉΓòÉΓòÉ <hidden> w ΓòÉΓòÉΓòÉ
  13605.  
  13606.  
  13607. lyris_Country Class 
  13608.  
  13609.      class lyris_Country 
  13610.  
  13611.      For determining what countries exist, and what languages are spoken & 
  13612.      preferred in each country 
  13613.  
  13614.      Defined in: COUNTRY.H 
  13615.  
  13616.   Create a new country 
  13617.  
  13618.       bool createNew() 
  13619.  
  13620.      Creates a new country/language table row.  LCP: CountryCreate 
  13621.      bool updateDatabase() 
  13622.  
  13623.      Save the current country with the data members that have changed.  LCP: 
  13624.      CountryUpdate 
  13625.      bool VerifyFields() 
  13626.  
  13627.      Verify that all required fields are filled in. 
  13628.  
  13629.   Retrieve data from the database 
  13630.      bool fetchAllCountries(vecString &AllCountries) 
  13631.  
  13632.      Fetch a list of all countries.  LCP: CountryAll 
  13633.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13634.  
  13635.      Fetch a paired list of countries and their native language descriptions, 
  13636.      sorted by english description.  LCP: CountryEngNat 
  13637.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13638.  
  13639.      Fetch a paired list of native language country descriptions, and the 
  13640.      english name of the country. 
  13641.      bool retrieveFromNetCode() 
  13642.  
  13643.      Determine the country that uses the currently set NetCode.  Fills all the 
  13644.      other country attributes with values. LCP: CountryAttNetCode 
  13645.      bool retrieveFromDesc() 
  13646.  
  13647.      Determine the country that uses the currently set description.  Fills all 
  13648.      the other country attributes with values.  LCP: CountryAttribs 
  13649.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13650.  
  13651.      Determine the primary language of the current country.  "Desc" must be 
  13652.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13653.      CountryPrimLang 
  13654.      bool getAllLanguages(vecString &Languages) 
  13655.  
  13656.      Determine all the languages used by the current country.  "Desc" must be 
  13657.      already set.  The result is returned in priority order (highest priority 
  13658.      first) in vecString &Languages.  LCP: CountryLanguages 
  13659.      bool getLanguageList(vecString &Languages) 
  13660.  
  13661.      Get a list of all possible languages, in alphabetical order, returned in 
  13662.      vecString &Languages.  LCP: CountryLangList 
  13663.      bool getLanguageListEngNat(mapString &Languages) 
  13664.  
  13665.      Get a map of all possible languages, their native description in 
  13666.      alphabetical order by english description, returned in in vecString 
  13667.      &Languages.  LCP: CountryLangListEngNat 
  13668.  
  13669.   Delete a country 
  13670.      bool deleteFromDesc() 
  13671.  
  13672.      Delete the country that uses the currently set description.  LCP: 
  13673.      CountryDelete 
  13674.  
  13675.   Set data members 
  13676.      bool setAll(mapString &FieldValues) 
  13677.  
  13678.      Sets all the data members of a topic using the mapString which is passed 
  13679.      to it.  Only the fields present in the mapString are updated, the other 
  13680.      fields are untouched.  LCP: CountryUpdate 
  13681.      bool setDesc(const string &DescSetting) 
  13682.  
  13683.      Set the short description 
  13684.      bool setDescLong(const string &DescLongSetting) 
  13685.  
  13686.      Set the long description 
  13687.      bool setDescNative(const string &DescNativeSetting) 
  13688.  
  13689.      Set the native language description 
  13690.      bool setNetCode(const string &NetCodeSetting) 
  13691.  
  13692.      Set the internet code for this country 
  13693.      bool erase() 
  13694.  
  13695.      Sets all the data members to empty 
  13696.  
  13697.   Get data members 
  13698.      bool getAll(mapString &FieldValues) 
  13699.  
  13700.      Return a mapString of all the data members of this topic. The key is the 
  13701.      variable name.  LCP: CountryAttribs 
  13702.      string getDesc() 
  13703.  
  13704.      Get the short description 
  13705.      string getDescLong() 
  13706.  
  13707.      Get the long description 
  13708.      string getDescNative() 
  13709.  
  13710.      Get the native language description 
  13711.      string getNetCode() 
  13712.  
  13713.      Get the internet code for this country 
  13714.  
  13715.  
  13716. ΓòÉΓòÉΓòÉ <hidden> x ΓòÉΓòÉΓòÉ
  13717.  
  13718.  
  13719. lyris_Country Class 
  13720.  
  13721.      class lyris_Country 
  13722.  
  13723.      For determining what countries exist, and what languages are spoken & 
  13724.      preferred in each country 
  13725.  
  13726.      Defined in: COUNTRY.H 
  13727.  
  13728.   Create a new country 
  13729.  
  13730.       bool createNew() 
  13731.  
  13732.      Creates a new country/language table row.  LCP: CountryCreate 
  13733.      bool updateDatabase() 
  13734.  
  13735.      Save the current country with the data members that have changed.  LCP: 
  13736.      CountryUpdate 
  13737.      bool VerifyFields() 
  13738.  
  13739.      Verify that all required fields are filled in. 
  13740.  
  13741.   Retrieve data from the database 
  13742.      bool fetchAllCountries(vecString &AllCountries) 
  13743.  
  13744.      Fetch a list of all countries.  LCP: CountryAll 
  13745.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13746.  
  13747.      Fetch a paired list of countries and their native language descriptions, 
  13748.      sorted by english description.  LCP: CountryEngNat 
  13749.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13750.  
  13751.      Fetch a paired list of native language country descriptions, and the 
  13752.      english name of the country. 
  13753.      bool retrieveFromNetCode() 
  13754.  
  13755.      Determine the country that uses the currently set NetCode.  Fills all the 
  13756.      other country attributes with values. LCP: CountryAttNetCode 
  13757.      bool retrieveFromDesc() 
  13758.  
  13759.      Determine the country that uses the currently set description.  Fills all 
  13760.      the other country attributes with values.  LCP: CountryAttribs 
  13761.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13762.  
  13763.      Determine the primary language of the current country.  "Desc" must be 
  13764.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13765.      CountryPrimLang 
  13766.      bool getAllLanguages(vecString &Languages) 
  13767.  
  13768.      Determine all the languages used by the current country.  "Desc" must be 
  13769.      already set.  The result is returned in priority order (highest priority 
  13770.      first) in vecString &Languages.  LCP: CountryLanguages 
  13771.      bool getLanguageList(vecString &Languages) 
  13772.  
  13773.      Get a list of all possible languages, in alphabetical order, returned in 
  13774.      vecString &Languages.  LCP: CountryLangList 
  13775.      bool getLanguageListEngNat(mapString &Languages) 
  13776.  
  13777.      Get a map of all possible languages, their native description in 
  13778.      alphabetical order by english description, returned in in vecString 
  13779.      &Languages.  LCP: CountryLangListEngNat 
  13780.  
  13781.   Delete a country 
  13782.      bool deleteFromDesc() 
  13783.  
  13784.      Delete the country that uses the currently set description.  LCP: 
  13785.      CountryDelete 
  13786.  
  13787.   Set data members 
  13788.      bool setAll(mapString &FieldValues) 
  13789.  
  13790.      Sets all the data members of a topic using the mapString which is passed 
  13791.      to it.  Only the fields present in the mapString are updated, the other 
  13792.      fields are untouched.  LCP: CountryUpdate 
  13793.      bool setDesc(const string &DescSetting) 
  13794.  
  13795.      Set the short description 
  13796.      bool setDescLong(const string &DescLongSetting) 
  13797.  
  13798.      Set the long description 
  13799.      bool setDescNative(const string &DescNativeSetting) 
  13800.  
  13801.      Set the native language description 
  13802.      bool setNetCode(const string &NetCodeSetting) 
  13803.  
  13804.      Set the internet code for this country 
  13805.      bool erase() 
  13806.  
  13807.      Sets all the data members to empty 
  13808.  
  13809.   Get data members 
  13810.      bool getAll(mapString &FieldValues) 
  13811.  
  13812.      Return a mapString of all the data members of this topic. The key is the 
  13813.      variable name.  LCP: CountryAttribs 
  13814.      string getDesc() 
  13815.  
  13816.      Get the short description 
  13817.      string getDescLong() 
  13818.  
  13819.      Get the long description 
  13820.      string getDescNative() 
  13821.  
  13822.      Get the native language description 
  13823.      string getNetCode() 
  13824.  
  13825.      Get the internet code for this country 
  13826.  
  13827.  
  13828. ΓòÉΓòÉΓòÉ <hidden> y ΓòÉΓòÉΓòÉ
  13829.  
  13830.  
  13831. lyris_Country Class 
  13832.  
  13833.      class lyris_Country 
  13834.  
  13835.      For determining what countries exist, and what languages are spoken & 
  13836.      preferred in each country 
  13837.  
  13838.      Defined in: COUNTRY.H 
  13839.  
  13840.   Create a new country 
  13841.  
  13842.       bool createNew() 
  13843.  
  13844.      Creates a new country/language table row.  LCP: CountryCreate 
  13845.      bool updateDatabase() 
  13846.  
  13847.      Save the current country with the data members that have changed.  LCP: 
  13848.      CountryUpdate 
  13849.      bool VerifyFields() 
  13850.  
  13851.      Verify that all required fields are filled in. 
  13852.  
  13853.   Retrieve data from the database 
  13854.      bool fetchAllCountries(vecString &AllCountries) 
  13855.  
  13856.      Fetch a list of all countries.  LCP: CountryAll 
  13857.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13858.  
  13859.      Fetch a paired list of countries and their native language descriptions, 
  13860.      sorted by english description.  LCP: CountryEngNat 
  13861.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13862.  
  13863.      Fetch a paired list of native language country descriptions, and the 
  13864.      english name of the country. 
  13865.      bool retrieveFromNetCode() 
  13866.  
  13867.      Determine the country that uses the currently set NetCode.  Fills all the 
  13868.      other country attributes with values. LCP: CountryAttNetCode 
  13869.      bool retrieveFromDesc() 
  13870.  
  13871.      Determine the country that uses the currently set description.  Fills all 
  13872.      the other country attributes with values.  LCP: CountryAttribs 
  13873.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13874.  
  13875.      Determine the primary language of the current country.  "Desc" must be 
  13876.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13877.      CountryPrimLang 
  13878.      bool getAllLanguages(vecString &Languages) 
  13879.  
  13880.      Determine all the languages used by the current country.  "Desc" must be 
  13881.      already set.  The result is returned in priority order (highest priority 
  13882.      first) in vecString &Languages.  LCP: CountryLanguages 
  13883.      bool getLanguageList(vecString &Languages) 
  13884.  
  13885.      Get a list of all possible languages, in alphabetical order, returned in 
  13886.      vecString &Languages.  LCP: CountryLangList 
  13887.      bool getLanguageListEngNat(mapString &Languages) 
  13888.  
  13889.      Get a map of all possible languages, their native description in 
  13890.      alphabetical order by english description, returned in in vecString 
  13891.      &Languages.  LCP: CountryLangListEngNat 
  13892.  
  13893.   Delete a country 
  13894.      bool deleteFromDesc() 
  13895.  
  13896.      Delete the country that uses the currently set description.  LCP: 
  13897.      CountryDelete 
  13898.  
  13899.   Set data members 
  13900.      bool setAll(mapString &FieldValues) 
  13901.  
  13902.      Sets all the data members of a topic using the mapString which is passed 
  13903.      to it.  Only the fields present in the mapString are updated, the other 
  13904.      fields are untouched.  LCP: CountryUpdate 
  13905.      bool setDesc(const string &DescSetting) 
  13906.  
  13907.      Set the short description 
  13908.      bool setDescLong(const string &DescLongSetting) 
  13909.  
  13910.      Set the long description 
  13911.      bool setDescNative(const string &DescNativeSetting) 
  13912.  
  13913.      Set the native language description 
  13914.      bool setNetCode(const string &NetCodeSetting) 
  13915.  
  13916.      Set the internet code for this country 
  13917.      bool erase() 
  13918.  
  13919.      Sets all the data members to empty 
  13920.  
  13921.   Get data members 
  13922.      bool getAll(mapString &FieldValues) 
  13923.  
  13924.      Return a mapString of all the data members of this topic. The key is the 
  13925.      variable name.  LCP: CountryAttribs 
  13926.      string getDesc() 
  13927.  
  13928.      Get the short description 
  13929.      string getDescLong() 
  13930.  
  13931.      Get the long description 
  13932.      string getDescNative() 
  13933.  
  13934.      Get the native language description 
  13935.      string getNetCode() 
  13936.  
  13937.      Get the internet code for this country 
  13938.  
  13939.  
  13940. ΓòÉΓòÉΓòÉ <hidden> z ΓòÉΓòÉΓòÉ
  13941.  
  13942.  
  13943. lyris_Country Class 
  13944.  
  13945.      class lyris_Country 
  13946.  
  13947.      For determining what countries exist, and what languages are spoken & 
  13948.      preferred in each country 
  13949.  
  13950.      Defined in: COUNTRY.H 
  13951.  
  13952.   Create a new country 
  13953.  
  13954.       bool createNew() 
  13955.  
  13956.      Creates a new country/language table row.  LCP: CountryCreate 
  13957.      bool updateDatabase() 
  13958.  
  13959.      Save the current country with the data members that have changed.  LCP: 
  13960.      CountryUpdate 
  13961.      bool VerifyFields() 
  13962.  
  13963.      Verify that all required fields are filled in. 
  13964.  
  13965.   Retrieve data from the database 
  13966.      bool fetchAllCountries(vecString &AllCountries) 
  13967.  
  13968.      Fetch a list of all countries.  LCP: CountryAll 
  13969.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  13970.  
  13971.      Fetch a paired list of countries and their native language descriptions, 
  13972.      sorted by english description.  LCP: CountryEngNat 
  13973.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  13974.  
  13975.      Fetch a paired list of native language country descriptions, and the 
  13976.      english name of the country. 
  13977.      bool retrieveFromNetCode() 
  13978.  
  13979.      Determine the country that uses the currently set NetCode.  Fills all the 
  13980.      other country attributes with values. LCP: CountryAttNetCode 
  13981.      bool retrieveFromDesc() 
  13982.  
  13983.      Determine the country that uses the currently set description.  Fills all 
  13984.      the other country attributes with values.  LCP: CountryAttribs 
  13985.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  13986.  
  13987.      Determine the primary language of the current country.  "Desc" must be 
  13988.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  13989.      CountryPrimLang 
  13990.      bool getAllLanguages(vecString &Languages) 
  13991.  
  13992.      Determine all the languages used by the current country.  "Desc" must be 
  13993.      already set.  The result is returned in priority order (highest priority 
  13994.      first) in vecString &Languages.  LCP: CountryLanguages 
  13995.      bool getLanguageList(vecString &Languages) 
  13996.  
  13997.      Get a list of all possible languages, in alphabetical order, returned in 
  13998.      vecString &Languages.  LCP: CountryLangList 
  13999.      bool getLanguageListEngNat(mapString &Languages) 
  14000.  
  14001.      Get a map of all possible languages, their native description in 
  14002.      alphabetical order by english description, returned in in vecString 
  14003.      &Languages.  LCP: CountryLangListEngNat 
  14004.  
  14005.   Delete a country 
  14006.      bool deleteFromDesc() 
  14007.  
  14008.      Delete the country that uses the currently set description.  LCP: 
  14009.      CountryDelete 
  14010.  
  14011.   Set data members 
  14012.      bool setAll(mapString &FieldValues) 
  14013.  
  14014.      Sets all the data members of a topic using the mapString which is passed 
  14015.      to it.  Only the fields present in the mapString are updated, the other 
  14016.      fields are untouched.  LCP: CountryUpdate 
  14017.      bool setDesc(const string &DescSetting) 
  14018.  
  14019.      Set the short description 
  14020.      bool setDescLong(const string &DescLongSetting) 
  14021.  
  14022.      Set the long description 
  14023.      bool setDescNative(const string &DescNativeSetting) 
  14024.  
  14025.      Set the native language description 
  14026.      bool setNetCode(const string &NetCodeSetting) 
  14027.  
  14028.      Set the internet code for this country 
  14029.      bool erase() 
  14030.  
  14031.      Sets all the data members to empty 
  14032.  
  14033.   Get data members 
  14034.      bool getAll(mapString &FieldValues) 
  14035.  
  14036.      Return a mapString of all the data members of this topic. The key is the 
  14037.      variable name.  LCP: CountryAttribs 
  14038.      string getDesc() 
  14039.  
  14040.      Get the short description 
  14041.      string getDescLong() 
  14042.  
  14043.      Get the long description 
  14044.      string getDescNative() 
  14045.  
  14046.      Get the native language description 
  14047.      string getNetCode() 
  14048.  
  14049.      Get the internet code for this country 
  14050.  
  14051.  
  14052. ΓòÉΓòÉΓòÉ <hidden> { ΓòÉΓòÉΓòÉ
  14053.  
  14054.  
  14055. lyris_Country Class 
  14056.  
  14057.      class lyris_Country 
  14058.  
  14059.      For determining what countries exist, and what languages are spoken & 
  14060.      preferred in each country 
  14061.  
  14062.      Defined in: COUNTRY.H 
  14063.  
  14064.   Create a new country 
  14065.  
  14066.       bool createNew() 
  14067.  
  14068.      Creates a new country/language table row.  LCP: CountryCreate 
  14069.      bool updateDatabase() 
  14070.  
  14071.      Save the current country with the data members that have changed.  LCP: 
  14072.      CountryUpdate 
  14073.      bool VerifyFields() 
  14074.  
  14075.      Verify that all required fields are filled in. 
  14076.  
  14077.   Retrieve data from the database 
  14078.      bool fetchAllCountries(vecString &AllCountries) 
  14079.  
  14080.      Fetch a list of all countries.  LCP: CountryAll 
  14081.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14082.  
  14083.      Fetch a paired list of countries and their native language descriptions, 
  14084.      sorted by english description.  LCP: CountryEngNat 
  14085.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14086.  
  14087.      Fetch a paired list of native language country descriptions, and the 
  14088.      english name of the country. 
  14089.      bool retrieveFromNetCode() 
  14090.  
  14091.      Determine the country that uses the currently set NetCode.  Fills all the 
  14092.      other country attributes with values. LCP: CountryAttNetCode 
  14093.      bool retrieveFromDesc() 
  14094.  
  14095.      Determine the country that uses the currently set description.  Fills all 
  14096.      the other country attributes with values.  LCP: CountryAttribs 
  14097.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14098.  
  14099.      Determine the primary language of the current country.  "Desc" must be 
  14100.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14101.      CountryPrimLang 
  14102.      bool getAllLanguages(vecString &Languages) 
  14103.  
  14104.      Determine all the languages used by the current country.  "Desc" must be 
  14105.      already set.  The result is returned in priority order (highest priority 
  14106.      first) in vecString &Languages.  LCP: CountryLanguages 
  14107.      bool getLanguageList(vecString &Languages) 
  14108.  
  14109.      Get a list of all possible languages, in alphabetical order, returned in 
  14110.      vecString &Languages.  LCP: CountryLangList 
  14111.      bool getLanguageListEngNat(mapString &Languages) 
  14112.  
  14113.      Get a map of all possible languages, their native description in 
  14114.      alphabetical order by english description, returned in in vecString 
  14115.      &Languages.  LCP: CountryLangListEngNat 
  14116.  
  14117.   Delete a country 
  14118.      bool deleteFromDesc() 
  14119.  
  14120.      Delete the country that uses the currently set description.  LCP: 
  14121.      CountryDelete 
  14122.  
  14123.   Set data members 
  14124.      bool setAll(mapString &FieldValues) 
  14125.  
  14126.      Sets all the data members of a topic using the mapString which is passed 
  14127.      to it.  Only the fields present in the mapString are updated, the other 
  14128.      fields are untouched.  LCP: CountryUpdate 
  14129.      bool setDesc(const string &DescSetting) 
  14130.  
  14131.      Set the short description 
  14132.      bool setDescLong(const string &DescLongSetting) 
  14133.  
  14134.      Set the long description 
  14135.      bool setDescNative(const string &DescNativeSetting) 
  14136.  
  14137.      Set the native language description 
  14138.      bool setNetCode(const string &NetCodeSetting) 
  14139.  
  14140.      Set the internet code for this country 
  14141.      bool erase() 
  14142.  
  14143.      Sets all the data members to empty 
  14144.  
  14145.   Get data members 
  14146.      bool getAll(mapString &FieldValues) 
  14147.  
  14148.      Return a mapString of all the data members of this topic. The key is the 
  14149.      variable name.  LCP: CountryAttribs 
  14150.      string getDesc() 
  14151.  
  14152.      Get the short description 
  14153.      string getDescLong() 
  14154.  
  14155.      Get the long description 
  14156.      string getDescNative() 
  14157.  
  14158.      Get the native language description 
  14159.      string getNetCode() 
  14160.  
  14161.      Get the internet code for this country 
  14162.  
  14163.  
  14164. ΓòÉΓòÉΓòÉ <hidden> | ΓòÉΓòÉΓòÉ
  14165.  
  14166.  
  14167. lyris_Country Class 
  14168.  
  14169.      class lyris_Country 
  14170.  
  14171.      For determining what countries exist, and what languages are spoken & 
  14172.      preferred in each country 
  14173.  
  14174.      Defined in: COUNTRY.H 
  14175.  
  14176.   Create a new country 
  14177.  
  14178.       bool createNew() 
  14179.  
  14180.      Creates a new country/language table row.  LCP: CountryCreate 
  14181.      bool updateDatabase() 
  14182.  
  14183.      Save the current country with the data members that have changed.  LCP: 
  14184.      CountryUpdate 
  14185.      bool VerifyFields() 
  14186.  
  14187.      Verify that all required fields are filled in. 
  14188.  
  14189.   Retrieve data from the database 
  14190.      bool fetchAllCountries(vecString &AllCountries) 
  14191.  
  14192.      Fetch a list of all countries.  LCP: CountryAll 
  14193.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14194.  
  14195.      Fetch a paired list of countries and their native language descriptions, 
  14196.      sorted by english description.  LCP: CountryEngNat 
  14197.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14198.  
  14199.      Fetch a paired list of native language country descriptions, and the 
  14200.      english name of the country. 
  14201.      bool retrieveFromNetCode() 
  14202.  
  14203.      Determine the country that uses the currently set NetCode.  Fills all the 
  14204.      other country attributes with values. LCP: CountryAttNetCode 
  14205.      bool retrieveFromDesc() 
  14206.  
  14207.      Determine the country that uses the currently set description.  Fills all 
  14208.      the other country attributes with values.  LCP: CountryAttribs 
  14209.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14210.  
  14211.      Determine the primary language of the current country.  "Desc" must be 
  14212.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14213.      CountryPrimLang 
  14214.      bool getAllLanguages(vecString &Languages) 
  14215.  
  14216.      Determine all the languages used by the current country.  "Desc" must be 
  14217.      already set.  The result is returned in priority order (highest priority 
  14218.      first) in vecString &Languages.  LCP: CountryLanguages 
  14219.      bool getLanguageList(vecString &Languages) 
  14220.  
  14221.      Get a list of all possible languages, in alphabetical order, returned in 
  14222.      vecString &Languages.  LCP: CountryLangList 
  14223.      bool getLanguageListEngNat(mapString &Languages) 
  14224.  
  14225.      Get a map of all possible languages, their native description in 
  14226.      alphabetical order by english description, returned in in vecString 
  14227.      &Languages.  LCP: CountryLangListEngNat 
  14228.  
  14229.   Delete a country 
  14230.      bool deleteFromDesc() 
  14231.  
  14232.      Delete the country that uses the currently set description.  LCP: 
  14233.      CountryDelete 
  14234.  
  14235.   Set data members 
  14236.      bool setAll(mapString &FieldValues) 
  14237.  
  14238.      Sets all the data members of a topic using the mapString which is passed 
  14239.      to it.  Only the fields present in the mapString are updated, the other 
  14240.      fields are untouched.  LCP: CountryUpdate 
  14241.      bool setDesc(const string &DescSetting) 
  14242.  
  14243.      Set the short description 
  14244.      bool setDescLong(const string &DescLongSetting) 
  14245.  
  14246.      Set the long description 
  14247.      bool setDescNative(const string &DescNativeSetting) 
  14248.  
  14249.      Set the native language description 
  14250.      bool setNetCode(const string &NetCodeSetting) 
  14251.  
  14252.      Set the internet code for this country 
  14253.      bool erase() 
  14254.  
  14255.      Sets all the data members to empty 
  14256.  
  14257.   Get data members 
  14258.      bool getAll(mapString &FieldValues) 
  14259.  
  14260.      Return a mapString of all the data members of this topic. The key is the 
  14261.      variable name.  LCP: CountryAttribs 
  14262.      string getDesc() 
  14263.  
  14264.      Get the short description 
  14265.      string getDescLong() 
  14266.  
  14267.      Get the long description 
  14268.      string getDescNative() 
  14269.  
  14270.      Get the native language description 
  14271.      string getNetCode() 
  14272.  
  14273.      Get the internet code for this country 
  14274.  
  14275.  
  14276. ΓòÉΓòÉΓòÉ <hidden> } ΓòÉΓòÉΓòÉ
  14277.  
  14278.  
  14279. lyris_Country Class 
  14280.  
  14281.      class lyris_Country 
  14282.  
  14283.      For determining what countries exist, and what languages are spoken & 
  14284.      preferred in each country 
  14285.  
  14286.      Defined in: COUNTRY.H 
  14287.  
  14288.   Create a new country 
  14289.  
  14290.       bool createNew() 
  14291.  
  14292.      Creates a new country/language table row.  LCP: CountryCreate 
  14293.      bool updateDatabase() 
  14294.  
  14295.      Save the current country with the data members that have changed.  LCP: 
  14296.      CountryUpdate 
  14297.      bool VerifyFields() 
  14298.  
  14299.      Verify that all required fields are filled in. 
  14300.  
  14301.   Retrieve data from the database 
  14302.      bool fetchAllCountries(vecString &AllCountries) 
  14303.  
  14304.      Fetch a list of all countries.  LCP: CountryAll 
  14305.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14306.  
  14307.      Fetch a paired list of countries and their native language descriptions, 
  14308.      sorted by english description.  LCP: CountryEngNat 
  14309.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14310.  
  14311.      Fetch a paired list of native language country descriptions, and the 
  14312.      english name of the country. 
  14313.      bool retrieveFromNetCode() 
  14314.  
  14315.      Determine the country that uses the currently set NetCode.  Fills all the 
  14316.      other country attributes with values. LCP: CountryAttNetCode 
  14317.      bool retrieveFromDesc() 
  14318.  
  14319.      Determine the country that uses the currently set description.  Fills all 
  14320.      the other country attributes with values.  LCP: CountryAttribs 
  14321.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14322.  
  14323.      Determine the primary language of the current country.  "Desc" must be 
  14324.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14325.      CountryPrimLang 
  14326.      bool getAllLanguages(vecString &Languages) 
  14327.  
  14328.      Determine all the languages used by the current country.  "Desc" must be 
  14329.      already set.  The result is returned in priority order (highest priority 
  14330.      first) in vecString &Languages.  LCP: CountryLanguages 
  14331.      bool getLanguageList(vecString &Languages) 
  14332.  
  14333.      Get a list of all possible languages, in alphabetical order, returned in 
  14334.      vecString &Languages.  LCP: CountryLangList 
  14335.      bool getLanguageListEngNat(mapString &Languages) 
  14336.  
  14337.      Get a map of all possible languages, their native description in 
  14338.      alphabetical order by english description, returned in in vecString 
  14339.      &Languages.  LCP: CountryLangListEngNat 
  14340.  
  14341.   Delete a country 
  14342.      bool deleteFromDesc() 
  14343.  
  14344.      Delete the country that uses the currently set description.  LCP: 
  14345.      CountryDelete 
  14346.  
  14347.   Set data members 
  14348.      bool setAll(mapString &FieldValues) 
  14349.  
  14350.      Sets all the data members of a topic using the mapString which is passed 
  14351.      to it.  Only the fields present in the mapString are updated, the other 
  14352.      fields are untouched.  LCP: CountryUpdate 
  14353.      bool setDesc(const string &DescSetting) 
  14354.  
  14355.      Set the short description 
  14356.      bool setDescLong(const string &DescLongSetting) 
  14357.  
  14358.      Set the long description 
  14359.      bool setDescNative(const string &DescNativeSetting) 
  14360.  
  14361.      Set the native language description 
  14362.      bool setNetCode(const string &NetCodeSetting) 
  14363.  
  14364.      Set the internet code for this country 
  14365.      bool erase() 
  14366.  
  14367.      Sets all the data members to empty 
  14368.  
  14369.   Get data members 
  14370.      bool getAll(mapString &FieldValues) 
  14371.  
  14372.      Return a mapString of all the data members of this topic. The key is the 
  14373.      variable name.  LCP: CountryAttribs 
  14374.      string getDesc() 
  14375.  
  14376.      Get the short description 
  14377.      string getDescLong() 
  14378.  
  14379.      Get the long description 
  14380.      string getDescNative() 
  14381.  
  14382.      Get the native language description 
  14383.      string getNetCode() 
  14384.  
  14385.      Get the internet code for this country 
  14386.  
  14387.  
  14388. ΓòÉΓòÉΓòÉ <hidden> ~ ΓòÉΓòÉΓòÉ
  14389.  
  14390.  
  14391. lyris_Country Class 
  14392.  
  14393.      class lyris_Country 
  14394.  
  14395.      For determining what countries exist, and what languages are spoken & 
  14396.      preferred in each country 
  14397.  
  14398.      Defined in: COUNTRY.H 
  14399.  
  14400.   Create a new country 
  14401.  
  14402.       bool createNew() 
  14403.  
  14404.      Creates a new country/language table row.  LCP: CountryCreate 
  14405.      bool updateDatabase() 
  14406.  
  14407.      Save the current country with the data members that have changed.  LCP: 
  14408.      CountryUpdate 
  14409.      bool VerifyFields() 
  14410.  
  14411.      Verify that all required fields are filled in. 
  14412.  
  14413.   Retrieve data from the database 
  14414.      bool fetchAllCountries(vecString &AllCountries) 
  14415.  
  14416.      Fetch a list of all countries.  LCP: CountryAll 
  14417.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14418.  
  14419.      Fetch a paired list of countries and their native language descriptions, 
  14420.      sorted by english description.  LCP: CountryEngNat 
  14421.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14422.  
  14423.      Fetch a paired list of native language country descriptions, and the 
  14424.      english name of the country. 
  14425.      bool retrieveFromNetCode() 
  14426.  
  14427.      Determine the country that uses the currently set NetCode.  Fills all the 
  14428.      other country attributes with values. LCP: CountryAttNetCode 
  14429.      bool retrieveFromDesc() 
  14430.  
  14431.      Determine the country that uses the currently set description.  Fills all 
  14432.      the other country attributes with values.  LCP: CountryAttribs 
  14433.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14434.  
  14435.      Determine the primary language of the current country.  "Desc" must be 
  14436.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14437.      CountryPrimLang 
  14438.      bool getAllLanguages(vecString &Languages) 
  14439.  
  14440.      Determine all the languages used by the current country.  "Desc" must be 
  14441.      already set.  The result is returned in priority order (highest priority 
  14442.      first) in vecString &Languages.  LCP: CountryLanguages 
  14443.      bool getLanguageList(vecString &Languages) 
  14444.  
  14445.      Get a list of all possible languages, in alphabetical order, returned in 
  14446.      vecString &Languages.  LCP: CountryLangList 
  14447.      bool getLanguageListEngNat(mapString &Languages) 
  14448.  
  14449.      Get a map of all possible languages, their native description in 
  14450.      alphabetical order by english description, returned in in vecString 
  14451.      &Languages.  LCP: CountryLangListEngNat 
  14452.  
  14453.   Delete a country 
  14454.      bool deleteFromDesc() 
  14455.  
  14456.      Delete the country that uses the currently set description.  LCP: 
  14457.      CountryDelete 
  14458.  
  14459.   Set data members 
  14460.      bool setAll(mapString &FieldValues) 
  14461.  
  14462.      Sets all the data members of a topic using the mapString which is passed 
  14463.      to it.  Only the fields present in the mapString are updated, the other 
  14464.      fields are untouched.  LCP: CountryUpdate 
  14465.      bool setDesc(const string &DescSetting) 
  14466.  
  14467.      Set the short description 
  14468.      bool setDescLong(const string &DescLongSetting) 
  14469.  
  14470.      Set the long description 
  14471.      bool setDescNative(const string &DescNativeSetting) 
  14472.  
  14473.      Set the native language description 
  14474.      bool setNetCode(const string &NetCodeSetting) 
  14475.  
  14476.      Set the internet code for this country 
  14477.      bool erase() 
  14478.  
  14479.      Sets all the data members to empty 
  14480.  
  14481.   Get data members 
  14482.      bool getAll(mapString &FieldValues) 
  14483.  
  14484.      Return a mapString of all the data members of this topic. The key is the 
  14485.      variable name.  LCP: CountryAttribs 
  14486.      string getDesc() 
  14487.  
  14488.      Get the short description 
  14489.      string getDescLong() 
  14490.  
  14491.      Get the long description 
  14492.      string getDescNative() 
  14493.  
  14494.      Get the native language description 
  14495.      string getNetCode() 
  14496.  
  14497.      Get the internet code for this country 
  14498.  
  14499.  
  14500. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  14501.  
  14502.  
  14503. lyris_Country Class 
  14504.  
  14505.      class lyris_Country 
  14506.  
  14507.      For determining what countries exist, and what languages are spoken & 
  14508.      preferred in each country 
  14509.  
  14510.      Defined in: COUNTRY.H 
  14511.  
  14512.   Create a new country 
  14513.  
  14514.       bool createNew() 
  14515.  
  14516.      Creates a new country/language table row.  LCP: CountryCreate 
  14517.      bool updateDatabase() 
  14518.  
  14519.      Save the current country with the data members that have changed.  LCP: 
  14520.      CountryUpdate 
  14521.      bool VerifyFields() 
  14522.  
  14523.      Verify that all required fields are filled in. 
  14524.  
  14525.   Retrieve data from the database 
  14526.      bool fetchAllCountries(vecString &AllCountries) 
  14527.  
  14528.      Fetch a list of all countries.  LCP: CountryAll 
  14529.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14530.  
  14531.      Fetch a paired list of countries and their native language descriptions, 
  14532.      sorted by english description.  LCP: CountryEngNat 
  14533.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14534.  
  14535.      Fetch a paired list of native language country descriptions, and the 
  14536.      english name of the country. 
  14537.      bool retrieveFromNetCode() 
  14538.  
  14539.      Determine the country that uses the currently set NetCode.  Fills all the 
  14540.      other country attributes with values. LCP: CountryAttNetCode 
  14541.      bool retrieveFromDesc() 
  14542.  
  14543.      Determine the country that uses the currently set description.  Fills all 
  14544.      the other country attributes with values.  LCP: CountryAttribs 
  14545.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14546.  
  14547.      Determine the primary language of the current country.  "Desc" must be 
  14548.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14549.      CountryPrimLang 
  14550.      bool getAllLanguages(vecString &Languages) 
  14551.  
  14552.      Determine all the languages used by the current country.  "Desc" must be 
  14553.      already set.  The result is returned in priority order (highest priority 
  14554.      first) in vecString &Languages.  LCP: CountryLanguages 
  14555.      bool getLanguageList(vecString &Languages) 
  14556.  
  14557.      Get a list of all possible languages, in alphabetical order, returned in 
  14558.      vecString &Languages.  LCP: CountryLangList 
  14559.      bool getLanguageListEngNat(mapString &Languages) 
  14560.  
  14561.      Get a map of all possible languages, their native description in 
  14562.      alphabetical order by english description, returned in in vecString 
  14563.      &Languages.  LCP: CountryLangListEngNat 
  14564.  
  14565.   Delete a country 
  14566.      bool deleteFromDesc() 
  14567.  
  14568.      Delete the country that uses the currently set description.  LCP: 
  14569.      CountryDelete 
  14570.  
  14571.   Set data members 
  14572.      bool setAll(mapString &FieldValues) 
  14573.  
  14574.      Sets all the data members of a topic using the mapString which is passed 
  14575.      to it.  Only the fields present in the mapString are updated, the other 
  14576.      fields are untouched.  LCP: CountryUpdate 
  14577.      bool setDesc(const string &DescSetting) 
  14578.  
  14579.      Set the short description 
  14580.      bool setDescLong(const string &DescLongSetting) 
  14581.  
  14582.      Set the long description 
  14583.      bool setDescNative(const string &DescNativeSetting) 
  14584.  
  14585.      Set the native language description 
  14586.      bool setNetCode(const string &NetCodeSetting) 
  14587.  
  14588.      Set the internet code for this country 
  14589.      bool erase() 
  14590.  
  14591.      Sets all the data members to empty 
  14592.  
  14593.   Get data members 
  14594.      bool getAll(mapString &FieldValues) 
  14595.  
  14596.      Return a mapString of all the data members of this topic. The key is the 
  14597.      variable name.  LCP: CountryAttribs 
  14598.      string getDesc() 
  14599.  
  14600.      Get the short description 
  14601.      string getDescLong() 
  14602.  
  14603.      Get the long description 
  14604.      string getDescNative() 
  14605.  
  14606.      Get the native language description 
  14607.      string getNetCode() 
  14608.  
  14609.      Get the internet code for this country 
  14610.  
  14611.  
  14612. ΓòÉΓòÉΓòÉ <hidden> ╨É ΓòÉΓòÉΓòÉ
  14613.  
  14614.  
  14615. lyris_Country Class 
  14616.  
  14617.      class lyris_Country 
  14618.  
  14619.      For determining what countries exist, and what languages are spoken & 
  14620.      preferred in each country 
  14621.  
  14622.      Defined in: COUNTRY.H 
  14623.  
  14624.   Create a new country 
  14625.  
  14626.       bool createNew() 
  14627.  
  14628.      Creates a new country/language table row.  LCP: CountryCreate 
  14629.      bool updateDatabase() 
  14630.  
  14631.      Save the current country with the data members that have changed.  LCP: 
  14632.      CountryUpdate 
  14633.      bool VerifyFields() 
  14634.  
  14635.      Verify that all required fields are filled in. 
  14636.  
  14637.   Retrieve data from the database 
  14638.      bool fetchAllCountries(vecString &AllCountries) 
  14639.  
  14640.      Fetch a list of all countries.  LCP: CountryAll 
  14641.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14642.  
  14643.      Fetch a paired list of countries and their native language descriptions, 
  14644.      sorted by english description.  LCP: CountryEngNat 
  14645.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14646.  
  14647.      Fetch a paired list of native language country descriptions, and the 
  14648.      english name of the country. 
  14649.      bool retrieveFromNetCode() 
  14650.  
  14651.      Determine the country that uses the currently set NetCode.  Fills all the 
  14652.      other country attributes with values. LCP: CountryAttNetCode 
  14653.      bool retrieveFromDesc() 
  14654.  
  14655.      Determine the country that uses the currently set description.  Fills all 
  14656.      the other country attributes with values.  LCP: CountryAttribs 
  14657.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14658.  
  14659.      Determine the primary language of the current country.  "Desc" must be 
  14660.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14661.      CountryPrimLang 
  14662.      bool getAllLanguages(vecString &Languages) 
  14663.  
  14664.      Determine all the languages used by the current country.  "Desc" must be 
  14665.      already set.  The result is returned in priority order (highest priority 
  14666.      first) in vecString &Languages.  LCP: CountryLanguages 
  14667.      bool getLanguageList(vecString &Languages) 
  14668.  
  14669.      Get a list of all possible languages, in alphabetical order, returned in 
  14670.      vecString &Languages.  LCP: CountryLangList 
  14671.      bool getLanguageListEngNat(mapString &Languages) 
  14672.  
  14673.      Get a map of all possible languages, their native description in 
  14674.      alphabetical order by english description, returned in in vecString 
  14675.      &Languages.  LCP: CountryLangListEngNat 
  14676.  
  14677.   Delete a country 
  14678.      bool deleteFromDesc() 
  14679.  
  14680.      Delete the country that uses the currently set description.  LCP: 
  14681.      CountryDelete 
  14682.  
  14683.   Set data members 
  14684.      bool setAll(mapString &FieldValues) 
  14685.  
  14686.      Sets all the data members of a topic using the mapString which is passed 
  14687.      to it.  Only the fields present in the mapString are updated, the other 
  14688.      fields are untouched.  LCP: CountryUpdate 
  14689.      bool setDesc(const string &DescSetting) 
  14690.  
  14691.      Set the short description 
  14692.      bool setDescLong(const string &DescLongSetting) 
  14693.  
  14694.      Set the long description 
  14695.      bool setDescNative(const string &DescNativeSetting) 
  14696.  
  14697.      Set the native language description 
  14698.      bool setNetCode(const string &NetCodeSetting) 
  14699.  
  14700.      Set the internet code for this country 
  14701.      bool erase() 
  14702.  
  14703.      Sets all the data members to empty 
  14704.  
  14705.   Get data members 
  14706.      bool getAll(mapString &FieldValues) 
  14707.  
  14708.      Return a mapString of all the data members of this topic. The key is the 
  14709.      variable name.  LCP: CountryAttribs 
  14710.      string getDesc() 
  14711.  
  14712.      Get the short description 
  14713.      string getDescLong() 
  14714.  
  14715.      Get the long description 
  14716.      string getDescNative() 
  14717.  
  14718.      Get the native language description 
  14719.      string getNetCode() 
  14720.  
  14721.      Get the internet code for this country 
  14722.  
  14723.  
  14724. ΓòÉΓòÉΓòÉ <hidden> ╨æ ΓòÉΓòÉΓòÉ
  14725.  
  14726.  
  14727. lyris_Country Class 
  14728.  
  14729.      class lyris_Country 
  14730.  
  14731.      For determining what countries exist, and what languages are spoken & 
  14732.      preferred in each country 
  14733.  
  14734.      Defined in: COUNTRY.H 
  14735.  
  14736.   Create a new country 
  14737.  
  14738.       bool createNew() 
  14739.  
  14740.      Creates a new country/language table row.  LCP: CountryCreate 
  14741.      bool updateDatabase() 
  14742.  
  14743.      Save the current country with the data members that have changed.  LCP: 
  14744.      CountryUpdate 
  14745.      bool VerifyFields() 
  14746.  
  14747.      Verify that all required fields are filled in. 
  14748.  
  14749.   Retrieve data from the database 
  14750.      bool fetchAllCountries(vecString &AllCountries) 
  14751.  
  14752.      Fetch a list of all countries.  LCP: CountryAll 
  14753.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14754.  
  14755.      Fetch a paired list of countries and their native language descriptions, 
  14756.      sorted by english description.  LCP: CountryEngNat 
  14757.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14758.  
  14759.      Fetch a paired list of native language country descriptions, and the 
  14760.      english name of the country. 
  14761.      bool retrieveFromNetCode() 
  14762.  
  14763.      Determine the country that uses the currently set NetCode.  Fills all the 
  14764.      other country attributes with values. LCP: CountryAttNetCode 
  14765.      bool retrieveFromDesc() 
  14766.  
  14767.      Determine the country that uses the currently set description.  Fills all 
  14768.      the other country attributes with values.  LCP: CountryAttribs 
  14769.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14770.  
  14771.      Determine the primary language of the current country.  "Desc" must be 
  14772.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14773.      CountryPrimLang 
  14774.      bool getAllLanguages(vecString &Languages) 
  14775.  
  14776.      Determine all the languages used by the current country.  "Desc" must be 
  14777.      already set.  The result is returned in priority order (highest priority 
  14778.      first) in vecString &Languages.  LCP: CountryLanguages 
  14779.      bool getLanguageList(vecString &Languages) 
  14780.  
  14781.      Get a list of all possible languages, in alphabetical order, returned in 
  14782.      vecString &Languages.  LCP: CountryLangList 
  14783.      bool getLanguageListEngNat(mapString &Languages) 
  14784.  
  14785.      Get a map of all possible languages, their native description in 
  14786.      alphabetical order by english description, returned in in vecString 
  14787.      &Languages.  LCP: CountryLangListEngNat 
  14788.  
  14789.   Delete a country 
  14790.      bool deleteFromDesc() 
  14791.  
  14792.      Delete the country that uses the currently set description.  LCP: 
  14793.      CountryDelete 
  14794.  
  14795.   Set data members 
  14796.      bool setAll(mapString &FieldValues) 
  14797.  
  14798.      Sets all the data members of a topic using the mapString which is passed 
  14799.      to it.  Only the fields present in the mapString are updated, the other 
  14800.      fields are untouched.  LCP: CountryUpdate 
  14801.      bool setDesc(const string &DescSetting) 
  14802.  
  14803.      Set the short description 
  14804.      bool setDescLong(const string &DescLongSetting) 
  14805.  
  14806.      Set the long description 
  14807.      bool setDescNative(const string &DescNativeSetting) 
  14808.  
  14809.      Set the native language description 
  14810.      bool setNetCode(const string &NetCodeSetting) 
  14811.  
  14812.      Set the internet code for this country 
  14813.      bool erase() 
  14814.  
  14815.      Sets all the data members to empty 
  14816.  
  14817.   Get data members 
  14818.      bool getAll(mapString &FieldValues) 
  14819.  
  14820.      Return a mapString of all the data members of this topic. The key is the 
  14821.      variable name.  LCP: CountryAttribs 
  14822.      string getDesc() 
  14823.  
  14824.      Get the short description 
  14825.      string getDescLong() 
  14826.  
  14827.      Get the long description 
  14828.      string getDescNative() 
  14829.  
  14830.      Get the native language description 
  14831.      string getNetCode() 
  14832.  
  14833.      Get the internet code for this country 
  14834.  
  14835.  
  14836. ΓòÉΓòÉΓòÉ <hidden> ╨Æ ΓòÉΓòÉΓòÉ
  14837.  
  14838.  
  14839. lyris_Country Class 
  14840.  
  14841.      class lyris_Country 
  14842.  
  14843.      For determining what countries exist, and what languages are spoken & 
  14844.      preferred in each country 
  14845.  
  14846.      Defined in: COUNTRY.H 
  14847.  
  14848.   Create a new country 
  14849.  
  14850.       bool createNew() 
  14851.  
  14852.      Creates a new country/language table row.  LCP: CountryCreate 
  14853.      bool updateDatabase() 
  14854.  
  14855.      Save the current country with the data members that have changed.  LCP: 
  14856.      CountryUpdate 
  14857.      bool VerifyFields() 
  14858.  
  14859.      Verify that all required fields are filled in. 
  14860.  
  14861.   Retrieve data from the database 
  14862.      bool fetchAllCountries(vecString &AllCountries) 
  14863.  
  14864.      Fetch a list of all countries.  LCP: CountryAll 
  14865.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14866.  
  14867.      Fetch a paired list of countries and their native language descriptions, 
  14868.      sorted by english description.  LCP: CountryEngNat 
  14869.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14870.  
  14871.      Fetch a paired list of native language country descriptions, and the 
  14872.      english name of the country. 
  14873.      bool retrieveFromNetCode() 
  14874.  
  14875.      Determine the country that uses the currently set NetCode.  Fills all the 
  14876.      other country attributes with values. LCP: CountryAttNetCode 
  14877.      bool retrieveFromDesc() 
  14878.  
  14879.      Determine the country that uses the currently set description.  Fills all 
  14880.      the other country attributes with values.  LCP: CountryAttribs 
  14881.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14882.  
  14883.      Determine the primary language of the current country.  "Desc" must be 
  14884.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14885.      CountryPrimLang 
  14886.      bool getAllLanguages(vecString &Languages) 
  14887.  
  14888.      Determine all the languages used by the current country.  "Desc" must be 
  14889.      already set.  The result is returned in priority order (highest priority 
  14890.      first) in vecString &Languages.  LCP: CountryLanguages 
  14891.      bool getLanguageList(vecString &Languages) 
  14892.  
  14893.      Get a list of all possible languages, in alphabetical order, returned in 
  14894.      vecString &Languages.  LCP: CountryLangList 
  14895.      bool getLanguageListEngNat(mapString &Languages) 
  14896.  
  14897.      Get a map of all possible languages, their native description in 
  14898.      alphabetical order by english description, returned in in vecString 
  14899.      &Languages.  LCP: CountryLangListEngNat 
  14900.  
  14901.   Delete a country 
  14902.      bool deleteFromDesc() 
  14903.  
  14904.      Delete the country that uses the currently set description.  LCP: 
  14905.      CountryDelete 
  14906.  
  14907.   Set data members 
  14908.      bool setAll(mapString &FieldValues) 
  14909.  
  14910.      Sets all the data members of a topic using the mapString which is passed 
  14911.      to it.  Only the fields present in the mapString are updated, the other 
  14912.      fields are untouched.  LCP: CountryUpdate 
  14913.      bool setDesc(const string &DescSetting) 
  14914.  
  14915.      Set the short description 
  14916.      bool setDescLong(const string &DescLongSetting) 
  14917.  
  14918.      Set the long description 
  14919.      bool setDescNative(const string &DescNativeSetting) 
  14920.  
  14921.      Set the native language description 
  14922.      bool setNetCode(const string &NetCodeSetting) 
  14923.  
  14924.      Set the internet code for this country 
  14925.      bool erase() 
  14926.  
  14927.      Sets all the data members to empty 
  14928.  
  14929.   Get data members 
  14930.      bool getAll(mapString &FieldValues) 
  14931.  
  14932.      Return a mapString of all the data members of this topic. The key is the 
  14933.      variable name.  LCP: CountryAttribs 
  14934.      string getDesc() 
  14935.  
  14936.      Get the short description 
  14937.      string getDescLong() 
  14938.  
  14939.      Get the long description 
  14940.      string getDescNative() 
  14941.  
  14942.      Get the native language description 
  14943.      string getNetCode() 
  14944.  
  14945.      Get the internet code for this country 
  14946.  
  14947.  
  14948. ΓòÉΓòÉΓòÉ <hidden> ╨ô ΓòÉΓòÉΓòÉ
  14949.  
  14950.  
  14951. lyris_Country Class 
  14952.  
  14953.      class lyris_Country 
  14954.  
  14955.      For determining what countries exist, and what languages are spoken & 
  14956.      preferred in each country 
  14957.  
  14958.      Defined in: COUNTRY.H 
  14959.  
  14960.   Create a new country 
  14961.  
  14962.       bool createNew() 
  14963.  
  14964.      Creates a new country/language table row.  LCP: CountryCreate 
  14965.      bool updateDatabase() 
  14966.  
  14967.      Save the current country with the data members that have changed.  LCP: 
  14968.      CountryUpdate 
  14969.      bool VerifyFields() 
  14970.  
  14971.      Verify that all required fields are filled in. 
  14972.  
  14973.   Retrieve data from the database 
  14974.      bool fetchAllCountries(vecString &AllCountries) 
  14975.  
  14976.      Fetch a list of all countries.  LCP: CountryAll 
  14977.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  14978.  
  14979.      Fetch a paired list of countries and their native language descriptions, 
  14980.      sorted by english description.  LCP: CountryEngNat 
  14981.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  14982.  
  14983.      Fetch a paired list of native language country descriptions, and the 
  14984.      english name of the country. 
  14985.      bool retrieveFromNetCode() 
  14986.  
  14987.      Determine the country that uses the currently set NetCode.  Fills all the 
  14988.      other country attributes with values. LCP: CountryAttNetCode 
  14989.      bool retrieveFromDesc() 
  14990.  
  14991.      Determine the country that uses the currently set description.  Fills all 
  14992.      the other country attributes with values.  LCP: CountryAttribs 
  14993.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  14994.  
  14995.      Determine the primary language of the current country.  "Desc" must be 
  14996.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  14997.      CountryPrimLang 
  14998.      bool getAllLanguages(vecString &Languages) 
  14999.  
  15000.      Determine all the languages used by the current country.  "Desc" must be 
  15001.      already set.  The result is returned in priority order (highest priority 
  15002.      first) in vecString &Languages.  LCP: CountryLanguages 
  15003.      bool getLanguageList(vecString &Languages) 
  15004.  
  15005.      Get a list of all possible languages, in alphabetical order, returned in 
  15006.      vecString &Languages.  LCP: CountryLangList 
  15007.      bool getLanguageListEngNat(mapString &Languages) 
  15008.  
  15009.      Get a map of all possible languages, their native description in 
  15010.      alphabetical order by english description, returned in in vecString 
  15011.      &Languages.  LCP: CountryLangListEngNat 
  15012.  
  15013.   Delete a country 
  15014.      bool deleteFromDesc() 
  15015.  
  15016.      Delete the country that uses the currently set description.  LCP: 
  15017.      CountryDelete 
  15018.  
  15019.   Set data members 
  15020.      bool setAll(mapString &FieldValues) 
  15021.  
  15022.      Sets all the data members of a topic using the mapString which is passed 
  15023.      to it.  Only the fields present in the mapString are updated, the other 
  15024.      fields are untouched.  LCP: CountryUpdate 
  15025.      bool setDesc(const string &DescSetting) 
  15026.  
  15027.      Set the short description 
  15028.      bool setDescLong(const string &DescLongSetting) 
  15029.  
  15030.      Set the long description 
  15031.      bool setDescNative(const string &DescNativeSetting) 
  15032.  
  15033.      Set the native language description 
  15034.      bool setNetCode(const string &NetCodeSetting) 
  15035.  
  15036.      Set the internet code for this country 
  15037.      bool erase() 
  15038.  
  15039.      Sets all the data members to empty 
  15040.  
  15041.   Get data members 
  15042.      bool getAll(mapString &FieldValues) 
  15043.  
  15044.      Return a mapString of all the data members of this topic. The key is the 
  15045.      variable name.  LCP: CountryAttribs 
  15046.      string getDesc() 
  15047.  
  15048.      Get the short description 
  15049.      string getDescLong() 
  15050.  
  15051.      Get the long description 
  15052.      string getDescNative() 
  15053.  
  15054.      Get the native language description 
  15055.      string getNetCode() 
  15056.  
  15057.      Get the internet code for this country 
  15058.  
  15059.  
  15060. ΓòÉΓòÉΓòÉ <hidden> ╨ö ΓòÉΓòÉΓòÉ
  15061.  
  15062.  
  15063. lyris_Country Class 
  15064.  
  15065.      class lyris_Country 
  15066.  
  15067.      For determining what countries exist, and what languages are spoken & 
  15068.      preferred in each country 
  15069.  
  15070.      Defined in: COUNTRY.H 
  15071.  
  15072.   Create a new country 
  15073.  
  15074.       bool createNew() 
  15075.  
  15076.      Creates a new country/language table row.  LCP: CountryCreate 
  15077.      bool updateDatabase() 
  15078.  
  15079.      Save the current country with the data members that have changed.  LCP: 
  15080.      CountryUpdate 
  15081.      bool VerifyFields() 
  15082.  
  15083.      Verify that all required fields are filled in. 
  15084.  
  15085.   Retrieve data from the database 
  15086.      bool fetchAllCountries(vecString &AllCountries) 
  15087.  
  15088.      Fetch a list of all countries.  LCP: CountryAll 
  15089.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15090.  
  15091.      Fetch a paired list of countries and their native language descriptions, 
  15092.      sorted by english description.  LCP: CountryEngNat 
  15093.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15094.  
  15095.      Fetch a paired list of native language country descriptions, and the 
  15096.      english name of the country. 
  15097.      bool retrieveFromNetCode() 
  15098.  
  15099.      Determine the country that uses the currently set NetCode.  Fills all the 
  15100.      other country attributes with values. LCP: CountryAttNetCode 
  15101.      bool retrieveFromDesc() 
  15102.  
  15103.      Determine the country that uses the currently set description.  Fills all 
  15104.      the other country attributes with values.  LCP: CountryAttribs 
  15105.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15106.  
  15107.      Determine the primary language of the current country.  "Desc" must be 
  15108.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15109.      CountryPrimLang 
  15110.      bool getAllLanguages(vecString &Languages) 
  15111.  
  15112.      Determine all the languages used by the current country.  "Desc" must be 
  15113.      already set.  The result is returned in priority order (highest priority 
  15114.      first) in vecString &Languages.  LCP: CountryLanguages 
  15115.      bool getLanguageList(vecString &Languages) 
  15116.  
  15117.      Get a list of all possible languages, in alphabetical order, returned in 
  15118.      vecString &Languages.  LCP: CountryLangList 
  15119.      bool getLanguageListEngNat(mapString &Languages) 
  15120.  
  15121.      Get a map of all possible languages, their native description in 
  15122.      alphabetical order by english description, returned in in vecString 
  15123.      &Languages.  LCP: CountryLangListEngNat 
  15124.  
  15125.   Delete a country 
  15126.      bool deleteFromDesc() 
  15127.  
  15128.      Delete the country that uses the currently set description.  LCP: 
  15129.      CountryDelete 
  15130.  
  15131.   Set data members 
  15132.      bool setAll(mapString &FieldValues) 
  15133.  
  15134.      Sets all the data members of a topic using the mapString which is passed 
  15135.      to it.  Only the fields present in the mapString are updated, the other 
  15136.      fields are untouched.  LCP: CountryUpdate 
  15137.      bool setDesc(const string &DescSetting) 
  15138.  
  15139.      Set the short description 
  15140.      bool setDescLong(const string &DescLongSetting) 
  15141.  
  15142.      Set the long description 
  15143.      bool setDescNative(const string &DescNativeSetting) 
  15144.  
  15145.      Set the native language description 
  15146.      bool setNetCode(const string &NetCodeSetting) 
  15147.  
  15148.      Set the internet code for this country 
  15149.      bool erase() 
  15150.  
  15151.      Sets all the data members to empty 
  15152.  
  15153.   Get data members 
  15154.      bool getAll(mapString &FieldValues) 
  15155.  
  15156.      Return a mapString of all the data members of this topic. The key is the 
  15157.      variable name.  LCP: CountryAttribs 
  15158.      string getDesc() 
  15159.  
  15160.      Get the short description 
  15161.      string getDescLong() 
  15162.  
  15163.      Get the long description 
  15164.      string getDescNative() 
  15165.  
  15166.      Get the native language description 
  15167.      string getNetCode() 
  15168.  
  15169.      Get the internet code for this country 
  15170.  
  15171.  
  15172. ΓòÉΓòÉΓòÉ <hidden> ╨ò ΓòÉΓòÉΓòÉ
  15173.  
  15174.  
  15175. lyris_Country Class 
  15176.  
  15177.      class lyris_Country 
  15178.  
  15179.      For determining what countries exist, and what languages are spoken & 
  15180.      preferred in each country 
  15181.  
  15182.      Defined in: COUNTRY.H 
  15183.  
  15184.   Create a new country 
  15185.  
  15186.       bool createNew() 
  15187.  
  15188.      Creates a new country/language table row.  LCP: CountryCreate 
  15189.      bool updateDatabase() 
  15190.  
  15191.      Save the current country with the data members that have changed.  LCP: 
  15192.      CountryUpdate 
  15193.      bool VerifyFields() 
  15194.  
  15195.      Verify that all required fields are filled in. 
  15196.  
  15197.   Retrieve data from the database 
  15198.      bool fetchAllCountries(vecString &AllCountries) 
  15199.  
  15200.      Fetch a list of all countries.  LCP: CountryAll 
  15201.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15202.  
  15203.      Fetch a paired list of countries and their native language descriptions, 
  15204.      sorted by english description.  LCP: CountryEngNat 
  15205.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15206.  
  15207.      Fetch a paired list of native language country descriptions, and the 
  15208.      english name of the country. 
  15209.      bool retrieveFromNetCode() 
  15210.  
  15211.      Determine the country that uses the currently set NetCode.  Fills all the 
  15212.      other country attributes with values. LCP: CountryAttNetCode 
  15213.      bool retrieveFromDesc() 
  15214.  
  15215.      Determine the country that uses the currently set description.  Fills all 
  15216.      the other country attributes with values.  LCP: CountryAttribs 
  15217.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15218.  
  15219.      Determine the primary language of the current country.  "Desc" must be 
  15220.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15221.      CountryPrimLang 
  15222.      bool getAllLanguages(vecString &Languages) 
  15223.  
  15224.      Determine all the languages used by the current country.  "Desc" must be 
  15225.      already set.  The result is returned in priority order (highest priority 
  15226.      first) in vecString &Languages.  LCP: CountryLanguages 
  15227.      bool getLanguageList(vecString &Languages) 
  15228.  
  15229.      Get a list of all possible languages, in alphabetical order, returned in 
  15230.      vecString &Languages.  LCP: CountryLangList 
  15231.      bool getLanguageListEngNat(mapString &Languages) 
  15232.  
  15233.      Get a map of all possible languages, their native description in 
  15234.      alphabetical order by english description, returned in in vecString 
  15235.      &Languages.  LCP: CountryLangListEngNat 
  15236.  
  15237.   Delete a country 
  15238.      bool deleteFromDesc() 
  15239.  
  15240.      Delete the country that uses the currently set description.  LCP: 
  15241.      CountryDelete 
  15242.  
  15243.   Set data members 
  15244.      bool setAll(mapString &FieldValues) 
  15245.  
  15246.      Sets all the data members of a topic using the mapString which is passed 
  15247.      to it.  Only the fields present in the mapString are updated, the other 
  15248.      fields are untouched.  LCP: CountryUpdate 
  15249.      bool setDesc(const string &DescSetting) 
  15250.  
  15251.      Set the short description 
  15252.      bool setDescLong(const string &DescLongSetting) 
  15253.  
  15254.      Set the long description 
  15255.      bool setDescNative(const string &DescNativeSetting) 
  15256.  
  15257.      Set the native language description 
  15258.      bool setNetCode(const string &NetCodeSetting) 
  15259.  
  15260.      Set the internet code for this country 
  15261.      bool erase() 
  15262.  
  15263.      Sets all the data members to empty 
  15264.  
  15265.   Get data members 
  15266.      bool getAll(mapString &FieldValues) 
  15267.  
  15268.      Return a mapString of all the data members of this topic. The key is the 
  15269.      variable name.  LCP: CountryAttribs 
  15270.      string getDesc() 
  15271.  
  15272.      Get the short description 
  15273.      string getDescLong() 
  15274.  
  15275.      Get the long description 
  15276.      string getDescNative() 
  15277.  
  15278.      Get the native language description 
  15279.      string getNetCode() 
  15280.  
  15281.      Get the internet code for this country 
  15282.  
  15283.  
  15284. ΓòÉΓòÉΓòÉ <hidden> ╨û ΓòÉΓòÉΓòÉ
  15285.  
  15286.  
  15287. lyris_Country Class 
  15288.  
  15289.      class lyris_Country 
  15290.  
  15291.      For determining what countries exist, and what languages are spoken & 
  15292.      preferred in each country 
  15293.  
  15294.      Defined in: COUNTRY.H 
  15295.  
  15296.   Create a new country 
  15297.  
  15298.       bool createNew() 
  15299.  
  15300.      Creates a new country/language table row.  LCP: CountryCreate 
  15301.      bool updateDatabase() 
  15302.  
  15303.      Save the current country with the data members that have changed.  LCP: 
  15304.      CountryUpdate 
  15305.      bool VerifyFields() 
  15306.  
  15307.      Verify that all required fields are filled in. 
  15308.  
  15309.   Retrieve data from the database 
  15310.      bool fetchAllCountries(vecString &AllCountries) 
  15311.  
  15312.      Fetch a list of all countries.  LCP: CountryAll 
  15313.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15314.  
  15315.      Fetch a paired list of countries and their native language descriptions, 
  15316.      sorted by english description.  LCP: CountryEngNat 
  15317.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15318.  
  15319.      Fetch a paired list of native language country descriptions, and the 
  15320.      english name of the country. 
  15321.      bool retrieveFromNetCode() 
  15322.  
  15323.      Determine the country that uses the currently set NetCode.  Fills all the 
  15324.      other country attributes with values. LCP: CountryAttNetCode 
  15325.      bool retrieveFromDesc() 
  15326.  
  15327.      Determine the country that uses the currently set description.  Fills all 
  15328.      the other country attributes with values.  LCP: CountryAttribs 
  15329.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15330.  
  15331.      Determine the primary language of the current country.  "Desc" must be 
  15332.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15333.      CountryPrimLang 
  15334.      bool getAllLanguages(vecString &Languages) 
  15335.  
  15336.      Determine all the languages used by the current country.  "Desc" must be 
  15337.      already set.  The result is returned in priority order (highest priority 
  15338.      first) in vecString &Languages.  LCP: CountryLanguages 
  15339.      bool getLanguageList(vecString &Languages) 
  15340.  
  15341.      Get a list of all possible languages, in alphabetical order, returned in 
  15342.      vecString &Languages.  LCP: CountryLangList 
  15343.      bool getLanguageListEngNat(mapString &Languages) 
  15344.  
  15345.      Get a map of all possible languages, their native description in 
  15346.      alphabetical order by english description, returned in in vecString 
  15347.      &Languages.  LCP: CountryLangListEngNat 
  15348.  
  15349.   Delete a country 
  15350.      bool deleteFromDesc() 
  15351.  
  15352.      Delete the country that uses the currently set description.  LCP: 
  15353.      CountryDelete 
  15354.  
  15355.   Set data members 
  15356.      bool setAll(mapString &FieldValues) 
  15357.  
  15358.      Sets all the data members of a topic using the mapString which is passed 
  15359.      to it.  Only the fields present in the mapString are updated, the other 
  15360.      fields are untouched.  LCP: CountryUpdate 
  15361.      bool setDesc(const string &DescSetting) 
  15362.  
  15363.      Set the short description 
  15364.      bool setDescLong(const string &DescLongSetting) 
  15365.  
  15366.      Set the long description 
  15367.      bool setDescNative(const string &DescNativeSetting) 
  15368.  
  15369.      Set the native language description 
  15370.      bool setNetCode(const string &NetCodeSetting) 
  15371.  
  15372.      Set the internet code for this country 
  15373.      bool erase() 
  15374.  
  15375.      Sets all the data members to empty 
  15376.  
  15377.   Get data members 
  15378.      bool getAll(mapString &FieldValues) 
  15379.  
  15380.      Return a mapString of all the data members of this topic. The key is the 
  15381.      variable name.  LCP: CountryAttribs 
  15382.      string getDesc() 
  15383.  
  15384.      Get the short description 
  15385.      string getDescLong() 
  15386.  
  15387.      Get the long description 
  15388.      string getDescNative() 
  15389.  
  15390.      Get the native language description 
  15391.      string getNetCode() 
  15392.  
  15393.      Get the internet code for this country 
  15394.  
  15395.  
  15396. ΓòÉΓòÉΓòÉ <hidden> ╨ù ΓòÉΓòÉΓòÉ
  15397.  
  15398.  
  15399. lyris_Country Class 
  15400.  
  15401.      class lyris_Country 
  15402.  
  15403.      For determining what countries exist, and what languages are spoken & 
  15404.      preferred in each country 
  15405.  
  15406.      Defined in: COUNTRY.H 
  15407.  
  15408.   Create a new country 
  15409.  
  15410.       bool createNew() 
  15411.  
  15412.      Creates a new country/language table row.  LCP: CountryCreate 
  15413.      bool updateDatabase() 
  15414.  
  15415.      Save the current country with the data members that have changed.  LCP: 
  15416.      CountryUpdate 
  15417.      bool VerifyFields() 
  15418.  
  15419.      Verify that all required fields are filled in. 
  15420.  
  15421.   Retrieve data from the database 
  15422.      bool fetchAllCountries(vecString &AllCountries) 
  15423.  
  15424.      Fetch a list of all countries.  LCP: CountryAll 
  15425.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15426.  
  15427.      Fetch a paired list of countries and their native language descriptions, 
  15428.      sorted by english description.  LCP: CountryEngNat 
  15429.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15430.  
  15431.      Fetch a paired list of native language country descriptions, and the 
  15432.      english name of the country. 
  15433.      bool retrieveFromNetCode() 
  15434.  
  15435.      Determine the country that uses the currently set NetCode.  Fills all the 
  15436.      other country attributes with values. LCP: CountryAttNetCode 
  15437.      bool retrieveFromDesc() 
  15438.  
  15439.      Determine the country that uses the currently set description.  Fills all 
  15440.      the other country attributes with values.  LCP: CountryAttribs 
  15441.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15442.  
  15443.      Determine the primary language of the current country.  "Desc" must be 
  15444.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15445.      CountryPrimLang 
  15446.      bool getAllLanguages(vecString &Languages) 
  15447.  
  15448.      Determine all the languages used by the current country.  "Desc" must be 
  15449.      already set.  The result is returned in priority order (highest priority 
  15450.      first) in vecString &Languages.  LCP: CountryLanguages 
  15451.      bool getLanguageList(vecString &Languages) 
  15452.  
  15453.      Get a list of all possible languages, in alphabetical order, returned in 
  15454.      vecString &Languages.  LCP: CountryLangList 
  15455.      bool getLanguageListEngNat(mapString &Languages) 
  15456.  
  15457.      Get a map of all possible languages, their native description in 
  15458.      alphabetical order by english description, returned in in vecString 
  15459.      &Languages.  LCP: CountryLangListEngNat 
  15460.  
  15461.   Delete a country 
  15462.      bool deleteFromDesc() 
  15463.  
  15464.      Delete the country that uses the currently set description.  LCP: 
  15465.      CountryDelete 
  15466.  
  15467.   Set data members 
  15468.      bool setAll(mapString &FieldValues) 
  15469.  
  15470.      Sets all the data members of a topic using the mapString which is passed 
  15471.      to it.  Only the fields present in the mapString are updated, the other 
  15472.      fields are untouched.  LCP: CountryUpdate 
  15473.      bool setDesc(const string &DescSetting) 
  15474.  
  15475.      Set the short description 
  15476.      bool setDescLong(const string &DescLongSetting) 
  15477.  
  15478.      Set the long description 
  15479.      bool setDescNative(const string &DescNativeSetting) 
  15480.  
  15481.      Set the native language description 
  15482.      bool setNetCode(const string &NetCodeSetting) 
  15483.  
  15484.      Set the internet code for this country 
  15485.      bool erase() 
  15486.  
  15487.      Sets all the data members to empty 
  15488.  
  15489.   Get data members 
  15490.      bool getAll(mapString &FieldValues) 
  15491.  
  15492.      Return a mapString of all the data members of this topic. The key is the 
  15493.      variable name.  LCP: CountryAttribs 
  15494.      string getDesc() 
  15495.  
  15496.      Get the short description 
  15497.      string getDescLong() 
  15498.  
  15499.      Get the long description 
  15500.      string getDescNative() 
  15501.  
  15502.      Get the native language description 
  15503.      string getNetCode() 
  15504.  
  15505.      Get the internet code for this country 
  15506.  
  15507.  
  15508. ΓòÉΓòÉΓòÉ <hidden> ╨ÿ ΓòÉΓòÉΓòÉ
  15509.  
  15510.  
  15511. lyris_Country Class 
  15512.  
  15513.      class lyris_Country 
  15514.  
  15515.      For determining what countries exist, and what languages are spoken & 
  15516.      preferred in each country 
  15517.  
  15518.      Defined in: COUNTRY.H 
  15519.  
  15520.   Create a new country 
  15521.  
  15522.       bool createNew() 
  15523.  
  15524.      Creates a new country/language table row.  LCP: CountryCreate 
  15525.      bool updateDatabase() 
  15526.  
  15527.      Save the current country with the data members that have changed.  LCP: 
  15528.      CountryUpdate 
  15529.      bool VerifyFields() 
  15530.  
  15531.      Verify that all required fields are filled in. 
  15532.  
  15533.   Retrieve data from the database 
  15534.      bool fetchAllCountries(vecString &AllCountries) 
  15535.  
  15536.      Fetch a list of all countries.  LCP: CountryAll 
  15537.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15538.  
  15539.      Fetch a paired list of countries and their native language descriptions, 
  15540.      sorted by english description.  LCP: CountryEngNat 
  15541.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15542.  
  15543.      Fetch a paired list of native language country descriptions, and the 
  15544.      english name of the country. 
  15545.      bool retrieveFromNetCode() 
  15546.  
  15547.      Determine the country that uses the currently set NetCode.  Fills all the 
  15548.      other country attributes with values. LCP: CountryAttNetCode 
  15549.      bool retrieveFromDesc() 
  15550.  
  15551.      Determine the country that uses the currently set description.  Fills all 
  15552.      the other country attributes with values.  LCP: CountryAttribs 
  15553.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15554.  
  15555.      Determine the primary language of the current country.  "Desc" must be 
  15556.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15557.      CountryPrimLang 
  15558.      bool getAllLanguages(vecString &Languages) 
  15559.  
  15560.      Determine all the languages used by the current country.  "Desc" must be 
  15561.      already set.  The result is returned in priority order (highest priority 
  15562.      first) in vecString &Languages.  LCP: CountryLanguages 
  15563.      bool getLanguageList(vecString &Languages) 
  15564.  
  15565.      Get a list of all possible languages, in alphabetical order, returned in 
  15566.      vecString &Languages.  LCP: CountryLangList 
  15567.      bool getLanguageListEngNat(mapString &Languages) 
  15568.  
  15569.      Get a map of all possible languages, their native description in 
  15570.      alphabetical order by english description, returned in in vecString 
  15571.      &Languages.  LCP: CountryLangListEngNat 
  15572.  
  15573.   Delete a country 
  15574.      bool deleteFromDesc() 
  15575.  
  15576.      Delete the country that uses the currently set description.  LCP: 
  15577.      CountryDelete 
  15578.  
  15579.   Set data members 
  15580.      bool setAll(mapString &FieldValues) 
  15581.  
  15582.      Sets all the data members of a topic using the mapString which is passed 
  15583.      to it.  Only the fields present in the mapString are updated, the other 
  15584.      fields are untouched.  LCP: CountryUpdate 
  15585.      bool setDesc(const string &DescSetting) 
  15586.  
  15587.      Set the short description 
  15588.      bool setDescLong(const string &DescLongSetting) 
  15589.  
  15590.      Set the long description 
  15591.      bool setDescNative(const string &DescNativeSetting) 
  15592.  
  15593.      Set the native language description 
  15594.      bool setNetCode(const string &NetCodeSetting) 
  15595.  
  15596.      Set the internet code for this country 
  15597.      bool erase() 
  15598.  
  15599.      Sets all the data members to empty 
  15600.  
  15601.   Get data members 
  15602.      bool getAll(mapString &FieldValues) 
  15603.  
  15604.      Return a mapString of all the data members of this topic. The key is the 
  15605.      variable name.  LCP: CountryAttribs 
  15606.      string getDesc() 
  15607.  
  15608.      Get the short description 
  15609.      string getDescLong() 
  15610.  
  15611.      Get the long description 
  15612.      string getDescNative() 
  15613.  
  15614.      Get the native language description 
  15615.      string getNetCode() 
  15616.  
  15617.      Get the internet code for this country 
  15618.  
  15619.  
  15620. ΓòÉΓòÉΓòÉ <hidden> ╨Ö ΓòÉΓòÉΓòÉ
  15621.  
  15622.  
  15623. lyris_Country Class 
  15624.  
  15625.      class lyris_Country 
  15626.  
  15627.      For determining what countries exist, and what languages are spoken & 
  15628.      preferred in each country 
  15629.  
  15630.      Defined in: COUNTRY.H 
  15631.  
  15632.   Create a new country 
  15633.  
  15634.       bool createNew() 
  15635.  
  15636.      Creates a new country/language table row.  LCP: CountryCreate 
  15637.      bool updateDatabase() 
  15638.  
  15639.      Save the current country with the data members that have changed.  LCP: 
  15640.      CountryUpdate 
  15641.      bool VerifyFields() 
  15642.  
  15643.      Verify that all required fields are filled in. 
  15644.  
  15645.   Retrieve data from the database 
  15646.      bool fetchAllCountries(vecString &AllCountries) 
  15647.  
  15648.      Fetch a list of all countries.  LCP: CountryAll 
  15649.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15650.  
  15651.      Fetch a paired list of countries and their native language descriptions, 
  15652.      sorted by english description.  LCP: CountryEngNat 
  15653.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15654.  
  15655.      Fetch a paired list of native language country descriptions, and the 
  15656.      english name of the country. 
  15657.      bool retrieveFromNetCode() 
  15658.  
  15659.      Determine the country that uses the currently set NetCode.  Fills all the 
  15660.      other country attributes with values. LCP: CountryAttNetCode 
  15661.      bool retrieveFromDesc() 
  15662.  
  15663.      Determine the country that uses the currently set description.  Fills all 
  15664.      the other country attributes with values.  LCP: CountryAttribs 
  15665.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15666.  
  15667.      Determine the primary language of the current country.  "Desc" must be 
  15668.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15669.      CountryPrimLang 
  15670.      bool getAllLanguages(vecString &Languages) 
  15671.  
  15672.      Determine all the languages used by the current country.  "Desc" must be 
  15673.      already set.  The result is returned in priority order (highest priority 
  15674.      first) in vecString &Languages.  LCP: CountryLanguages 
  15675.      bool getLanguageList(vecString &Languages) 
  15676.  
  15677.      Get a list of all possible languages, in alphabetical order, returned in 
  15678.      vecString &Languages.  LCP: CountryLangList 
  15679.      bool getLanguageListEngNat(mapString &Languages) 
  15680.  
  15681.      Get a map of all possible languages, their native description in 
  15682.      alphabetical order by english description, returned in in vecString 
  15683.      &Languages.  LCP: CountryLangListEngNat 
  15684.  
  15685.   Delete a country 
  15686.      bool deleteFromDesc() 
  15687.  
  15688.      Delete the country that uses the currently set description.  LCP: 
  15689.      CountryDelete 
  15690.  
  15691.   Set data members 
  15692.      bool setAll(mapString &FieldValues) 
  15693.  
  15694.      Sets all the data members of a topic using the mapString which is passed 
  15695.      to it.  Only the fields present in the mapString are updated, the other 
  15696.      fields are untouched.  LCP: CountryUpdate 
  15697.      bool setDesc(const string &DescSetting) 
  15698.  
  15699.      Set the short description 
  15700.      bool setDescLong(const string &DescLongSetting) 
  15701.  
  15702.      Set the long description 
  15703.      bool setDescNative(const string &DescNativeSetting) 
  15704.  
  15705.      Set the native language description 
  15706.      bool setNetCode(const string &NetCodeSetting) 
  15707.  
  15708.      Set the internet code for this country 
  15709.      bool erase() 
  15710.  
  15711.      Sets all the data members to empty 
  15712.  
  15713.   Get data members 
  15714.      bool getAll(mapString &FieldValues) 
  15715.  
  15716.      Return a mapString of all the data members of this topic. The key is the 
  15717.      variable name.  LCP: CountryAttribs 
  15718.      string getDesc() 
  15719.  
  15720.      Get the short description 
  15721.      string getDescLong() 
  15722.  
  15723.      Get the long description 
  15724.      string getDescNative() 
  15725.  
  15726.      Get the native language description 
  15727.      string getNetCode() 
  15728.  
  15729.      Get the internet code for this country 
  15730.  
  15731.  
  15732. ΓòÉΓòÉΓòÉ <hidden> ╨Ü ΓòÉΓòÉΓòÉ
  15733.  
  15734.  
  15735. lyris_Country Class 
  15736.  
  15737.      class lyris_Country 
  15738.  
  15739.      For determining what countries exist, and what languages are spoken & 
  15740.      preferred in each country 
  15741.  
  15742.      Defined in: COUNTRY.H 
  15743.  
  15744.   Create a new country 
  15745.  
  15746.       bool createNew() 
  15747.  
  15748.      Creates a new country/language table row.  LCP: CountryCreate 
  15749.      bool updateDatabase() 
  15750.  
  15751.      Save the current country with the data members that have changed.  LCP: 
  15752.      CountryUpdate 
  15753.      bool VerifyFields() 
  15754.  
  15755.      Verify that all required fields are filled in. 
  15756.  
  15757.   Retrieve data from the database 
  15758.      bool fetchAllCountries(vecString &AllCountries) 
  15759.  
  15760.      Fetch a list of all countries.  LCP: CountryAll 
  15761.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15762.  
  15763.      Fetch a paired list of countries and their native language descriptions, 
  15764.      sorted by english description.  LCP: CountryEngNat 
  15765.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15766.  
  15767.      Fetch a paired list of native language country descriptions, and the 
  15768.      english name of the country. 
  15769.      bool retrieveFromNetCode() 
  15770.  
  15771.      Determine the country that uses the currently set NetCode.  Fills all the 
  15772.      other country attributes with values. LCP: CountryAttNetCode 
  15773.      bool retrieveFromDesc() 
  15774.  
  15775.      Determine the country that uses the currently set description.  Fills all 
  15776.      the other country attributes with values.  LCP: CountryAttribs 
  15777.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15778.  
  15779.      Determine the primary language of the current country.  "Desc" must be 
  15780.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15781.      CountryPrimLang 
  15782.      bool getAllLanguages(vecString &Languages) 
  15783.  
  15784.      Determine all the languages used by the current country.  "Desc" must be 
  15785.      already set.  The result is returned in priority order (highest priority 
  15786.      first) in vecString &Languages.  LCP: CountryLanguages 
  15787.      bool getLanguageList(vecString &Languages) 
  15788.  
  15789.      Get a list of all possible languages, in alphabetical order, returned in 
  15790.      vecString &Languages.  LCP: CountryLangList 
  15791.      bool getLanguageListEngNat(mapString &Languages) 
  15792.  
  15793.      Get a map of all possible languages, their native description in 
  15794.      alphabetical order by english description, returned in in vecString 
  15795.      &Languages.  LCP: CountryLangListEngNat 
  15796.  
  15797.   Delete a country 
  15798.      bool deleteFromDesc() 
  15799.  
  15800.      Delete the country that uses the currently set description.  LCP: 
  15801.      CountryDelete 
  15802.  
  15803.   Set data members 
  15804.      bool setAll(mapString &FieldValues) 
  15805.  
  15806.      Sets all the data members of a topic using the mapString which is passed 
  15807.      to it.  Only the fields present in the mapString are updated, the other 
  15808.      fields are untouched.  LCP: CountryUpdate 
  15809.      bool setDesc(const string &DescSetting) 
  15810.  
  15811.      Set the short description 
  15812.      bool setDescLong(const string &DescLongSetting) 
  15813.  
  15814.      Set the long description 
  15815.      bool setDescNative(const string &DescNativeSetting) 
  15816.  
  15817.      Set the native language description 
  15818.      bool setNetCode(const string &NetCodeSetting) 
  15819.  
  15820.      Set the internet code for this country 
  15821.      bool erase() 
  15822.  
  15823.      Sets all the data members to empty 
  15824.  
  15825.   Get data members 
  15826.      bool getAll(mapString &FieldValues) 
  15827.  
  15828.      Return a mapString of all the data members of this topic. The key is the 
  15829.      variable name.  LCP: CountryAttribs 
  15830.      string getDesc() 
  15831.  
  15832.      Get the short description 
  15833.      string getDescLong() 
  15834.  
  15835.      Get the long description 
  15836.      string getDescNative() 
  15837.  
  15838.      Get the native language description 
  15839.      string getNetCode() 
  15840.  
  15841.      Get the internet code for this country 
  15842.  
  15843.  
  15844. ΓòÉΓòÉΓòÉ <hidden> ╨¢ ΓòÉΓòÉΓòÉ
  15845.  
  15846.  
  15847. lyris_Country Class 
  15848.  
  15849.      class lyris_Country 
  15850.  
  15851.      For determining what countries exist, and what languages are spoken & 
  15852.      preferred in each country 
  15853.  
  15854.      Defined in: COUNTRY.H 
  15855.  
  15856.   Create a new country 
  15857.  
  15858.       bool createNew() 
  15859.  
  15860.      Creates a new country/language table row.  LCP: CountryCreate 
  15861.      bool updateDatabase() 
  15862.  
  15863.      Save the current country with the data members that have changed.  LCP: 
  15864.      CountryUpdate 
  15865.      bool VerifyFields() 
  15866.  
  15867.      Verify that all required fields are filled in. 
  15868.  
  15869.   Retrieve data from the database 
  15870.      bool fetchAllCountries(vecString &AllCountries) 
  15871.  
  15872.      Fetch a list of all countries.  LCP: CountryAll 
  15873.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15874.  
  15875.      Fetch a paired list of countries and their native language descriptions, 
  15876.      sorted by english description.  LCP: CountryEngNat 
  15877.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15878.  
  15879.      Fetch a paired list of native language country descriptions, and the 
  15880.      english name of the country. 
  15881.      bool retrieveFromNetCode() 
  15882.  
  15883.      Determine the country that uses the currently set NetCode.  Fills all the 
  15884.      other country attributes with values. LCP: CountryAttNetCode 
  15885.      bool retrieveFromDesc() 
  15886.  
  15887.      Determine the country that uses the currently set description.  Fills all 
  15888.      the other country attributes with values.  LCP: CountryAttribs 
  15889.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  15890.  
  15891.      Determine the primary language of the current country.  "Desc" must be 
  15892.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  15893.      CountryPrimLang 
  15894.      bool getAllLanguages(vecString &Languages) 
  15895.  
  15896.      Determine all the languages used by the current country.  "Desc" must be 
  15897.      already set.  The result is returned in priority order (highest priority 
  15898.      first) in vecString &Languages.  LCP: CountryLanguages 
  15899.      bool getLanguageList(vecString &Languages) 
  15900.  
  15901.      Get a list of all possible languages, in alphabetical order, returned in 
  15902.      vecString &Languages.  LCP: CountryLangList 
  15903.      bool getLanguageListEngNat(mapString &Languages) 
  15904.  
  15905.      Get a map of all possible languages, their native description in 
  15906.      alphabetical order by english description, returned in in vecString 
  15907.      &Languages.  LCP: CountryLangListEngNat 
  15908.  
  15909.   Delete a country 
  15910.      bool deleteFromDesc() 
  15911.  
  15912.      Delete the country that uses the currently set description.  LCP: 
  15913.      CountryDelete 
  15914.  
  15915.   Set data members 
  15916.      bool setAll(mapString &FieldValues) 
  15917.  
  15918.      Sets all the data members of a topic using the mapString which is passed 
  15919.      to it.  Only the fields present in the mapString are updated, the other 
  15920.      fields are untouched.  LCP: CountryUpdate 
  15921.      bool setDesc(const string &DescSetting) 
  15922.  
  15923.      Set the short description 
  15924.      bool setDescLong(const string &DescLongSetting) 
  15925.  
  15926.      Set the long description 
  15927.      bool setDescNative(const string &DescNativeSetting) 
  15928.  
  15929.      Set the native language description 
  15930.      bool setNetCode(const string &NetCodeSetting) 
  15931.  
  15932.      Set the internet code for this country 
  15933.      bool erase() 
  15934.  
  15935.      Sets all the data members to empty 
  15936.  
  15937.   Get data members 
  15938.      bool getAll(mapString &FieldValues) 
  15939.  
  15940.      Return a mapString of all the data members of this topic. The key is the 
  15941.      variable name.  LCP: CountryAttribs 
  15942.      string getDesc() 
  15943.  
  15944.      Get the short description 
  15945.      string getDescLong() 
  15946.  
  15947.      Get the long description 
  15948.      string getDescNative() 
  15949.  
  15950.      Get the native language description 
  15951.      string getNetCode() 
  15952.  
  15953.      Get the internet code for this country 
  15954.  
  15955.  
  15956. ΓòÉΓòÉΓòÉ <hidden> ╨£ ΓòÉΓòÉΓòÉ
  15957.  
  15958.  
  15959. lyris_Country Class 
  15960.  
  15961.      class lyris_Country 
  15962.  
  15963.      For determining what countries exist, and what languages are spoken & 
  15964.      preferred in each country 
  15965.  
  15966.      Defined in: COUNTRY.H 
  15967.  
  15968.   Create a new country 
  15969.  
  15970.       bool createNew() 
  15971.  
  15972.      Creates a new country/language table row.  LCP: CountryCreate 
  15973.      bool updateDatabase() 
  15974.  
  15975.      Save the current country with the data members that have changed.  LCP: 
  15976.      CountryUpdate 
  15977.      bool VerifyFields() 
  15978.  
  15979.      Verify that all required fields are filled in. 
  15980.  
  15981.   Retrieve data from the database 
  15982.      bool fetchAllCountries(vecString &AllCountries) 
  15983.  
  15984.      Fetch a list of all countries.  LCP: CountryAll 
  15985.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  15986.  
  15987.      Fetch a paired list of countries and their native language descriptions, 
  15988.      sorted by english description.  LCP: CountryEngNat 
  15989.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  15990.  
  15991.      Fetch a paired list of native language country descriptions, and the 
  15992.      english name of the country. 
  15993.      bool retrieveFromNetCode() 
  15994.  
  15995.      Determine the country that uses the currently set NetCode.  Fills all the 
  15996.      other country attributes with values. LCP: CountryAttNetCode 
  15997.      bool retrieveFromDesc() 
  15998.  
  15999.      Determine the country that uses the currently set description.  Fills all 
  16000.      the other country attributes with values.  LCP: CountryAttribs 
  16001.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16002.  
  16003.      Determine the primary language of the current country.  "Desc" must be 
  16004.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16005.      CountryPrimLang 
  16006.      bool getAllLanguages(vecString &Languages) 
  16007.  
  16008.      Determine all the languages used by the current country.  "Desc" must be 
  16009.      already set.  The result is returned in priority order (highest priority 
  16010.      first) in vecString &Languages.  LCP: CountryLanguages 
  16011.      bool getLanguageList(vecString &Languages) 
  16012.  
  16013.      Get a list of all possible languages, in alphabetical order, returned in 
  16014.      vecString &Languages.  LCP: CountryLangList 
  16015.      bool getLanguageListEngNat(mapString &Languages) 
  16016.  
  16017.      Get a map of all possible languages, their native description in 
  16018.      alphabetical order by english description, returned in in vecString 
  16019.      &Languages.  LCP: CountryLangListEngNat 
  16020.  
  16021.   Delete a country 
  16022.      bool deleteFromDesc() 
  16023.  
  16024.      Delete the country that uses the currently set description.  LCP: 
  16025.      CountryDelete 
  16026.  
  16027.   Set data members 
  16028.      bool setAll(mapString &FieldValues) 
  16029.  
  16030.      Sets all the data members of a topic using the mapString which is passed 
  16031.      to it.  Only the fields present in the mapString are updated, the other 
  16032.      fields are untouched.  LCP: CountryUpdate 
  16033.      bool setDesc(const string &DescSetting) 
  16034.  
  16035.      Set the short description 
  16036.      bool setDescLong(const string &DescLongSetting) 
  16037.  
  16038.      Set the long description 
  16039.      bool setDescNative(const string &DescNativeSetting) 
  16040.  
  16041.      Set the native language description 
  16042.      bool setNetCode(const string &NetCodeSetting) 
  16043.  
  16044.      Set the internet code for this country 
  16045.      bool erase() 
  16046.  
  16047.      Sets all the data members to empty 
  16048.  
  16049.   Get data members 
  16050.      bool getAll(mapString &FieldValues) 
  16051.  
  16052.      Return a mapString of all the data members of this topic. The key is the 
  16053.      variable name.  LCP: CountryAttribs 
  16054.      string getDesc() 
  16055.  
  16056.      Get the short description 
  16057.      string getDescLong() 
  16058.  
  16059.      Get the long description 
  16060.      string getDescNative() 
  16061.  
  16062.      Get the native language description 
  16063.      string getNetCode() 
  16064.  
  16065.      Get the internet code for this country 
  16066.  
  16067.  
  16068. ΓòÉΓòÉΓòÉ <hidden> ╨¥ ΓòÉΓòÉΓòÉ
  16069.  
  16070.  
  16071. lyris_Country Class 
  16072.  
  16073.      class lyris_Country 
  16074.  
  16075.      For determining what countries exist, and what languages are spoken & 
  16076.      preferred in each country 
  16077.  
  16078.      Defined in: COUNTRY.H 
  16079.  
  16080.   Create a new country 
  16081.  
  16082.       bool createNew() 
  16083.  
  16084.      Creates a new country/language table row.  LCP: CountryCreate 
  16085.      bool updateDatabase() 
  16086.  
  16087.      Save the current country with the data members that have changed.  LCP: 
  16088.      CountryUpdate 
  16089.      bool VerifyFields() 
  16090.  
  16091.      Verify that all required fields are filled in. 
  16092.  
  16093.   Retrieve data from the database 
  16094.      bool fetchAllCountries(vecString &AllCountries) 
  16095.  
  16096.      Fetch a list of all countries.  LCP: CountryAll 
  16097.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16098.  
  16099.      Fetch a paired list of countries and their native language descriptions, 
  16100.      sorted by english description.  LCP: CountryEngNat 
  16101.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16102.  
  16103.      Fetch a paired list of native language country descriptions, and the 
  16104.      english name of the country. 
  16105.      bool retrieveFromNetCode() 
  16106.  
  16107.      Determine the country that uses the currently set NetCode.  Fills all the 
  16108.      other country attributes with values. LCP: CountryAttNetCode 
  16109.      bool retrieveFromDesc() 
  16110.  
  16111.      Determine the country that uses the currently set description.  Fills all 
  16112.      the other country attributes with values.  LCP: CountryAttribs 
  16113.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16114.  
  16115.      Determine the primary language of the current country.  "Desc" must be 
  16116.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16117.      CountryPrimLang 
  16118.      bool getAllLanguages(vecString &Languages) 
  16119.  
  16120.      Determine all the languages used by the current country.  "Desc" must be 
  16121.      already set.  The result is returned in priority order (highest priority 
  16122.      first) in vecString &Languages.  LCP: CountryLanguages 
  16123.      bool getLanguageList(vecString &Languages) 
  16124.  
  16125.      Get a list of all possible languages, in alphabetical order, returned in 
  16126.      vecString &Languages.  LCP: CountryLangList 
  16127.      bool getLanguageListEngNat(mapString &Languages) 
  16128.  
  16129.      Get a map of all possible languages, their native description in 
  16130.      alphabetical order by english description, returned in in vecString 
  16131.      &Languages.  LCP: CountryLangListEngNat 
  16132.  
  16133.   Delete a country 
  16134.      bool deleteFromDesc() 
  16135.  
  16136.      Delete the country that uses the currently set description.  LCP: 
  16137.      CountryDelete 
  16138.  
  16139.   Set data members 
  16140.      bool setAll(mapString &FieldValues) 
  16141.  
  16142.      Sets all the data members of a topic using the mapString which is passed 
  16143.      to it.  Only the fields present in the mapString are updated, the other 
  16144.      fields are untouched.  LCP: CountryUpdate 
  16145.      bool setDesc(const string &DescSetting) 
  16146.  
  16147.      Set the short description 
  16148.      bool setDescLong(const string &DescLongSetting) 
  16149.  
  16150.      Set the long description 
  16151.      bool setDescNative(const string &DescNativeSetting) 
  16152.  
  16153.      Set the native language description 
  16154.      bool setNetCode(const string &NetCodeSetting) 
  16155.  
  16156.      Set the internet code for this country 
  16157.      bool erase() 
  16158.  
  16159.      Sets all the data members to empty 
  16160.  
  16161.   Get data members 
  16162.      bool getAll(mapString &FieldValues) 
  16163.  
  16164.      Return a mapString of all the data members of this topic. The key is the 
  16165.      variable name.  LCP: CountryAttribs 
  16166.      string getDesc() 
  16167.  
  16168.      Get the short description 
  16169.      string getDescLong() 
  16170.  
  16171.      Get the long description 
  16172.      string getDescNative() 
  16173.  
  16174.      Get the native language description 
  16175.      string getNetCode() 
  16176.  
  16177.      Get the internet code for this country 
  16178.  
  16179.  
  16180. ΓòÉΓòÉΓòÉ <hidden> ╨₧ ΓòÉΓòÉΓòÉ
  16181.  
  16182.  
  16183. lyris_Country Class 
  16184.  
  16185.      class lyris_Country 
  16186.  
  16187.      For determining what countries exist, and what languages are spoken & 
  16188.      preferred in each country 
  16189.  
  16190.      Defined in: COUNTRY.H 
  16191.  
  16192.   Create a new country 
  16193.  
  16194.       bool createNew() 
  16195.  
  16196.      Creates a new country/language table row.  LCP: CountryCreate 
  16197.      bool updateDatabase() 
  16198.  
  16199.      Save the current country with the data members that have changed.  LCP: 
  16200.      CountryUpdate 
  16201.      bool VerifyFields() 
  16202.  
  16203.      Verify that all required fields are filled in. 
  16204.  
  16205.   Retrieve data from the database 
  16206.      bool fetchAllCountries(vecString &AllCountries) 
  16207.  
  16208.      Fetch a list of all countries.  LCP: CountryAll 
  16209.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16210.  
  16211.      Fetch a paired list of countries and their native language descriptions, 
  16212.      sorted by english description.  LCP: CountryEngNat 
  16213.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16214.  
  16215.      Fetch a paired list of native language country descriptions, and the 
  16216.      english name of the country. 
  16217.      bool retrieveFromNetCode() 
  16218.  
  16219.      Determine the country that uses the currently set NetCode.  Fills all the 
  16220.      other country attributes with values. LCP: CountryAttNetCode 
  16221.      bool retrieveFromDesc() 
  16222.  
  16223.      Determine the country that uses the currently set description.  Fills all 
  16224.      the other country attributes with values.  LCP: CountryAttribs 
  16225.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16226.  
  16227.      Determine the primary language of the current country.  "Desc" must be 
  16228.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16229.      CountryPrimLang 
  16230.      bool getAllLanguages(vecString &Languages) 
  16231.  
  16232.      Determine all the languages used by the current country.  "Desc" must be 
  16233.      already set.  The result is returned in priority order (highest priority 
  16234.      first) in vecString &Languages.  LCP: CountryLanguages 
  16235.      bool getLanguageList(vecString &Languages) 
  16236.  
  16237.      Get a list of all possible languages, in alphabetical order, returned in 
  16238.      vecString &Languages.  LCP: CountryLangList 
  16239.      bool getLanguageListEngNat(mapString &Languages) 
  16240.  
  16241.      Get a map of all possible languages, their native description in 
  16242.      alphabetical order by english description, returned in in vecString 
  16243.      &Languages.  LCP: CountryLangListEngNat 
  16244.  
  16245.   Delete a country 
  16246.      bool deleteFromDesc() 
  16247.  
  16248.      Delete the country that uses the currently set description.  LCP: 
  16249.      CountryDelete 
  16250.  
  16251.   Set data members 
  16252.      bool setAll(mapString &FieldValues) 
  16253.  
  16254.      Sets all the data members of a topic using the mapString which is passed 
  16255.      to it.  Only the fields present in the mapString are updated, the other 
  16256.      fields are untouched.  LCP: CountryUpdate 
  16257.      bool setDesc(const string &DescSetting) 
  16258.  
  16259.      Set the short description 
  16260.      bool setDescLong(const string &DescLongSetting) 
  16261.  
  16262.      Set the long description 
  16263.      bool setDescNative(const string &DescNativeSetting) 
  16264.  
  16265.      Set the native language description 
  16266.      bool setNetCode(const string &NetCodeSetting) 
  16267.  
  16268.      Set the internet code for this country 
  16269.      bool erase() 
  16270.  
  16271.      Sets all the data members to empty 
  16272.  
  16273.   Get data members 
  16274.      bool getAll(mapString &FieldValues) 
  16275.  
  16276.      Return a mapString of all the data members of this topic. The key is the 
  16277.      variable name.  LCP: CountryAttribs 
  16278.      string getDesc() 
  16279.  
  16280.      Get the short description 
  16281.      string getDescLong() 
  16282.  
  16283.      Get the long description 
  16284.      string getDescNative() 
  16285.  
  16286.      Get the native language description 
  16287.      string getNetCode() 
  16288.  
  16289.      Get the internet code for this country 
  16290.  
  16291.  
  16292. ΓòÉΓòÉΓòÉ <hidden> ╨ƒ ΓòÉΓòÉΓòÉ
  16293.  
  16294.  
  16295. lyris_Country Class 
  16296.  
  16297.      class lyris_Country 
  16298.  
  16299.      For determining what countries exist, and what languages are spoken & 
  16300.      preferred in each country 
  16301.  
  16302.      Defined in: COUNTRY.H 
  16303.  
  16304.   Create a new country 
  16305.  
  16306.       bool createNew() 
  16307.  
  16308.      Creates a new country/language table row.  LCP: CountryCreate 
  16309.      bool updateDatabase() 
  16310.  
  16311.      Save the current country with the data members that have changed.  LCP: 
  16312.      CountryUpdate 
  16313.      bool VerifyFields() 
  16314.  
  16315.      Verify that all required fields are filled in. 
  16316.  
  16317.   Retrieve data from the database 
  16318.      bool fetchAllCountries(vecString &AllCountries) 
  16319.  
  16320.      Fetch a list of all countries.  LCP: CountryAll 
  16321.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16322.  
  16323.      Fetch a paired list of countries and their native language descriptions, 
  16324.      sorted by english description.  LCP: CountryEngNat 
  16325.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16326.  
  16327.      Fetch a paired list of native language country descriptions, and the 
  16328.      english name of the country. 
  16329.      bool retrieveFromNetCode() 
  16330.  
  16331.      Determine the country that uses the currently set NetCode.  Fills all the 
  16332.      other country attributes with values. LCP: CountryAttNetCode 
  16333.      bool retrieveFromDesc() 
  16334.  
  16335.      Determine the country that uses the currently set description.  Fills all 
  16336.      the other country attributes with values.  LCP: CountryAttribs 
  16337.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16338.  
  16339.      Determine the primary language of the current country.  "Desc" must be 
  16340.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16341.      CountryPrimLang 
  16342.      bool getAllLanguages(vecString &Languages) 
  16343.  
  16344.      Determine all the languages used by the current country.  "Desc" must be 
  16345.      already set.  The result is returned in priority order (highest priority 
  16346.      first) in vecString &Languages.  LCP: CountryLanguages 
  16347.      bool getLanguageList(vecString &Languages) 
  16348.  
  16349.      Get a list of all possible languages, in alphabetical order, returned in 
  16350.      vecString &Languages.  LCP: CountryLangList 
  16351.      bool getLanguageListEngNat(mapString &Languages) 
  16352.  
  16353.      Get a map of all possible languages, their native description in 
  16354.      alphabetical order by english description, returned in in vecString 
  16355.      &Languages.  LCP: CountryLangListEngNat 
  16356.  
  16357.   Delete a country 
  16358.      bool deleteFromDesc() 
  16359.  
  16360.      Delete the country that uses the currently set description.  LCP: 
  16361.      CountryDelete 
  16362.  
  16363.   Set data members 
  16364.      bool setAll(mapString &FieldValues) 
  16365.  
  16366.      Sets all the data members of a topic using the mapString which is passed 
  16367.      to it.  Only the fields present in the mapString are updated, the other 
  16368.      fields are untouched.  LCP: CountryUpdate 
  16369.      bool setDesc(const string &DescSetting) 
  16370.  
  16371.      Set the short description 
  16372.      bool setDescLong(const string &DescLongSetting) 
  16373.  
  16374.      Set the long description 
  16375.      bool setDescNative(const string &DescNativeSetting) 
  16376.  
  16377.      Set the native language description 
  16378.      bool setNetCode(const string &NetCodeSetting) 
  16379.  
  16380.      Set the internet code for this country 
  16381.      bool erase() 
  16382.  
  16383.      Sets all the data members to empty 
  16384.  
  16385.   Get data members 
  16386.      bool getAll(mapString &FieldValues) 
  16387.  
  16388.      Return a mapString of all the data members of this topic. The key is the 
  16389.      variable name.  LCP: CountryAttribs 
  16390.      string getDesc() 
  16391.  
  16392.      Get the short description 
  16393.      string getDescLong() 
  16394.  
  16395.      Get the long description 
  16396.      string getDescNative() 
  16397.  
  16398.      Get the native language description 
  16399.      string getNetCode() 
  16400.  
  16401.      Get the internet code for this country 
  16402.  
  16403.  
  16404. ΓòÉΓòÉΓòÉ <hidden> ╨á ΓòÉΓòÉΓòÉ
  16405.  
  16406.  
  16407. lyris_Country Class 
  16408.  
  16409.      class lyris_Country 
  16410.  
  16411.      For determining what countries exist, and what languages are spoken & 
  16412.      preferred in each country 
  16413.  
  16414.      Defined in: COUNTRY.H 
  16415.  
  16416.   Create a new country 
  16417.  
  16418.       bool createNew() 
  16419.  
  16420.      Creates a new country/language table row.  LCP: CountryCreate 
  16421.      bool updateDatabase() 
  16422.  
  16423.      Save the current country with the data members that have changed.  LCP: 
  16424.      CountryUpdate 
  16425.      bool VerifyFields() 
  16426.  
  16427.      Verify that all required fields are filled in. 
  16428.  
  16429.   Retrieve data from the database 
  16430.      bool fetchAllCountries(vecString &AllCountries) 
  16431.  
  16432.      Fetch a list of all countries.  LCP: CountryAll 
  16433.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16434.  
  16435.      Fetch a paired list of countries and their native language descriptions, 
  16436.      sorted by english description.  LCP: CountryEngNat 
  16437.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16438.  
  16439.      Fetch a paired list of native language country descriptions, and the 
  16440.      english name of the country. 
  16441.      bool retrieveFromNetCode() 
  16442.  
  16443.      Determine the country that uses the currently set NetCode.  Fills all the 
  16444.      other country attributes with values. LCP: CountryAttNetCode 
  16445.      bool retrieveFromDesc() 
  16446.  
  16447.      Determine the country that uses the currently set description.  Fills all 
  16448.      the other country attributes with values.  LCP: CountryAttribs 
  16449.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16450.  
  16451.      Determine the primary language of the current country.  "Desc" must be 
  16452.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16453.      CountryPrimLang 
  16454.      bool getAllLanguages(vecString &Languages) 
  16455.  
  16456.      Determine all the languages used by the current country.  "Desc" must be 
  16457.      already set.  The result is returned in priority order (highest priority 
  16458.      first) in vecString &Languages.  LCP: CountryLanguages 
  16459.      bool getLanguageList(vecString &Languages) 
  16460.  
  16461.      Get a list of all possible languages, in alphabetical order, returned in 
  16462.      vecString &Languages.  LCP: CountryLangList 
  16463.      bool getLanguageListEngNat(mapString &Languages) 
  16464.  
  16465.      Get a map of all possible languages, their native description in 
  16466.      alphabetical order by english description, returned in in vecString 
  16467.      &Languages.  LCP: CountryLangListEngNat 
  16468.  
  16469.   Delete a country 
  16470.      bool deleteFromDesc() 
  16471.  
  16472.      Delete the country that uses the currently set description.  LCP: 
  16473.      CountryDelete 
  16474.  
  16475.   Set data members 
  16476.      bool setAll(mapString &FieldValues) 
  16477.  
  16478.      Sets all the data members of a topic using the mapString which is passed 
  16479.      to it.  Only the fields present in the mapString are updated, the other 
  16480.      fields are untouched.  LCP: CountryUpdate 
  16481.      bool setDesc(const string &DescSetting) 
  16482.  
  16483.      Set the short description 
  16484.      bool setDescLong(const string &DescLongSetting) 
  16485.  
  16486.      Set the long description 
  16487.      bool setDescNative(const string &DescNativeSetting) 
  16488.  
  16489.      Set the native language description 
  16490.      bool setNetCode(const string &NetCodeSetting) 
  16491.  
  16492.      Set the internet code for this country 
  16493.      bool erase() 
  16494.  
  16495.      Sets all the data members to empty 
  16496.  
  16497.   Get data members 
  16498.      bool getAll(mapString &FieldValues) 
  16499.  
  16500.      Return a mapString of all the data members of this topic. The key is the 
  16501.      variable name.  LCP: CountryAttribs 
  16502.      string getDesc() 
  16503.  
  16504.      Get the short description 
  16505.      string getDescLong() 
  16506.  
  16507.      Get the long description 
  16508.      string getDescNative() 
  16509.  
  16510.      Get the native language description 
  16511.      string getNetCode() 
  16512.  
  16513.      Get the internet code for this country 
  16514.  
  16515.  
  16516. ΓòÉΓòÉΓòÉ <hidden> ╨í ΓòÉΓòÉΓòÉ
  16517.  
  16518.  
  16519. lyris_Country Class 
  16520.  
  16521.      class lyris_Country 
  16522.  
  16523.      For determining what countries exist, and what languages are spoken & 
  16524.      preferred in each country 
  16525.  
  16526.      Defined in: COUNTRY.H 
  16527.  
  16528.   Create a new country 
  16529.  
  16530.       bool createNew() 
  16531.  
  16532.      Creates a new country/language table row.  LCP: CountryCreate 
  16533.      bool updateDatabase() 
  16534.  
  16535.      Save the current country with the data members that have changed.  LCP: 
  16536.      CountryUpdate 
  16537.      bool VerifyFields() 
  16538.  
  16539.      Verify that all required fields are filled in. 
  16540.  
  16541.   Retrieve data from the database 
  16542.      bool fetchAllCountries(vecString &AllCountries) 
  16543.  
  16544.      Fetch a list of all countries.  LCP: CountryAll 
  16545.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16546.  
  16547.      Fetch a paired list of countries and their native language descriptions, 
  16548.      sorted by english description.  LCP: CountryEngNat 
  16549.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16550.  
  16551.      Fetch a paired list of native language country descriptions, and the 
  16552.      english name of the country. 
  16553.      bool retrieveFromNetCode() 
  16554.  
  16555.      Determine the country that uses the currently set NetCode.  Fills all the 
  16556.      other country attributes with values. LCP: CountryAttNetCode 
  16557.      bool retrieveFromDesc() 
  16558.  
  16559.      Determine the country that uses the currently set description.  Fills all 
  16560.      the other country attributes with values.  LCP: CountryAttribs 
  16561.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16562.  
  16563.      Determine the primary language of the current country.  "Desc" must be 
  16564.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16565.      CountryPrimLang 
  16566.      bool getAllLanguages(vecString &Languages) 
  16567.  
  16568.      Determine all the languages used by the current country.  "Desc" must be 
  16569.      already set.  The result is returned in priority order (highest priority 
  16570.      first) in vecString &Languages.  LCP: CountryLanguages 
  16571.      bool getLanguageList(vecString &Languages) 
  16572.  
  16573.      Get a list of all possible languages, in alphabetical order, returned in 
  16574.      vecString &Languages.  LCP: CountryLangList 
  16575.      bool getLanguageListEngNat(mapString &Languages) 
  16576.  
  16577.      Get a map of all possible languages, their native description in 
  16578.      alphabetical order by english description, returned in in vecString 
  16579.      &Languages.  LCP: CountryLangListEngNat 
  16580.  
  16581.   Delete a country 
  16582.      bool deleteFromDesc() 
  16583.  
  16584.      Delete the country that uses the currently set description.  LCP: 
  16585.      CountryDelete 
  16586.  
  16587.   Set data members 
  16588.      bool setAll(mapString &FieldValues) 
  16589.  
  16590.      Sets all the data members of a topic using the mapString which is passed 
  16591.      to it.  Only the fields present in the mapString are updated, the other 
  16592.      fields are untouched.  LCP: CountryUpdate 
  16593.      bool setDesc(const string &DescSetting) 
  16594.  
  16595.      Set the short description 
  16596.      bool setDescLong(const string &DescLongSetting) 
  16597.  
  16598.      Set the long description 
  16599.      bool setDescNative(const string &DescNativeSetting) 
  16600.  
  16601.      Set the native language description 
  16602.      bool setNetCode(const string &NetCodeSetting) 
  16603.  
  16604.      Set the internet code for this country 
  16605.      bool erase() 
  16606.  
  16607.      Sets all the data members to empty 
  16608.  
  16609.   Get data members 
  16610.      bool getAll(mapString &FieldValues) 
  16611.  
  16612.      Return a mapString of all the data members of this topic. The key is the 
  16613.      variable name.  LCP: CountryAttribs 
  16614.      string getDesc() 
  16615.  
  16616.      Get the short description 
  16617.      string getDescLong() 
  16618.  
  16619.      Get the long description 
  16620.      string getDescNative() 
  16621.  
  16622.      Get the native language description 
  16623.      string getNetCode() 
  16624.  
  16625.      Get the internet code for this country 
  16626.  
  16627.  
  16628. ΓòÉΓòÉΓòÉ <hidden> ╨ó ΓòÉΓòÉΓòÉ
  16629.  
  16630.  
  16631. lyris_Country Class 
  16632.  
  16633.      class lyris_Country 
  16634.  
  16635.      For determining what countries exist, and what languages are spoken & 
  16636.      preferred in each country 
  16637.  
  16638.      Defined in: COUNTRY.H 
  16639.  
  16640.   Create a new country 
  16641.  
  16642.       bool createNew() 
  16643.  
  16644.      Creates a new country/language table row.  LCP: CountryCreate 
  16645.      bool updateDatabase() 
  16646.  
  16647.      Save the current country with the data members that have changed.  LCP: 
  16648.      CountryUpdate 
  16649.      bool VerifyFields() 
  16650.  
  16651.      Verify that all required fields are filled in. 
  16652.  
  16653.   Retrieve data from the database 
  16654.      bool fetchAllCountries(vecString &AllCountries) 
  16655.  
  16656.      Fetch a list of all countries.  LCP: CountryAll 
  16657.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16658.  
  16659.      Fetch a paired list of countries and their native language descriptions, 
  16660.      sorted by english description.  LCP: CountryEngNat 
  16661.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16662.  
  16663.      Fetch a paired list of native language country descriptions, and the 
  16664.      english name of the country. 
  16665.      bool retrieveFromNetCode() 
  16666.  
  16667.      Determine the country that uses the currently set NetCode.  Fills all the 
  16668.      other country attributes with values. LCP: CountryAttNetCode 
  16669.      bool retrieveFromDesc() 
  16670.  
  16671.      Determine the country that uses the currently set description.  Fills all 
  16672.      the other country attributes with values.  LCP: CountryAttribs 
  16673.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16674.  
  16675.      Determine the primary language of the current country.  "Desc" must be 
  16676.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16677.      CountryPrimLang 
  16678.      bool getAllLanguages(vecString &Languages) 
  16679.  
  16680.      Determine all the languages used by the current country.  "Desc" must be 
  16681.      already set.  The result is returned in priority order (highest priority 
  16682.      first) in vecString &Languages.  LCP: CountryLanguages 
  16683.      bool getLanguageList(vecString &Languages) 
  16684.  
  16685.      Get a list of all possible languages, in alphabetical order, returned in 
  16686.      vecString &Languages.  LCP: CountryLangList 
  16687.      bool getLanguageListEngNat(mapString &Languages) 
  16688.  
  16689.      Get a map of all possible languages, their native description in 
  16690.      alphabetical order by english description, returned in in vecString 
  16691.      &Languages.  LCP: CountryLangListEngNat 
  16692.  
  16693.   Delete a country 
  16694.      bool deleteFromDesc() 
  16695.  
  16696.      Delete the country that uses the currently set description.  LCP: 
  16697.      CountryDelete 
  16698.  
  16699.   Set data members 
  16700.      bool setAll(mapString &FieldValues) 
  16701.  
  16702.      Sets all the data members of a topic using the mapString which is passed 
  16703.      to it.  Only the fields present in the mapString are updated, the other 
  16704.      fields are untouched.  LCP: CountryUpdate 
  16705.      bool setDesc(const string &DescSetting) 
  16706.  
  16707.      Set the short description 
  16708.      bool setDescLong(const string &DescLongSetting) 
  16709.  
  16710.      Set the long description 
  16711.      bool setDescNative(const string &DescNativeSetting) 
  16712.  
  16713.      Set the native language description 
  16714.      bool setNetCode(const string &NetCodeSetting) 
  16715.  
  16716.      Set the internet code for this country 
  16717.      bool erase() 
  16718.  
  16719.      Sets all the data members to empty 
  16720.  
  16721.   Get data members 
  16722.      bool getAll(mapString &FieldValues) 
  16723.  
  16724.      Return a mapString of all the data members of this topic. The key is the 
  16725.      variable name.  LCP: CountryAttribs 
  16726.      string getDesc() 
  16727.  
  16728.      Get the short description 
  16729.      string getDescLong() 
  16730.  
  16731.      Get the long description 
  16732.      string getDescNative() 
  16733.  
  16734.      Get the native language description 
  16735.      string getNetCode() 
  16736.  
  16737.      Get the internet code for this country 
  16738.  
  16739.  
  16740. ΓòÉΓòÉΓòÉ <hidden> ╨ú ΓòÉΓòÉΓòÉ
  16741.  
  16742.  
  16743. lyris_Country Class 
  16744.  
  16745.      class lyris_Country 
  16746.  
  16747.      For determining what countries exist, and what languages are spoken & 
  16748.      preferred in each country 
  16749.  
  16750.      Defined in: COUNTRY.H 
  16751.  
  16752.   Create a new country 
  16753.  
  16754.       bool createNew() 
  16755.  
  16756.      Creates a new country/language table row.  LCP: CountryCreate 
  16757.      bool updateDatabase() 
  16758.  
  16759.      Save the current country with the data members that have changed.  LCP: 
  16760.      CountryUpdate 
  16761.      bool VerifyFields() 
  16762.  
  16763.      Verify that all required fields are filled in. 
  16764.  
  16765.   Retrieve data from the database 
  16766.      bool fetchAllCountries(vecString &AllCountries) 
  16767.  
  16768.      Fetch a list of all countries.  LCP: CountryAll 
  16769.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16770.  
  16771.      Fetch a paired list of countries and their native language descriptions, 
  16772.      sorted by english description.  LCP: CountryEngNat 
  16773.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16774.  
  16775.      Fetch a paired list of native language country descriptions, and the 
  16776.      english name of the country. 
  16777.      bool retrieveFromNetCode() 
  16778.  
  16779.      Determine the country that uses the currently set NetCode.  Fills all the 
  16780.      other country attributes with values. LCP: CountryAttNetCode 
  16781.      bool retrieveFromDesc() 
  16782.  
  16783.      Determine the country that uses the currently set description.  Fills all 
  16784.      the other country attributes with values.  LCP: CountryAttribs 
  16785.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16786.  
  16787.      Determine the primary language of the current country.  "Desc" must be 
  16788.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16789.      CountryPrimLang 
  16790.      bool getAllLanguages(vecString &Languages) 
  16791.  
  16792.      Determine all the languages used by the current country.  "Desc" must be 
  16793.      already set.  The result is returned in priority order (highest priority 
  16794.      first) in vecString &Languages.  LCP: CountryLanguages 
  16795.      bool getLanguageList(vecString &Languages) 
  16796.  
  16797.      Get a list of all possible languages, in alphabetical order, returned in 
  16798.      vecString &Languages.  LCP: CountryLangList 
  16799.      bool getLanguageListEngNat(mapString &Languages) 
  16800.  
  16801.      Get a map of all possible languages, their native description in 
  16802.      alphabetical order by english description, returned in in vecString 
  16803.      &Languages.  LCP: CountryLangListEngNat 
  16804.  
  16805.   Delete a country 
  16806.      bool deleteFromDesc() 
  16807.  
  16808.      Delete the country that uses the currently set description.  LCP: 
  16809.      CountryDelete 
  16810.  
  16811.   Set data members 
  16812.      bool setAll(mapString &FieldValues) 
  16813.  
  16814.      Sets all the data members of a topic using the mapString which is passed 
  16815.      to it.  Only the fields present in the mapString are updated, the other 
  16816.      fields are untouched.  LCP: CountryUpdate 
  16817.      bool setDesc(const string &DescSetting) 
  16818.  
  16819.      Set the short description 
  16820.      bool setDescLong(const string &DescLongSetting) 
  16821.  
  16822.      Set the long description 
  16823.      bool setDescNative(const string &DescNativeSetting) 
  16824.  
  16825.      Set the native language description 
  16826.      bool setNetCode(const string &NetCodeSetting) 
  16827.  
  16828.      Set the internet code for this country 
  16829.      bool erase() 
  16830.  
  16831.      Sets all the data members to empty 
  16832.  
  16833.   Get data members 
  16834.      bool getAll(mapString &FieldValues) 
  16835.  
  16836.      Return a mapString of all the data members of this topic. The key is the 
  16837.      variable name.  LCP: CountryAttribs 
  16838.      string getDesc() 
  16839.  
  16840.      Get the short description 
  16841.      string getDescLong() 
  16842.  
  16843.      Get the long description 
  16844.      string getDescNative() 
  16845.  
  16846.      Get the native language description 
  16847.      string getNetCode() 
  16848.  
  16849.      Get the internet code for this country 
  16850.  
  16851.  
  16852. ΓòÉΓòÉΓòÉ <hidden> ╨ñ ΓòÉΓòÉΓòÉ
  16853.  
  16854.  
  16855. lyris_Country Class 
  16856.  
  16857.      class lyris_Country 
  16858.  
  16859.      For determining what countries exist, and what languages are spoken & 
  16860.      preferred in each country 
  16861.  
  16862.      Defined in: COUNTRY.H 
  16863.  
  16864.   Create a new country 
  16865.  
  16866.       bool createNew() 
  16867.  
  16868.      Creates a new country/language table row.  LCP: CountryCreate 
  16869.      bool updateDatabase() 
  16870.  
  16871.      Save the current country with the data members that have changed.  LCP: 
  16872.      CountryUpdate 
  16873.      bool VerifyFields() 
  16874.  
  16875.      Verify that all required fields are filled in. 
  16876.  
  16877.   Retrieve data from the database 
  16878.      bool fetchAllCountries(vecString &AllCountries) 
  16879.  
  16880.      Fetch a list of all countries.  LCP: CountryAll 
  16881.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16882.  
  16883.      Fetch a paired list of countries and their native language descriptions, 
  16884.      sorted by english description.  LCP: CountryEngNat 
  16885.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16886.  
  16887.      Fetch a paired list of native language country descriptions, and the 
  16888.      english name of the country. 
  16889.      bool retrieveFromNetCode() 
  16890.  
  16891.      Determine the country that uses the currently set NetCode.  Fills all the 
  16892.      other country attributes with values. LCP: CountryAttNetCode 
  16893.      bool retrieveFromDesc() 
  16894.  
  16895.      Determine the country that uses the currently set description.  Fills all 
  16896.      the other country attributes with values.  LCP: CountryAttribs 
  16897.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  16898.  
  16899.      Determine the primary language of the current country.  "Desc" must be 
  16900.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  16901.      CountryPrimLang 
  16902.      bool getAllLanguages(vecString &Languages) 
  16903.  
  16904.      Determine all the languages used by the current country.  "Desc" must be 
  16905.      already set.  The result is returned in priority order (highest priority 
  16906.      first) in vecString &Languages.  LCP: CountryLanguages 
  16907.      bool getLanguageList(vecString &Languages) 
  16908.  
  16909.      Get a list of all possible languages, in alphabetical order, returned in 
  16910.      vecString &Languages.  LCP: CountryLangList 
  16911.      bool getLanguageListEngNat(mapString &Languages) 
  16912.  
  16913.      Get a map of all possible languages, their native description in 
  16914.      alphabetical order by english description, returned in in vecString 
  16915.      &Languages.  LCP: CountryLangListEngNat 
  16916.  
  16917.   Delete a country 
  16918.      bool deleteFromDesc() 
  16919.  
  16920.      Delete the country that uses the currently set description.  LCP: 
  16921.      CountryDelete 
  16922.  
  16923.   Set data members 
  16924.      bool setAll(mapString &FieldValues) 
  16925.  
  16926.      Sets all the data members of a topic using the mapString which is passed 
  16927.      to it.  Only the fields present in the mapString are updated, the other 
  16928.      fields are untouched.  LCP: CountryUpdate 
  16929.      bool setDesc(const string &DescSetting) 
  16930.  
  16931.      Set the short description 
  16932.      bool setDescLong(const string &DescLongSetting) 
  16933.  
  16934.      Set the long description 
  16935.      bool setDescNative(const string &DescNativeSetting) 
  16936.  
  16937.      Set the native language description 
  16938.      bool setNetCode(const string &NetCodeSetting) 
  16939.  
  16940.      Set the internet code for this country 
  16941.      bool erase() 
  16942.  
  16943.      Sets all the data members to empty 
  16944.  
  16945.   Get data members 
  16946.      bool getAll(mapString &FieldValues) 
  16947.  
  16948.      Return a mapString of all the data members of this topic. The key is the 
  16949.      variable name.  LCP: CountryAttribs 
  16950.      string getDesc() 
  16951.  
  16952.      Get the short description 
  16953.      string getDescLong() 
  16954.  
  16955.      Get the long description 
  16956.      string getDescNative() 
  16957.  
  16958.      Get the native language description 
  16959.      string getNetCode() 
  16960.  
  16961.      Get the internet code for this country 
  16962.  
  16963.  
  16964. ΓòÉΓòÉΓòÉ <hidden> ╨Ñ ΓòÉΓòÉΓòÉ
  16965.  
  16966.  
  16967. lyris_Country Class 
  16968.  
  16969.      class lyris_Country 
  16970.  
  16971.      For determining what countries exist, and what languages are spoken & 
  16972.      preferred in each country 
  16973.  
  16974.      Defined in: COUNTRY.H 
  16975.  
  16976.   Create a new country 
  16977.  
  16978.       bool createNew() 
  16979.  
  16980.      Creates a new country/language table row.  LCP: CountryCreate 
  16981.      bool updateDatabase() 
  16982.  
  16983.      Save the current country with the data members that have changed.  LCP: 
  16984.      CountryUpdate 
  16985.      bool VerifyFields() 
  16986.  
  16987.      Verify that all required fields are filled in. 
  16988.  
  16989.   Retrieve data from the database 
  16990.      bool fetchAllCountries(vecString &AllCountries) 
  16991.  
  16992.      Fetch a list of all countries.  LCP: CountryAll 
  16993.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  16994.  
  16995.      Fetch a paired list of countries and their native language descriptions, 
  16996.      sorted by english description.  LCP: CountryEngNat 
  16997.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  16998.  
  16999.      Fetch a paired list of native language country descriptions, and the 
  17000.      english name of the country. 
  17001.      bool retrieveFromNetCode() 
  17002.  
  17003.      Determine the country that uses the currently set NetCode.  Fills all the 
  17004.      other country attributes with values. LCP: CountryAttNetCode 
  17005.      bool retrieveFromDesc() 
  17006.  
  17007.      Determine the country that uses the currently set description.  Fills all 
  17008.      the other country attributes with values.  LCP: CountryAttribs 
  17009.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17010.  
  17011.      Determine the primary language of the current country.  "Desc" must be 
  17012.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17013.      CountryPrimLang 
  17014.      bool getAllLanguages(vecString &Languages) 
  17015.  
  17016.      Determine all the languages used by the current country.  "Desc" must be 
  17017.      already set.  The result is returned in priority order (highest priority 
  17018.      first) in vecString &Languages.  LCP: CountryLanguages 
  17019.      bool getLanguageList(vecString &Languages) 
  17020.  
  17021.      Get a list of all possible languages, in alphabetical order, returned in 
  17022.      vecString &Languages.  LCP: CountryLangList 
  17023.      bool getLanguageListEngNat(mapString &Languages) 
  17024.  
  17025.      Get a map of all possible languages, their native description in 
  17026.      alphabetical order by english description, returned in in vecString 
  17027.      &Languages.  LCP: CountryLangListEngNat 
  17028.  
  17029.   Delete a country 
  17030.      bool deleteFromDesc() 
  17031.  
  17032.      Delete the country that uses the currently set description.  LCP: 
  17033.      CountryDelete 
  17034.  
  17035.   Set data members 
  17036.      bool setAll(mapString &FieldValues) 
  17037.  
  17038.      Sets all the data members of a topic using the mapString which is passed 
  17039.      to it.  Only the fields present in the mapString are updated, the other 
  17040.      fields are untouched.  LCP: CountryUpdate 
  17041.      bool setDesc(const string &DescSetting) 
  17042.  
  17043.      Set the short description 
  17044.      bool setDescLong(const string &DescLongSetting) 
  17045.  
  17046.      Set the long description 
  17047.      bool setDescNative(const string &DescNativeSetting) 
  17048.  
  17049.      Set the native language description 
  17050.      bool setNetCode(const string &NetCodeSetting) 
  17051.  
  17052.      Set the internet code for this country 
  17053.      bool erase() 
  17054.  
  17055.      Sets all the data members to empty 
  17056.  
  17057.   Get data members 
  17058.      bool getAll(mapString &FieldValues) 
  17059.  
  17060.      Return a mapString of all the data members of this topic. The key is the 
  17061.      variable name.  LCP: CountryAttribs 
  17062.      string getDesc() 
  17063.  
  17064.      Get the short description 
  17065.      string getDescLong() 
  17066.  
  17067.      Get the long description 
  17068.      string getDescNative() 
  17069.  
  17070.      Get the native language description 
  17071.      string getNetCode() 
  17072.  
  17073.      Get the internet code for this country 
  17074.  
  17075.  
  17076. ΓòÉΓòÉΓòÉ <hidden> ╨ª ΓòÉΓòÉΓòÉ
  17077.  
  17078.  
  17079. lyris_Country Class 
  17080.  
  17081.      class lyris_Country 
  17082.  
  17083.      For determining what countries exist, and what languages are spoken & 
  17084.      preferred in each country 
  17085.  
  17086.      Defined in: COUNTRY.H 
  17087.  
  17088.   Create a new country 
  17089.  
  17090.       bool createNew() 
  17091.  
  17092.      Creates a new country/language table row.  LCP: CountryCreate 
  17093.      bool updateDatabase() 
  17094.  
  17095.      Save the current country with the data members that have changed.  LCP: 
  17096.      CountryUpdate 
  17097.      bool VerifyFields() 
  17098.  
  17099.      Verify that all required fields are filled in. 
  17100.  
  17101.   Retrieve data from the database 
  17102.      bool fetchAllCountries(vecString &AllCountries) 
  17103.  
  17104.      Fetch a list of all countries.  LCP: CountryAll 
  17105.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17106.  
  17107.      Fetch a paired list of countries and their native language descriptions, 
  17108.      sorted by english description.  LCP: CountryEngNat 
  17109.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17110.  
  17111.      Fetch a paired list of native language country descriptions, and the 
  17112.      english name of the country. 
  17113.      bool retrieveFromNetCode() 
  17114.  
  17115.      Determine the country that uses the currently set NetCode.  Fills all the 
  17116.      other country attributes with values. LCP: CountryAttNetCode 
  17117.      bool retrieveFromDesc() 
  17118.  
  17119.      Determine the country that uses the currently set description.  Fills all 
  17120.      the other country attributes with values.  LCP: CountryAttribs 
  17121.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17122.  
  17123.      Determine the primary language of the current country.  "Desc" must be 
  17124.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17125.      CountryPrimLang 
  17126.      bool getAllLanguages(vecString &Languages) 
  17127.  
  17128.      Determine all the languages used by the current country.  "Desc" must be 
  17129.      already set.  The result is returned in priority order (highest priority 
  17130.      first) in vecString &Languages.  LCP: CountryLanguages 
  17131.      bool getLanguageList(vecString &Languages) 
  17132.  
  17133.      Get a list of all possible languages, in alphabetical order, returned in 
  17134.      vecString &Languages.  LCP: CountryLangList 
  17135.      bool getLanguageListEngNat(mapString &Languages) 
  17136.  
  17137.      Get a map of all possible languages, their native description in 
  17138.      alphabetical order by english description, returned in in vecString 
  17139.      &Languages.  LCP: CountryLangListEngNat 
  17140.  
  17141.   Delete a country 
  17142.      bool deleteFromDesc() 
  17143.  
  17144.      Delete the country that uses the currently set description.  LCP: 
  17145.      CountryDelete 
  17146.  
  17147.   Set data members 
  17148.      bool setAll(mapString &FieldValues) 
  17149.  
  17150.      Sets all the data members of a topic using the mapString which is passed 
  17151.      to it.  Only the fields present in the mapString are updated, the other 
  17152.      fields are untouched.  LCP: CountryUpdate 
  17153.      bool setDesc(const string &DescSetting) 
  17154.  
  17155.      Set the short description 
  17156.      bool setDescLong(const string &DescLongSetting) 
  17157.  
  17158.      Set the long description 
  17159.      bool setDescNative(const string &DescNativeSetting) 
  17160.  
  17161.      Set the native language description 
  17162.      bool setNetCode(const string &NetCodeSetting) 
  17163.  
  17164.      Set the internet code for this country 
  17165.      bool erase() 
  17166.  
  17167.      Sets all the data members to empty 
  17168.  
  17169.   Get data members 
  17170.      bool getAll(mapString &FieldValues) 
  17171.  
  17172.      Return a mapString of all the data members of this topic. The key is the 
  17173.      variable name.  LCP: CountryAttribs 
  17174.      string getDesc() 
  17175.  
  17176.      Get the short description 
  17177.      string getDescLong() 
  17178.  
  17179.      Get the long description 
  17180.      string getDescNative() 
  17181.  
  17182.      Get the native language description 
  17183.      string getNetCode() 
  17184.  
  17185.      Get the internet code for this country 
  17186.  
  17187.  
  17188. ΓòÉΓòÉΓòÉ <hidden> ╨º ΓòÉΓòÉΓòÉ
  17189.  
  17190.  
  17191. lyris_Country Class 
  17192.  
  17193.      class lyris_Country 
  17194.  
  17195.      For determining what countries exist, and what languages are spoken & 
  17196.      preferred in each country 
  17197.  
  17198.      Defined in: COUNTRY.H 
  17199.  
  17200.   Create a new country 
  17201.  
  17202.       bool createNew() 
  17203.  
  17204.      Creates a new country/language table row.  LCP: CountryCreate 
  17205.      bool updateDatabase() 
  17206.  
  17207.      Save the current country with the data members that have changed.  LCP: 
  17208.      CountryUpdate 
  17209.      bool VerifyFields() 
  17210.  
  17211.      Verify that all required fields are filled in. 
  17212.  
  17213.   Retrieve data from the database 
  17214.      bool fetchAllCountries(vecString &AllCountries) 
  17215.  
  17216.      Fetch a list of all countries.  LCP: CountryAll 
  17217.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17218.  
  17219.      Fetch a paired list of countries and their native language descriptions, 
  17220.      sorted by english description.  LCP: CountryEngNat 
  17221.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17222.  
  17223.      Fetch a paired list of native language country descriptions, and the 
  17224.      english name of the country. 
  17225.      bool retrieveFromNetCode() 
  17226.  
  17227.      Determine the country that uses the currently set NetCode.  Fills all the 
  17228.      other country attributes with values. LCP: CountryAttNetCode 
  17229.      bool retrieveFromDesc() 
  17230.  
  17231.      Determine the country that uses the currently set description.  Fills all 
  17232.      the other country attributes with values.  LCP: CountryAttribs 
  17233.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17234.  
  17235.      Determine the primary language of the current country.  "Desc" must be 
  17236.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17237.      CountryPrimLang 
  17238.      bool getAllLanguages(vecString &Languages) 
  17239.  
  17240.      Determine all the languages used by the current country.  "Desc" must be 
  17241.      already set.  The result is returned in priority order (highest priority 
  17242.      first) in vecString &Languages.  LCP: CountryLanguages 
  17243.      bool getLanguageList(vecString &Languages) 
  17244.  
  17245.      Get a list of all possible languages, in alphabetical order, returned in 
  17246.      vecString &Languages.  LCP: CountryLangList 
  17247.      bool getLanguageListEngNat(mapString &Languages) 
  17248.  
  17249.      Get a map of all possible languages, their native description in 
  17250.      alphabetical order by english description, returned in in vecString 
  17251.      &Languages.  LCP: CountryLangListEngNat 
  17252.  
  17253.   Delete a country 
  17254.      bool deleteFromDesc() 
  17255.  
  17256.      Delete the country that uses the currently set description.  LCP: 
  17257.      CountryDelete 
  17258.  
  17259.   Set data members 
  17260.      bool setAll(mapString &FieldValues) 
  17261.  
  17262.      Sets all the data members of a topic using the mapString which is passed 
  17263.      to it.  Only the fields present in the mapString are updated, the other 
  17264.      fields are untouched.  LCP: CountryUpdate 
  17265.      bool setDesc(const string &DescSetting) 
  17266.  
  17267.      Set the short description 
  17268.      bool setDescLong(const string &DescLongSetting) 
  17269.  
  17270.      Set the long description 
  17271.      bool setDescNative(const string &DescNativeSetting) 
  17272.  
  17273.      Set the native language description 
  17274.      bool setNetCode(const string &NetCodeSetting) 
  17275.  
  17276.      Set the internet code for this country 
  17277.      bool erase() 
  17278.  
  17279.      Sets all the data members to empty 
  17280.  
  17281.   Get data members 
  17282.      bool getAll(mapString &FieldValues) 
  17283.  
  17284.      Return a mapString of all the data members of this topic. The key is the 
  17285.      variable name.  LCP: CountryAttribs 
  17286.      string getDesc() 
  17287.  
  17288.      Get the short description 
  17289.      string getDescLong() 
  17290.  
  17291.      Get the long description 
  17292.      string getDescNative() 
  17293.  
  17294.      Get the native language description 
  17295.      string getNetCode() 
  17296.  
  17297.      Get the internet code for this country 
  17298.  
  17299.  
  17300. ΓòÉΓòÉΓòÉ <hidden> ╨¿ ΓòÉΓòÉΓòÉ
  17301.  
  17302.  
  17303. lyris_Country Class 
  17304.  
  17305.      class lyris_Country 
  17306.  
  17307.      For determining what countries exist, and what languages are spoken & 
  17308.      preferred in each country 
  17309.  
  17310.      Defined in: COUNTRY.H 
  17311.  
  17312.   Create a new country 
  17313.  
  17314.       bool createNew() 
  17315.  
  17316.      Creates a new country/language table row.  LCP: CountryCreate 
  17317.      bool updateDatabase() 
  17318.  
  17319.      Save the current country with the data members that have changed.  LCP: 
  17320.      CountryUpdate 
  17321.      bool VerifyFields() 
  17322.  
  17323.      Verify that all required fields are filled in. 
  17324.  
  17325.   Retrieve data from the database 
  17326.      bool fetchAllCountries(vecString &AllCountries) 
  17327.  
  17328.      Fetch a list of all countries.  LCP: CountryAll 
  17329.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17330.  
  17331.      Fetch a paired list of countries and their native language descriptions, 
  17332.      sorted by english description.  LCP: CountryEngNat 
  17333.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17334.  
  17335.      Fetch a paired list of native language country descriptions, and the 
  17336.      english name of the country. 
  17337.      bool retrieveFromNetCode() 
  17338.  
  17339.      Determine the country that uses the currently set NetCode.  Fills all the 
  17340.      other country attributes with values. LCP: CountryAttNetCode 
  17341.      bool retrieveFromDesc() 
  17342.  
  17343.      Determine the country that uses the currently set description.  Fills all 
  17344.      the other country attributes with values.  LCP: CountryAttribs 
  17345.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17346.  
  17347.      Determine the primary language of the current country.  "Desc" must be 
  17348.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17349.      CountryPrimLang 
  17350.      bool getAllLanguages(vecString &Languages) 
  17351.  
  17352.      Determine all the languages used by the current country.  "Desc" must be 
  17353.      already set.  The result is returned in priority order (highest priority 
  17354.      first) in vecString &Languages.  LCP: CountryLanguages 
  17355.      bool getLanguageList(vecString &Languages) 
  17356.  
  17357.      Get a list of all possible languages, in alphabetical order, returned in 
  17358.      vecString &Languages.  LCP: CountryLangList 
  17359.      bool getLanguageListEngNat(mapString &Languages) 
  17360.  
  17361.      Get a map of all possible languages, their native description in 
  17362.      alphabetical order by english description, returned in in vecString 
  17363.      &Languages.  LCP: CountryLangListEngNat 
  17364.  
  17365.   Delete a country 
  17366.      bool deleteFromDesc() 
  17367.  
  17368.      Delete the country that uses the currently set description.  LCP: 
  17369.      CountryDelete 
  17370.  
  17371.   Set data members 
  17372.      bool setAll(mapString &FieldValues) 
  17373.  
  17374.      Sets all the data members of a topic using the mapString which is passed 
  17375.      to it.  Only the fields present in the mapString are updated, the other 
  17376.      fields are untouched.  LCP: CountryUpdate 
  17377.      bool setDesc(const string &DescSetting) 
  17378.  
  17379.      Set the short description 
  17380.      bool setDescLong(const string &DescLongSetting) 
  17381.  
  17382.      Set the long description 
  17383.      bool setDescNative(const string &DescNativeSetting) 
  17384.  
  17385.      Set the native language description 
  17386.      bool setNetCode(const string &NetCodeSetting) 
  17387.  
  17388.      Set the internet code for this country 
  17389.      bool erase() 
  17390.  
  17391.      Sets all the data members to empty 
  17392.  
  17393.   Get data members 
  17394.      bool getAll(mapString &FieldValues) 
  17395.  
  17396.      Return a mapString of all the data members of this topic. The key is the 
  17397.      variable name.  LCP: CountryAttribs 
  17398.      string getDesc() 
  17399.  
  17400.      Get the short description 
  17401.      string getDescLong() 
  17402.  
  17403.      Get the long description 
  17404.      string getDescNative() 
  17405.  
  17406.      Get the native language description 
  17407.      string getNetCode() 
  17408.  
  17409.      Get the internet code for this country 
  17410.  
  17411.  
  17412. ΓòÉΓòÉΓòÉ <hidden> ╨⌐ ΓòÉΓòÉΓòÉ
  17413.  
  17414.  
  17415. lyris_Country Class 
  17416.  
  17417.      class lyris_Country 
  17418.  
  17419.      For determining what countries exist, and what languages are spoken & 
  17420.      preferred in each country 
  17421.  
  17422.      Defined in: COUNTRY.H 
  17423.  
  17424.   Create a new country 
  17425.  
  17426.       bool createNew() 
  17427.  
  17428.      Creates a new country/language table row.  LCP: CountryCreate 
  17429.      bool updateDatabase() 
  17430.  
  17431.      Save the current country with the data members that have changed.  LCP: 
  17432.      CountryUpdate 
  17433.      bool VerifyFields() 
  17434.  
  17435.      Verify that all required fields are filled in. 
  17436.  
  17437.   Retrieve data from the database 
  17438.      bool fetchAllCountries(vecString &AllCountries) 
  17439.  
  17440.      Fetch a list of all countries.  LCP: CountryAll 
  17441.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17442.  
  17443.      Fetch a paired list of countries and their native language descriptions, 
  17444.      sorted by english description.  LCP: CountryEngNat 
  17445.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17446.  
  17447.      Fetch a paired list of native language country descriptions, and the 
  17448.      english name of the country. 
  17449.      bool retrieveFromNetCode() 
  17450.  
  17451.      Determine the country that uses the currently set NetCode.  Fills all the 
  17452.      other country attributes with values. LCP: CountryAttNetCode 
  17453.      bool retrieveFromDesc() 
  17454.  
  17455.      Determine the country that uses the currently set description.  Fills all 
  17456.      the other country attributes with values.  LCP: CountryAttribs 
  17457.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17458.  
  17459.      Determine the primary language of the current country.  "Desc" must be 
  17460.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17461.      CountryPrimLang 
  17462.      bool getAllLanguages(vecString &Languages) 
  17463.  
  17464.      Determine all the languages used by the current country.  "Desc" must be 
  17465.      already set.  The result is returned in priority order (highest priority 
  17466.      first) in vecString &Languages.  LCP: CountryLanguages 
  17467.      bool getLanguageList(vecString &Languages) 
  17468.  
  17469.      Get a list of all possible languages, in alphabetical order, returned in 
  17470.      vecString &Languages.  LCP: CountryLangList 
  17471.      bool getLanguageListEngNat(mapString &Languages) 
  17472.  
  17473.      Get a map of all possible languages, their native description in 
  17474.      alphabetical order by english description, returned in in vecString 
  17475.      &Languages.  LCP: CountryLangListEngNat 
  17476.  
  17477.   Delete a country 
  17478.      bool deleteFromDesc() 
  17479.  
  17480.      Delete the country that uses the currently set description.  LCP: 
  17481.      CountryDelete 
  17482.  
  17483.   Set data members 
  17484.      bool setAll(mapString &FieldValues) 
  17485.  
  17486.      Sets all the data members of a topic using the mapString which is passed 
  17487.      to it.  Only the fields present in the mapString are updated, the other 
  17488.      fields are untouched.  LCP: CountryUpdate 
  17489.      bool setDesc(const string &DescSetting) 
  17490.  
  17491.      Set the short description 
  17492.      bool setDescLong(const string &DescLongSetting) 
  17493.  
  17494.      Set the long description 
  17495.      bool setDescNative(const string &DescNativeSetting) 
  17496.  
  17497.      Set the native language description 
  17498.      bool setNetCode(const string &NetCodeSetting) 
  17499.  
  17500.      Set the internet code for this country 
  17501.      bool erase() 
  17502.  
  17503.      Sets all the data members to empty 
  17504.  
  17505.   Get data members 
  17506.      bool getAll(mapString &FieldValues) 
  17507.  
  17508.      Return a mapString of all the data members of this topic. The key is the 
  17509.      variable name.  LCP: CountryAttribs 
  17510.      string getDesc() 
  17511.  
  17512.      Get the short description 
  17513.      string getDescLong() 
  17514.  
  17515.      Get the long description 
  17516.      string getDescNative() 
  17517.  
  17518.      Get the native language description 
  17519.      string getNetCode() 
  17520.  
  17521.      Get the internet code for this country 
  17522.  
  17523.  
  17524. ΓòÉΓòÉΓòÉ <hidden> ╨¬ ΓòÉΓòÉΓòÉ
  17525.  
  17526.  
  17527. lyris_Country Class 
  17528.  
  17529.      class lyris_Country 
  17530.  
  17531.      For determining what countries exist, and what languages are spoken & 
  17532.      preferred in each country 
  17533.  
  17534.      Defined in: COUNTRY.H 
  17535.  
  17536.   Create a new country 
  17537.  
  17538.       bool createNew() 
  17539.  
  17540.      Creates a new country/language table row.  LCP: CountryCreate 
  17541.      bool updateDatabase() 
  17542.  
  17543.      Save the current country with the data members that have changed.  LCP: 
  17544.      CountryUpdate 
  17545.      bool VerifyFields() 
  17546.  
  17547.      Verify that all required fields are filled in. 
  17548.  
  17549.   Retrieve data from the database 
  17550.      bool fetchAllCountries(vecString &AllCountries) 
  17551.  
  17552.      Fetch a list of all countries.  LCP: CountryAll 
  17553.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17554.  
  17555.      Fetch a paired list of countries and their native language descriptions, 
  17556.      sorted by english description.  LCP: CountryEngNat 
  17557.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17558.  
  17559.      Fetch a paired list of native language country descriptions, and the 
  17560.      english name of the country. 
  17561.      bool retrieveFromNetCode() 
  17562.  
  17563.      Determine the country that uses the currently set NetCode.  Fills all the 
  17564.      other country attributes with values. LCP: CountryAttNetCode 
  17565.      bool retrieveFromDesc() 
  17566.  
  17567.      Determine the country that uses the currently set description.  Fills all 
  17568.      the other country attributes with values.  LCP: CountryAttribs 
  17569.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17570.  
  17571.      Determine the primary language of the current country.  "Desc" must be 
  17572.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17573.      CountryPrimLang 
  17574.      bool getAllLanguages(vecString &Languages) 
  17575.  
  17576.      Determine all the languages used by the current country.  "Desc" must be 
  17577.      already set.  The result is returned in priority order (highest priority 
  17578.      first) in vecString &Languages.  LCP: CountryLanguages 
  17579.      bool getLanguageList(vecString &Languages) 
  17580.  
  17581.      Get a list of all possible languages, in alphabetical order, returned in 
  17582.      vecString &Languages.  LCP: CountryLangList 
  17583.      bool getLanguageListEngNat(mapString &Languages) 
  17584.  
  17585.      Get a map of all possible languages, their native description in 
  17586.      alphabetical order by english description, returned in in vecString 
  17587.      &Languages.  LCP: CountryLangListEngNat 
  17588.  
  17589.   Delete a country 
  17590.      bool deleteFromDesc() 
  17591.  
  17592.      Delete the country that uses the currently set description.  LCP: 
  17593.      CountryDelete 
  17594.  
  17595.   Set data members 
  17596.      bool setAll(mapString &FieldValues) 
  17597.  
  17598.      Sets all the data members of a topic using the mapString which is passed 
  17599.      to it.  Only the fields present in the mapString are updated, the other 
  17600.      fields are untouched.  LCP: CountryUpdate 
  17601.      bool setDesc(const string &DescSetting) 
  17602.  
  17603.      Set the short description 
  17604.      bool setDescLong(const string &DescLongSetting) 
  17605.  
  17606.      Set the long description 
  17607.      bool setDescNative(const string &DescNativeSetting) 
  17608.  
  17609.      Set the native language description 
  17610.      bool setNetCode(const string &NetCodeSetting) 
  17611.  
  17612.      Set the internet code for this country 
  17613.      bool erase() 
  17614.  
  17615.      Sets all the data members to empty 
  17616.  
  17617.   Get data members 
  17618.      bool getAll(mapString &FieldValues) 
  17619.  
  17620.      Return a mapString of all the data members of this topic. The key is the 
  17621.      variable name.  LCP: CountryAttribs 
  17622.      string getDesc() 
  17623.  
  17624.      Get the short description 
  17625.      string getDescLong() 
  17626.  
  17627.      Get the long description 
  17628.      string getDescNative() 
  17629.  
  17630.      Get the native language description 
  17631.      string getNetCode() 
  17632.  
  17633.      Get the internet code for this country 
  17634.  
  17635.  
  17636. ΓòÉΓòÉΓòÉ <hidden> ╨½ ΓòÉΓòÉΓòÉ
  17637.  
  17638.  
  17639. lyris_Country Class 
  17640.  
  17641.      class lyris_Country 
  17642.  
  17643.      For determining what countries exist, and what languages are spoken & 
  17644.      preferred in each country 
  17645.  
  17646.      Defined in: COUNTRY.H 
  17647.  
  17648.   Create a new country 
  17649.  
  17650.       bool createNew() 
  17651.  
  17652.      Creates a new country/language table row.  LCP: CountryCreate 
  17653.      bool updateDatabase() 
  17654.  
  17655.      Save the current country with the data members that have changed.  LCP: 
  17656.      CountryUpdate 
  17657.      bool VerifyFields() 
  17658.  
  17659.      Verify that all required fields are filled in. 
  17660.  
  17661.   Retrieve data from the database 
  17662.      bool fetchAllCountries(vecString &AllCountries) 
  17663.  
  17664.      Fetch a list of all countries.  LCP: CountryAll 
  17665.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17666.  
  17667.      Fetch a paired list of countries and their native language descriptions, 
  17668.      sorted by english description.  LCP: CountryEngNat 
  17669.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17670.  
  17671.      Fetch a paired list of native language country descriptions, and the 
  17672.      english name of the country. 
  17673.      bool retrieveFromNetCode() 
  17674.  
  17675.      Determine the country that uses the currently set NetCode.  Fills all the 
  17676.      other country attributes with values. LCP: CountryAttNetCode 
  17677.      bool retrieveFromDesc() 
  17678.  
  17679.      Determine the country that uses the currently set description.  Fills all 
  17680.      the other country attributes with values.  LCP: CountryAttribs 
  17681.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17682.  
  17683.      Determine the primary language of the current country.  "Desc" must be 
  17684.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17685.      CountryPrimLang 
  17686.      bool getAllLanguages(vecString &Languages) 
  17687.  
  17688.      Determine all the languages used by the current country.  "Desc" must be 
  17689.      already set.  The result is returned in priority order (highest priority 
  17690.      first) in vecString &Languages.  LCP: CountryLanguages 
  17691.      bool getLanguageList(vecString &Languages) 
  17692.  
  17693.      Get a list of all possible languages, in alphabetical order, returned in 
  17694.      vecString &Languages.  LCP: CountryLangList 
  17695.      bool getLanguageListEngNat(mapString &Languages) 
  17696.  
  17697.      Get a map of all possible languages, their native description in 
  17698.      alphabetical order by english description, returned in in vecString 
  17699.      &Languages.  LCP: CountryLangListEngNat 
  17700.  
  17701.   Delete a country 
  17702.      bool deleteFromDesc() 
  17703.  
  17704.      Delete the country that uses the currently set description.  LCP: 
  17705.      CountryDelete 
  17706.  
  17707.   Set data members 
  17708.      bool setAll(mapString &FieldValues) 
  17709.  
  17710.      Sets all the data members of a topic using the mapString which is passed 
  17711.      to it.  Only the fields present in the mapString are updated, the other 
  17712.      fields are untouched.  LCP: CountryUpdate 
  17713.      bool setDesc(const string &DescSetting) 
  17714.  
  17715.      Set the short description 
  17716.      bool setDescLong(const string &DescLongSetting) 
  17717.  
  17718.      Set the long description 
  17719.      bool setDescNative(const string &DescNativeSetting) 
  17720.  
  17721.      Set the native language description 
  17722.      bool setNetCode(const string &NetCodeSetting) 
  17723.  
  17724.      Set the internet code for this country 
  17725.      bool erase() 
  17726.  
  17727.      Sets all the data members to empty 
  17728.  
  17729.   Get data members 
  17730.      bool getAll(mapString &FieldValues) 
  17731.  
  17732.      Return a mapString of all the data members of this topic. The key is the 
  17733.      variable name.  LCP: CountryAttribs 
  17734.      string getDesc() 
  17735.  
  17736.      Get the short description 
  17737.      string getDescLong() 
  17738.  
  17739.      Get the long description 
  17740.      string getDescNative() 
  17741.  
  17742.      Get the native language description 
  17743.      string getNetCode() 
  17744.  
  17745.      Get the internet code for this country 
  17746.  
  17747.  
  17748. ΓòÉΓòÉΓòÉ <hidden> ╨¼ ΓòÉΓòÉΓòÉ
  17749.  
  17750.  
  17751. lyris_Country Class 
  17752.  
  17753.      class lyris_Country 
  17754.  
  17755.      For determining what countries exist, and what languages are spoken & 
  17756.      preferred in each country 
  17757.  
  17758.      Defined in: COUNTRY.H 
  17759.  
  17760.   Create a new country 
  17761.  
  17762.       bool createNew() 
  17763.  
  17764.      Creates a new country/language table row.  LCP: CountryCreate 
  17765.      bool updateDatabase() 
  17766.  
  17767.      Save the current country with the data members that have changed.  LCP: 
  17768.      CountryUpdate 
  17769.      bool VerifyFields() 
  17770.  
  17771.      Verify that all required fields are filled in. 
  17772.  
  17773.   Retrieve data from the database 
  17774.      bool fetchAllCountries(vecString &AllCountries) 
  17775.  
  17776.      Fetch a list of all countries.  LCP: CountryAll 
  17777.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17778.  
  17779.      Fetch a paired list of countries and their native language descriptions, 
  17780.      sorted by english description.  LCP: CountryEngNat 
  17781.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17782.  
  17783.      Fetch a paired list of native language country descriptions, and the 
  17784.      english name of the country. 
  17785.      bool retrieveFromNetCode() 
  17786.  
  17787.      Determine the country that uses the currently set NetCode.  Fills all the 
  17788.      other country attributes with values. LCP: CountryAttNetCode 
  17789.      bool retrieveFromDesc() 
  17790.  
  17791.      Determine the country that uses the currently set description.  Fills all 
  17792.      the other country attributes with values.  LCP: CountryAttribs 
  17793.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17794.  
  17795.      Determine the primary language of the current country.  "Desc" must be 
  17796.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17797.      CountryPrimLang 
  17798.      bool getAllLanguages(vecString &Languages) 
  17799.  
  17800.      Determine all the languages used by the current country.  "Desc" must be 
  17801.      already set.  The result is returned in priority order (highest priority 
  17802.      first) in vecString &Languages.  LCP: CountryLanguages 
  17803.      bool getLanguageList(vecString &Languages) 
  17804.  
  17805.      Get a list of all possible languages, in alphabetical order, returned in 
  17806.      vecString &Languages.  LCP: CountryLangList 
  17807.      bool getLanguageListEngNat(mapString &Languages) 
  17808.  
  17809.      Get a map of all possible languages, their native description in 
  17810.      alphabetical order by english description, returned in in vecString 
  17811.      &Languages.  LCP: CountryLangListEngNat 
  17812.  
  17813.   Delete a country 
  17814.      bool deleteFromDesc() 
  17815.  
  17816.      Delete the country that uses the currently set description.  LCP: 
  17817.      CountryDelete 
  17818.  
  17819.   Set data members 
  17820.      bool setAll(mapString &FieldValues) 
  17821.  
  17822.      Sets all the data members of a topic using the mapString which is passed 
  17823.      to it.  Only the fields present in the mapString are updated, the other 
  17824.      fields are untouched.  LCP: CountryUpdate 
  17825.      bool setDesc(const string &DescSetting) 
  17826.  
  17827.      Set the short description 
  17828.      bool setDescLong(const string &DescLongSetting) 
  17829.  
  17830.      Set the long description 
  17831.      bool setDescNative(const string &DescNativeSetting) 
  17832.  
  17833.      Set the native language description 
  17834.      bool setNetCode(const string &NetCodeSetting) 
  17835.  
  17836.      Set the internet code for this country 
  17837.      bool erase() 
  17838.  
  17839.      Sets all the data members to empty 
  17840.  
  17841.   Get data members 
  17842.      bool getAll(mapString &FieldValues) 
  17843.  
  17844.      Return a mapString of all the data members of this topic. The key is the 
  17845.      variable name.  LCP: CountryAttribs 
  17846.      string getDesc() 
  17847.  
  17848.      Get the short description 
  17849.      string getDescLong() 
  17850.  
  17851.      Get the long description 
  17852.      string getDescNative() 
  17853.  
  17854.      Get the native language description 
  17855.      string getNetCode() 
  17856.  
  17857.      Get the internet code for this country 
  17858.  
  17859.  
  17860. ΓòÉΓòÉΓòÉ <hidden> ╨¡ ΓòÉΓòÉΓòÉ
  17861.  
  17862.  
  17863. lyris_Country Class 
  17864.  
  17865.      class lyris_Country 
  17866.  
  17867.      For determining what countries exist, and what languages are spoken & 
  17868.      preferred in each country 
  17869.  
  17870.      Defined in: COUNTRY.H 
  17871.  
  17872.   Create a new country 
  17873.  
  17874.       bool createNew() 
  17875.  
  17876.      Creates a new country/language table row.  LCP: CountryCreate 
  17877.      bool updateDatabase() 
  17878.  
  17879.      Save the current country with the data members that have changed.  LCP: 
  17880.      CountryUpdate 
  17881.      bool VerifyFields() 
  17882.  
  17883.      Verify that all required fields are filled in. 
  17884.  
  17885.   Retrieve data from the database 
  17886.      bool fetchAllCountries(vecString &AllCountries) 
  17887.  
  17888.      Fetch a list of all countries.  LCP: CountryAll 
  17889.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  17890.  
  17891.      Fetch a paired list of countries and their native language descriptions, 
  17892.      sorted by english description.  LCP: CountryEngNat 
  17893.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  17894.  
  17895.      Fetch a paired list of native language country descriptions, and the 
  17896.      english name of the country. 
  17897.      bool retrieveFromNetCode() 
  17898.  
  17899.      Determine the country that uses the currently set NetCode.  Fills all the 
  17900.      other country attributes with values. LCP: CountryAttNetCode 
  17901.      bool retrieveFromDesc() 
  17902.  
  17903.      Determine the country that uses the currently set description.  Fills all 
  17904.      the other country attributes with values.  LCP: CountryAttribs 
  17905.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  17906.  
  17907.      Determine the primary language of the current country.  "Desc" must be 
  17908.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  17909.      CountryPrimLang 
  17910.      bool getAllLanguages(vecString &Languages) 
  17911.  
  17912.      Determine all the languages used by the current country.  "Desc" must be 
  17913.      already set.  The result is returned in priority order (highest priority 
  17914.      first) in vecString &Languages.  LCP: CountryLanguages 
  17915.      bool getLanguageList(vecString &Languages) 
  17916.  
  17917.      Get a list of all possible languages, in alphabetical order, returned in 
  17918.      vecString &Languages.  LCP: CountryLangList 
  17919.      bool getLanguageListEngNat(mapString &Languages) 
  17920.  
  17921.      Get a map of all possible languages, their native description in 
  17922.      alphabetical order by english description, returned in in vecString 
  17923.      &Languages.  LCP: CountryLangListEngNat 
  17924.  
  17925.   Delete a country 
  17926.      bool deleteFromDesc() 
  17927.  
  17928.      Delete the country that uses the currently set description.  LCP: 
  17929.      CountryDelete 
  17930.  
  17931.   Set data members 
  17932.      bool setAll(mapString &FieldValues) 
  17933.  
  17934.      Sets all the data members of a topic using the mapString which is passed 
  17935.      to it.  Only the fields present in the mapString are updated, the other 
  17936.      fields are untouched.  LCP: CountryUpdate 
  17937.      bool setDesc(const string &DescSetting) 
  17938.  
  17939.      Set the short description 
  17940.      bool setDescLong(const string &DescLongSetting) 
  17941.  
  17942.      Set the long description 
  17943.      bool setDescNative(const string &DescNativeSetting) 
  17944.  
  17945.      Set the native language description 
  17946.      bool setNetCode(const string &NetCodeSetting) 
  17947.  
  17948.      Set the internet code for this country 
  17949.      bool erase() 
  17950.  
  17951.      Sets all the data members to empty 
  17952.  
  17953.   Get data members 
  17954.      bool getAll(mapString &FieldValues) 
  17955.  
  17956.      Return a mapString of all the data members of this topic. The key is the 
  17957.      variable name.  LCP: CountryAttribs 
  17958.      string getDesc() 
  17959.  
  17960.      Get the short description 
  17961.      string getDescLong() 
  17962.  
  17963.      Get the long description 
  17964.      string getDescNative() 
  17965.  
  17966.      Get the native language description 
  17967.      string getNetCode() 
  17968.  
  17969.      Get the internet code for this country 
  17970.  
  17971.  
  17972. ΓòÉΓòÉΓòÉ <hidden> ╨« ΓòÉΓòÉΓòÉ
  17973.  
  17974.  
  17975. lyris_Country Class 
  17976.  
  17977.      class lyris_Country 
  17978.  
  17979.      For determining what countries exist, and what languages are spoken & 
  17980.      preferred in each country 
  17981.  
  17982.      Defined in: COUNTRY.H 
  17983.  
  17984.   Create a new country 
  17985.  
  17986.       bool createNew() 
  17987.  
  17988.      Creates a new country/language table row.  LCP: CountryCreate 
  17989.      bool updateDatabase() 
  17990.  
  17991.      Save the current country with the data members that have changed.  LCP: 
  17992.      CountryUpdate 
  17993.      bool VerifyFields() 
  17994.  
  17995.      Verify that all required fields are filled in. 
  17996.  
  17997.   Retrieve data from the database 
  17998.      bool fetchAllCountries(vecString &AllCountries) 
  17999.  
  18000.      Fetch a list of all countries.  LCP: CountryAll 
  18001.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18002.  
  18003.      Fetch a paired list of countries and their native language descriptions, 
  18004.      sorted by english description.  LCP: CountryEngNat 
  18005.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18006.  
  18007.      Fetch a paired list of native language country descriptions, and the 
  18008.      english name of the country. 
  18009.      bool retrieveFromNetCode() 
  18010.  
  18011.      Determine the country that uses the currently set NetCode.  Fills all the 
  18012.      other country attributes with values. LCP: CountryAttNetCode 
  18013.      bool retrieveFromDesc() 
  18014.  
  18015.      Determine the country that uses the currently set description.  Fills all 
  18016.      the other country attributes with values.  LCP: CountryAttribs 
  18017.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18018.  
  18019.      Determine the primary language of the current country.  "Desc" must be 
  18020.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18021.      CountryPrimLang 
  18022.      bool getAllLanguages(vecString &Languages) 
  18023.  
  18024.      Determine all the languages used by the current country.  "Desc" must be 
  18025.      already set.  The result is returned in priority order (highest priority 
  18026.      first) in vecString &Languages.  LCP: CountryLanguages 
  18027.      bool getLanguageList(vecString &Languages) 
  18028.  
  18029.      Get a list of all possible languages, in alphabetical order, returned in 
  18030.      vecString &Languages.  LCP: CountryLangList 
  18031.      bool getLanguageListEngNat(mapString &Languages) 
  18032.  
  18033.      Get a map of all possible languages, their native description in 
  18034.      alphabetical order by english description, returned in in vecString 
  18035.      &Languages.  LCP: CountryLangListEngNat 
  18036.  
  18037.   Delete a country 
  18038.      bool deleteFromDesc() 
  18039.  
  18040.      Delete the country that uses the currently set description.  LCP: 
  18041.      CountryDelete 
  18042.  
  18043.   Set data members 
  18044.      bool setAll(mapString &FieldValues) 
  18045.  
  18046.      Sets all the data members of a topic using the mapString which is passed 
  18047.      to it.  Only the fields present in the mapString are updated, the other 
  18048.      fields are untouched.  LCP: CountryUpdate 
  18049.      bool setDesc(const string &DescSetting) 
  18050.  
  18051.      Set the short description 
  18052.      bool setDescLong(const string &DescLongSetting) 
  18053.  
  18054.      Set the long description 
  18055.      bool setDescNative(const string &DescNativeSetting) 
  18056.  
  18057.      Set the native language description 
  18058.      bool setNetCode(const string &NetCodeSetting) 
  18059.  
  18060.      Set the internet code for this country 
  18061.      bool erase() 
  18062.  
  18063.      Sets all the data members to empty 
  18064.  
  18065.   Get data members 
  18066.      bool getAll(mapString &FieldValues) 
  18067.  
  18068.      Return a mapString of all the data members of this topic. The key is the 
  18069.      variable name.  LCP: CountryAttribs 
  18070.      string getDesc() 
  18071.  
  18072.      Get the short description 
  18073.      string getDescLong() 
  18074.  
  18075.      Get the long description 
  18076.      string getDescNative() 
  18077.  
  18078.      Get the native language description 
  18079.      string getNetCode() 
  18080.  
  18081.      Get the internet code for this country 
  18082.  
  18083.  
  18084. ΓòÉΓòÉΓòÉ <hidden> ╨» ΓòÉΓòÉΓòÉ
  18085.  
  18086.  
  18087. lyris_Country Class 
  18088.  
  18089.      class lyris_Country 
  18090.  
  18091.      For determining what countries exist, and what languages are spoken & 
  18092.      preferred in each country 
  18093.  
  18094.      Defined in: COUNTRY.H 
  18095.  
  18096.   Create a new country 
  18097.  
  18098.       bool createNew() 
  18099.  
  18100.      Creates a new country/language table row.  LCP: CountryCreate 
  18101.      bool updateDatabase() 
  18102.  
  18103.      Save the current country with the data members that have changed.  LCP: 
  18104.      CountryUpdate 
  18105.      bool VerifyFields() 
  18106.  
  18107.      Verify that all required fields are filled in. 
  18108.  
  18109.   Retrieve data from the database 
  18110.      bool fetchAllCountries(vecString &AllCountries) 
  18111.  
  18112.      Fetch a list of all countries.  LCP: CountryAll 
  18113.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18114.  
  18115.      Fetch a paired list of countries and their native language descriptions, 
  18116.      sorted by english description.  LCP: CountryEngNat 
  18117.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18118.  
  18119.      Fetch a paired list of native language country descriptions, and the 
  18120.      english name of the country. 
  18121.      bool retrieveFromNetCode() 
  18122.  
  18123.      Determine the country that uses the currently set NetCode.  Fills all the 
  18124.      other country attributes with values. LCP: CountryAttNetCode 
  18125.      bool retrieveFromDesc() 
  18126.  
  18127.      Determine the country that uses the currently set description.  Fills all 
  18128.      the other country attributes with values.  LCP: CountryAttribs 
  18129.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18130.  
  18131.      Determine the primary language of the current country.  "Desc" must be 
  18132.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18133.      CountryPrimLang 
  18134.      bool getAllLanguages(vecString &Languages) 
  18135.  
  18136.      Determine all the languages used by the current country.  "Desc" must be 
  18137.      already set.  The result is returned in priority order (highest priority 
  18138.      first) in vecString &Languages.  LCP: CountryLanguages 
  18139.      bool getLanguageList(vecString &Languages) 
  18140.  
  18141.      Get a list of all possible languages, in alphabetical order, returned in 
  18142.      vecString &Languages.  LCP: CountryLangList 
  18143.      bool getLanguageListEngNat(mapString &Languages) 
  18144.  
  18145.      Get a map of all possible languages, their native description in 
  18146.      alphabetical order by english description, returned in in vecString 
  18147.      &Languages.  LCP: CountryLangListEngNat 
  18148.  
  18149.   Delete a country 
  18150.      bool deleteFromDesc() 
  18151.  
  18152.      Delete the country that uses the currently set description.  LCP: 
  18153.      CountryDelete 
  18154.  
  18155.   Set data members 
  18156.      bool setAll(mapString &FieldValues) 
  18157.  
  18158.      Sets all the data members of a topic using the mapString which is passed 
  18159.      to it.  Only the fields present in the mapString are updated, the other 
  18160.      fields are untouched.  LCP: CountryUpdate 
  18161.      bool setDesc(const string &DescSetting) 
  18162.  
  18163.      Set the short description 
  18164.      bool setDescLong(const string &DescLongSetting) 
  18165.  
  18166.      Set the long description 
  18167.      bool setDescNative(const string &DescNativeSetting) 
  18168.  
  18169.      Set the native language description 
  18170.      bool setNetCode(const string &NetCodeSetting) 
  18171.  
  18172.      Set the internet code for this country 
  18173.      bool erase() 
  18174.  
  18175.      Sets all the data members to empty 
  18176.  
  18177.   Get data members 
  18178.      bool getAll(mapString &FieldValues) 
  18179.  
  18180.      Return a mapString of all the data members of this topic. The key is the 
  18181.      variable name.  LCP: CountryAttribs 
  18182.      string getDesc() 
  18183.  
  18184.      Get the short description 
  18185.      string getDescLong() 
  18186.  
  18187.      Get the long description 
  18188.      string getDescNative() 
  18189.  
  18190.      Get the native language description 
  18191.      string getNetCode() 
  18192.  
  18193.      Get the internet code for this country 
  18194.  
  18195.  
  18196. ΓòÉΓòÉΓòÉ <hidden> ╨░ ΓòÉΓòÉΓòÉ
  18197.  
  18198.  
  18199. lyris_Country Class 
  18200.  
  18201.      class lyris_Country 
  18202.  
  18203.      For determining what countries exist, and what languages are spoken & 
  18204.      preferred in each country 
  18205.  
  18206.      Defined in: COUNTRY.H 
  18207.  
  18208.   Create a new country 
  18209.  
  18210.       bool createNew() 
  18211.  
  18212.      Creates a new country/language table row.  LCP: CountryCreate 
  18213.      bool updateDatabase() 
  18214.  
  18215.      Save the current country with the data members that have changed.  LCP: 
  18216.      CountryUpdate 
  18217.      bool VerifyFields() 
  18218.  
  18219.      Verify that all required fields are filled in. 
  18220.  
  18221.   Retrieve data from the database 
  18222.      bool fetchAllCountries(vecString &AllCountries) 
  18223.  
  18224.      Fetch a list of all countries.  LCP: CountryAll 
  18225.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18226.  
  18227.      Fetch a paired list of countries and their native language descriptions, 
  18228.      sorted by english description.  LCP: CountryEngNat 
  18229.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18230.  
  18231.      Fetch a paired list of native language country descriptions, and the 
  18232.      english name of the country. 
  18233.      bool retrieveFromNetCode() 
  18234.  
  18235.      Determine the country that uses the currently set NetCode.  Fills all the 
  18236.      other country attributes with values. LCP: CountryAttNetCode 
  18237.      bool retrieveFromDesc() 
  18238.  
  18239.      Determine the country that uses the currently set description.  Fills all 
  18240.      the other country attributes with values.  LCP: CountryAttribs 
  18241.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18242.  
  18243.      Determine the primary language of the current country.  "Desc" must be 
  18244.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18245.      CountryPrimLang 
  18246.      bool getAllLanguages(vecString &Languages) 
  18247.  
  18248.      Determine all the languages used by the current country.  "Desc" must be 
  18249.      already set.  The result is returned in priority order (highest priority 
  18250.      first) in vecString &Languages.  LCP: CountryLanguages 
  18251.      bool getLanguageList(vecString &Languages) 
  18252.  
  18253.      Get a list of all possible languages, in alphabetical order, returned in 
  18254.      vecString &Languages.  LCP: CountryLangList 
  18255.      bool getLanguageListEngNat(mapString &Languages) 
  18256.  
  18257.      Get a map of all possible languages, their native description in 
  18258.      alphabetical order by english description, returned in in vecString 
  18259.      &Languages.  LCP: CountryLangListEngNat 
  18260.  
  18261.   Delete a country 
  18262.      bool deleteFromDesc() 
  18263.  
  18264.      Delete the country that uses the currently set description.  LCP: 
  18265.      CountryDelete 
  18266.  
  18267.   Set data members 
  18268.      bool setAll(mapString &FieldValues) 
  18269.  
  18270.      Sets all the data members of a topic using the mapString which is passed 
  18271.      to it.  Only the fields present in the mapString are updated, the other 
  18272.      fields are untouched.  LCP: CountryUpdate 
  18273.      bool setDesc(const string &DescSetting) 
  18274.  
  18275.      Set the short description 
  18276.      bool setDescLong(const string &DescLongSetting) 
  18277.  
  18278.      Set the long description 
  18279.      bool setDescNative(const string &DescNativeSetting) 
  18280.  
  18281.      Set the native language description 
  18282.      bool setNetCode(const string &NetCodeSetting) 
  18283.  
  18284.      Set the internet code for this country 
  18285.      bool erase() 
  18286.  
  18287.      Sets all the data members to empty 
  18288.  
  18289.   Get data members 
  18290.      bool getAll(mapString &FieldValues) 
  18291.  
  18292.      Return a mapString of all the data members of this topic. The key is the 
  18293.      variable name.  LCP: CountryAttribs 
  18294.      string getDesc() 
  18295.  
  18296.      Get the short description 
  18297.      string getDescLong() 
  18298.  
  18299.      Get the long description 
  18300.      string getDescNative() 
  18301.  
  18302.      Get the native language description 
  18303.      string getNetCode() 
  18304.  
  18305.      Get the internet code for this country 
  18306.  
  18307.  
  18308. ΓòÉΓòÉΓòÉ <hidden> ╨▒ ΓòÉΓòÉΓòÉ
  18309.  
  18310.  
  18311. lyris_Country Class 
  18312.  
  18313.      class lyris_Country 
  18314.  
  18315.      For determining what countries exist, and what languages are spoken & 
  18316.      preferred in each country 
  18317.  
  18318.      Defined in: COUNTRY.H 
  18319.  
  18320.   Create a new country 
  18321.  
  18322.       bool createNew() 
  18323.  
  18324.      Creates a new country/language table row.  LCP: CountryCreate 
  18325.      bool updateDatabase() 
  18326.  
  18327.      Save the current country with the data members that have changed.  LCP: 
  18328.      CountryUpdate 
  18329.      bool VerifyFields() 
  18330.  
  18331.      Verify that all required fields are filled in. 
  18332.  
  18333.   Retrieve data from the database 
  18334.      bool fetchAllCountries(vecString &AllCountries) 
  18335.  
  18336.      Fetch a list of all countries.  LCP: CountryAll 
  18337.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18338.  
  18339.      Fetch a paired list of countries and their native language descriptions, 
  18340.      sorted by english description.  LCP: CountryEngNat 
  18341.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18342.  
  18343.      Fetch a paired list of native language country descriptions, and the 
  18344.      english name of the country. 
  18345.      bool retrieveFromNetCode() 
  18346.  
  18347.      Determine the country that uses the currently set NetCode.  Fills all the 
  18348.      other country attributes with values. LCP: CountryAttNetCode 
  18349.      bool retrieveFromDesc() 
  18350.  
  18351.      Determine the country that uses the currently set description.  Fills all 
  18352.      the other country attributes with values.  LCP: CountryAttribs 
  18353.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18354.  
  18355.      Determine the primary language of the current country.  "Desc" must be 
  18356.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18357.      CountryPrimLang 
  18358.      bool getAllLanguages(vecString &Languages) 
  18359.  
  18360.      Determine all the languages used by the current country.  "Desc" must be 
  18361.      already set.  The result is returned in priority order (highest priority 
  18362.      first) in vecString &Languages.  LCP: CountryLanguages 
  18363.      bool getLanguageList(vecString &Languages) 
  18364.  
  18365.      Get a list of all possible languages, in alphabetical order, returned in 
  18366.      vecString &Languages.  LCP: CountryLangList 
  18367.      bool getLanguageListEngNat(mapString &Languages) 
  18368.  
  18369.      Get a map of all possible languages, their native description in 
  18370.      alphabetical order by english description, returned in in vecString 
  18371.      &Languages.  LCP: CountryLangListEngNat 
  18372.  
  18373.   Delete a country 
  18374.      bool deleteFromDesc() 
  18375.  
  18376.      Delete the country that uses the currently set description.  LCP: 
  18377.      CountryDelete 
  18378.  
  18379.   Set data members 
  18380.      bool setAll(mapString &FieldValues) 
  18381.  
  18382.      Sets all the data members of a topic using the mapString which is passed 
  18383.      to it.  Only the fields present in the mapString are updated, the other 
  18384.      fields are untouched.  LCP: CountryUpdate 
  18385.      bool setDesc(const string &DescSetting) 
  18386.  
  18387.      Set the short description 
  18388.      bool setDescLong(const string &DescLongSetting) 
  18389.  
  18390.      Set the long description 
  18391.      bool setDescNative(const string &DescNativeSetting) 
  18392.  
  18393.      Set the native language description 
  18394.      bool setNetCode(const string &NetCodeSetting) 
  18395.  
  18396.      Set the internet code for this country 
  18397.      bool erase() 
  18398.  
  18399.      Sets all the data members to empty 
  18400.  
  18401.   Get data members 
  18402.      bool getAll(mapString &FieldValues) 
  18403.  
  18404.      Return a mapString of all the data members of this topic. The key is the 
  18405.      variable name.  LCP: CountryAttribs 
  18406.      string getDesc() 
  18407.  
  18408.      Get the short description 
  18409.      string getDescLong() 
  18410.  
  18411.      Get the long description 
  18412.      string getDescNative() 
  18413.  
  18414.      Get the native language description 
  18415.      string getNetCode() 
  18416.  
  18417.      Get the internet code for this country 
  18418.  
  18419.  
  18420. ΓòÉΓòÉΓòÉ <hidden> ╨▓ ΓòÉΓòÉΓòÉ
  18421.  
  18422.  
  18423. lyris_Country Class 
  18424.  
  18425.      class lyris_Country 
  18426.  
  18427.      For determining what countries exist, and what languages are spoken & 
  18428.      preferred in each country 
  18429.  
  18430.      Defined in: COUNTRY.H 
  18431.  
  18432.   Create a new country 
  18433.  
  18434.       bool createNew() 
  18435.  
  18436.      Creates a new country/language table row.  LCP: CountryCreate 
  18437.      bool updateDatabase() 
  18438.  
  18439.      Save the current country with the data members that have changed.  LCP: 
  18440.      CountryUpdate 
  18441.      bool VerifyFields() 
  18442.  
  18443.      Verify that all required fields are filled in. 
  18444.  
  18445.   Retrieve data from the database 
  18446.      bool fetchAllCountries(vecString &AllCountries) 
  18447.  
  18448.      Fetch a list of all countries.  LCP: CountryAll 
  18449.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18450.  
  18451.      Fetch a paired list of countries and their native language descriptions, 
  18452.      sorted by english description.  LCP: CountryEngNat 
  18453.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18454.  
  18455.      Fetch a paired list of native language country descriptions, and the 
  18456.      english name of the country. 
  18457.      bool retrieveFromNetCode() 
  18458.  
  18459.      Determine the country that uses the currently set NetCode.  Fills all the 
  18460.      other country attributes with values. LCP: CountryAttNetCode 
  18461.      bool retrieveFromDesc() 
  18462.  
  18463.      Determine the country that uses the currently set description.  Fills all 
  18464.      the other country attributes with values.  LCP: CountryAttribs 
  18465.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18466.  
  18467.      Determine the primary language of the current country.  "Desc" must be 
  18468.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18469.      CountryPrimLang 
  18470.      bool getAllLanguages(vecString &Languages) 
  18471.  
  18472.      Determine all the languages used by the current country.  "Desc" must be 
  18473.      already set.  The result is returned in priority order (highest priority 
  18474.      first) in vecString &Languages.  LCP: CountryLanguages 
  18475.      bool getLanguageList(vecString &Languages) 
  18476.  
  18477.      Get a list of all possible languages, in alphabetical order, returned in 
  18478.      vecString &Languages.  LCP: CountryLangList 
  18479.      bool getLanguageListEngNat(mapString &Languages) 
  18480.  
  18481.      Get a map of all possible languages, their native description in 
  18482.      alphabetical order by english description, returned in in vecString 
  18483.      &Languages.  LCP: CountryLangListEngNat 
  18484.  
  18485.   Delete a country 
  18486.      bool deleteFromDesc() 
  18487.  
  18488.      Delete the country that uses the currently set description.  LCP: 
  18489.      CountryDelete 
  18490.  
  18491.   Set data members 
  18492.      bool setAll(mapString &FieldValues) 
  18493.  
  18494.      Sets all the data members of a topic using the mapString which is passed 
  18495.      to it.  Only the fields present in the mapString are updated, the other 
  18496.      fields are untouched.  LCP: CountryUpdate 
  18497.      bool setDesc(const string &DescSetting) 
  18498.  
  18499.      Set the short description 
  18500.      bool setDescLong(const string &DescLongSetting) 
  18501.  
  18502.      Set the long description 
  18503.      bool setDescNative(const string &DescNativeSetting) 
  18504.  
  18505.      Set the native language description 
  18506.      bool setNetCode(const string &NetCodeSetting) 
  18507.  
  18508.      Set the internet code for this country 
  18509.      bool erase() 
  18510.  
  18511.      Sets all the data members to empty 
  18512.  
  18513.   Get data members 
  18514.      bool getAll(mapString &FieldValues) 
  18515.  
  18516.      Return a mapString of all the data members of this topic. The key is the 
  18517.      variable name.  LCP: CountryAttribs 
  18518.      string getDesc() 
  18519.  
  18520.      Get the short description 
  18521.      string getDescLong() 
  18522.  
  18523.      Get the long description 
  18524.      string getDescNative() 
  18525.  
  18526.      Get the native language description 
  18527.      string getNetCode() 
  18528.  
  18529.      Get the internet code for this country 
  18530.  
  18531.  
  18532. ΓòÉΓòÉΓòÉ <hidden> ╨│ ΓòÉΓòÉΓòÉ
  18533.  
  18534.  
  18535. lyris_Country Class 
  18536.  
  18537.      class lyris_Country 
  18538.  
  18539.      For determining what countries exist, and what languages are spoken & 
  18540.      preferred in each country 
  18541.  
  18542.      Defined in: COUNTRY.H 
  18543.  
  18544.   Create a new country 
  18545.  
  18546.       bool createNew() 
  18547.  
  18548.      Creates a new country/language table row.  LCP: CountryCreate 
  18549.      bool updateDatabase() 
  18550.  
  18551.      Save the current country with the data members that have changed.  LCP: 
  18552.      CountryUpdate 
  18553.      bool VerifyFields() 
  18554.  
  18555.      Verify that all required fields are filled in. 
  18556.  
  18557.   Retrieve data from the database 
  18558.      bool fetchAllCountries(vecString &AllCountries) 
  18559.  
  18560.      Fetch a list of all countries.  LCP: CountryAll 
  18561.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18562.  
  18563.      Fetch a paired list of countries and their native language descriptions, 
  18564.      sorted by english description.  LCP: CountryEngNat 
  18565.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18566.  
  18567.      Fetch a paired list of native language country descriptions, and the 
  18568.      english name of the country. 
  18569.      bool retrieveFromNetCode() 
  18570.  
  18571.      Determine the country that uses the currently set NetCode.  Fills all the 
  18572.      other country attributes with values. LCP: CountryAttNetCode 
  18573.      bool retrieveFromDesc() 
  18574.  
  18575.      Determine the country that uses the currently set description.  Fills all 
  18576.      the other country attributes with values.  LCP: CountryAttribs 
  18577.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18578.  
  18579.      Determine the primary language of the current country.  "Desc" must be 
  18580.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18581.      CountryPrimLang 
  18582.      bool getAllLanguages(vecString &Languages) 
  18583.  
  18584.      Determine all the languages used by the current country.  "Desc" must be 
  18585.      already set.  The result is returned in priority order (highest priority 
  18586.      first) in vecString &Languages.  LCP: CountryLanguages 
  18587.      bool getLanguageList(vecString &Languages) 
  18588.  
  18589.      Get a list of all possible languages, in alphabetical order, returned in 
  18590.      vecString &Languages.  LCP: CountryLangList 
  18591.      bool getLanguageListEngNat(mapString &Languages) 
  18592.  
  18593.      Get a map of all possible languages, their native description in 
  18594.      alphabetical order by english description, returned in in vecString 
  18595.      &Languages.  LCP: CountryLangListEngNat 
  18596.  
  18597.   Delete a country 
  18598.      bool deleteFromDesc() 
  18599.  
  18600.      Delete the country that uses the currently set description.  LCP: 
  18601.      CountryDelete 
  18602.  
  18603.   Set data members 
  18604.      bool setAll(mapString &FieldValues) 
  18605.  
  18606.      Sets all the data members of a topic using the mapString which is passed 
  18607.      to it.  Only the fields present in the mapString are updated, the other 
  18608.      fields are untouched.  LCP: CountryUpdate 
  18609.      bool setDesc(const string &DescSetting) 
  18610.  
  18611.      Set the short description 
  18612.      bool setDescLong(const string &DescLongSetting) 
  18613.  
  18614.      Set the long description 
  18615.      bool setDescNative(const string &DescNativeSetting) 
  18616.  
  18617.      Set the native language description 
  18618.      bool setNetCode(const string &NetCodeSetting) 
  18619.  
  18620.      Set the internet code for this country 
  18621.      bool erase() 
  18622.  
  18623.      Sets all the data members to empty 
  18624.  
  18625.   Get data members 
  18626.      bool getAll(mapString &FieldValues) 
  18627.  
  18628.      Return a mapString of all the data members of this topic. The key is the 
  18629.      variable name.  LCP: CountryAttribs 
  18630.      string getDesc() 
  18631.  
  18632.      Get the short description 
  18633.      string getDescLong() 
  18634.  
  18635.      Get the long description 
  18636.      string getDescNative() 
  18637.  
  18638.      Get the native language description 
  18639.      string getNetCode() 
  18640.  
  18641.      Get the internet code for this country 
  18642.  
  18643.  
  18644. ΓòÉΓòÉΓòÉ <hidden> ╨┤ ΓòÉΓòÉΓòÉ
  18645.  
  18646.  
  18647. lyris_Country Class 
  18648.  
  18649.      class lyris_Country 
  18650.  
  18651.      For determining what countries exist, and what languages are spoken & 
  18652.      preferred in each country 
  18653.  
  18654.      Defined in: COUNTRY.H 
  18655.  
  18656.   Create a new country 
  18657.  
  18658.       bool createNew() 
  18659.  
  18660.      Creates a new country/language table row.  LCP: CountryCreate 
  18661.      bool updateDatabase() 
  18662.  
  18663.      Save the current country with the data members that have changed.  LCP: 
  18664.      CountryUpdate 
  18665.      bool VerifyFields() 
  18666.  
  18667.      Verify that all required fields are filled in. 
  18668.  
  18669.   Retrieve data from the database 
  18670.      bool fetchAllCountries(vecString &AllCountries) 
  18671.  
  18672.      Fetch a list of all countries.  LCP: CountryAll 
  18673.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18674.  
  18675.      Fetch a paired list of countries and their native language descriptions, 
  18676.      sorted by english description.  LCP: CountryEngNat 
  18677.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18678.  
  18679.      Fetch a paired list of native language country descriptions, and the 
  18680.      english name of the country. 
  18681.      bool retrieveFromNetCode() 
  18682.  
  18683.      Determine the country that uses the currently set NetCode.  Fills all the 
  18684.      other country attributes with values. LCP: CountryAttNetCode 
  18685.      bool retrieveFromDesc() 
  18686.  
  18687.      Determine the country that uses the currently set description.  Fills all 
  18688.      the other country attributes with values.  LCP: CountryAttribs 
  18689.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18690.  
  18691.      Determine the primary language of the current country.  "Desc" must be 
  18692.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18693.      CountryPrimLang 
  18694.      bool getAllLanguages(vecString &Languages) 
  18695.  
  18696.      Determine all the languages used by the current country.  "Desc" must be 
  18697.      already set.  The result is returned in priority order (highest priority 
  18698.      first) in vecString &Languages.  LCP: CountryLanguages 
  18699.      bool getLanguageList(vecString &Languages) 
  18700.  
  18701.      Get a list of all possible languages, in alphabetical order, returned in 
  18702.      vecString &Languages.  LCP: CountryLangList 
  18703.      bool getLanguageListEngNat(mapString &Languages) 
  18704.  
  18705.      Get a map of all possible languages, their native description in 
  18706.      alphabetical order by english description, returned in in vecString 
  18707.      &Languages.  LCP: CountryLangListEngNat 
  18708.  
  18709.   Delete a country 
  18710.      bool deleteFromDesc() 
  18711.  
  18712.      Delete the country that uses the currently set description.  LCP: 
  18713.      CountryDelete 
  18714.  
  18715.   Set data members 
  18716.      bool setAll(mapString &FieldValues) 
  18717.  
  18718.      Sets all the data members of a topic using the mapString which is passed 
  18719.      to it.  Only the fields present in the mapString are updated, the other 
  18720.      fields are untouched.  LCP: CountryUpdate 
  18721.      bool setDesc(const string &DescSetting) 
  18722.  
  18723.      Set the short description 
  18724.      bool setDescLong(const string &DescLongSetting) 
  18725.  
  18726.      Set the long description 
  18727.      bool setDescNative(const string &DescNativeSetting) 
  18728.  
  18729.      Set the native language description 
  18730.      bool setNetCode(const string &NetCodeSetting) 
  18731.  
  18732.      Set the internet code for this country 
  18733.      bool erase() 
  18734.  
  18735.      Sets all the data members to empty 
  18736.  
  18737.   Get data members 
  18738.      bool getAll(mapString &FieldValues) 
  18739.  
  18740.      Return a mapString of all the data members of this topic. The key is the 
  18741.      variable name.  LCP: CountryAttribs 
  18742.      string getDesc() 
  18743.  
  18744.      Get the short description 
  18745.      string getDescLong() 
  18746.  
  18747.      Get the long description 
  18748.      string getDescNative() 
  18749.  
  18750.      Get the native language description 
  18751.      string getNetCode() 
  18752.  
  18753.      Get the internet code for this country 
  18754.  
  18755.  
  18756. ΓòÉΓòÉΓòÉ <hidden> ╨╡ ΓòÉΓòÉΓòÉ
  18757.  
  18758.  
  18759. lyris_Country Class 
  18760.  
  18761.      class lyris_Country 
  18762.  
  18763.      For determining what countries exist, and what languages are spoken & 
  18764.      preferred in each country 
  18765.  
  18766.      Defined in: COUNTRY.H 
  18767.  
  18768.   Create a new country 
  18769.  
  18770.       bool createNew() 
  18771.  
  18772.      Creates a new country/language table row.  LCP: CountryCreate 
  18773.      bool updateDatabase() 
  18774.  
  18775.      Save the current country with the data members that have changed.  LCP: 
  18776.      CountryUpdate 
  18777.      bool VerifyFields() 
  18778.  
  18779.      Verify that all required fields are filled in. 
  18780.  
  18781.   Retrieve data from the database 
  18782.      bool fetchAllCountries(vecString &AllCountries) 
  18783.  
  18784.      Fetch a list of all countries.  LCP: CountryAll 
  18785.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18786.  
  18787.      Fetch a paired list of countries and their native language descriptions, 
  18788.      sorted by english description.  LCP: CountryEngNat 
  18789.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18790.  
  18791.      Fetch a paired list of native language country descriptions, and the 
  18792.      english name of the country. 
  18793.      bool retrieveFromNetCode() 
  18794.  
  18795.      Determine the country that uses the currently set NetCode.  Fills all the 
  18796.      other country attributes with values. LCP: CountryAttNetCode 
  18797.      bool retrieveFromDesc() 
  18798.  
  18799.      Determine the country that uses the currently set description.  Fills all 
  18800.      the other country attributes with values.  LCP: CountryAttribs 
  18801.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18802.  
  18803.      Determine the primary language of the current country.  "Desc" must be 
  18804.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18805.      CountryPrimLang 
  18806.      bool getAllLanguages(vecString &Languages) 
  18807.  
  18808.      Determine all the languages used by the current country.  "Desc" must be 
  18809.      already set.  The result is returned in priority order (highest priority 
  18810.      first) in vecString &Languages.  LCP: CountryLanguages 
  18811.      bool getLanguageList(vecString &Languages) 
  18812.  
  18813.      Get a list of all possible languages, in alphabetical order, returned in 
  18814.      vecString &Languages.  LCP: CountryLangList 
  18815.      bool getLanguageListEngNat(mapString &Languages) 
  18816.  
  18817.      Get a map of all possible languages, their native description in 
  18818.      alphabetical order by english description, returned in in vecString 
  18819.      &Languages.  LCP: CountryLangListEngNat 
  18820.  
  18821.   Delete a country 
  18822.      bool deleteFromDesc() 
  18823.  
  18824.      Delete the country that uses the currently set description.  LCP: 
  18825.      CountryDelete 
  18826.  
  18827.   Set data members 
  18828.      bool setAll(mapString &FieldValues) 
  18829.  
  18830.      Sets all the data members of a topic using the mapString which is passed 
  18831.      to it.  Only the fields present in the mapString are updated, the other 
  18832.      fields are untouched.  LCP: CountryUpdate 
  18833.      bool setDesc(const string &DescSetting) 
  18834.  
  18835.      Set the short description 
  18836.      bool setDescLong(const string &DescLongSetting) 
  18837.  
  18838.      Set the long description 
  18839.      bool setDescNative(const string &DescNativeSetting) 
  18840.  
  18841.      Set the native language description 
  18842.      bool setNetCode(const string &NetCodeSetting) 
  18843.  
  18844.      Set the internet code for this country 
  18845.      bool erase() 
  18846.  
  18847.      Sets all the data members to empty 
  18848.  
  18849.   Get data members 
  18850.      bool getAll(mapString &FieldValues) 
  18851.  
  18852.      Return a mapString of all the data members of this topic. The key is the 
  18853.      variable name.  LCP: CountryAttribs 
  18854.      string getDesc() 
  18855.  
  18856.      Get the short description 
  18857.      string getDescLong() 
  18858.  
  18859.      Get the long description 
  18860.      string getDescNative() 
  18861.  
  18862.      Get the native language description 
  18863.      string getNetCode() 
  18864.  
  18865.      Get the internet code for this country 
  18866.  
  18867.  
  18868. ΓòÉΓòÉΓòÉ <hidden> ╨╢ ΓòÉΓòÉΓòÉ
  18869.  
  18870.  
  18871. lyris_Country Class 
  18872.  
  18873.      class lyris_Country 
  18874.  
  18875.      For determining what countries exist, and what languages are spoken & 
  18876.      preferred in each country 
  18877.  
  18878.      Defined in: COUNTRY.H 
  18879.  
  18880.   Create a new country 
  18881.  
  18882.       bool createNew() 
  18883.  
  18884.      Creates a new country/language table row.  LCP: CountryCreate 
  18885.      bool updateDatabase() 
  18886.  
  18887.      Save the current country with the data members that have changed.  LCP: 
  18888.      CountryUpdate 
  18889.      bool VerifyFields() 
  18890.  
  18891.      Verify that all required fields are filled in. 
  18892.  
  18893.   Retrieve data from the database 
  18894.      bool fetchAllCountries(vecString &AllCountries) 
  18895.  
  18896.      Fetch a list of all countries.  LCP: CountryAll 
  18897.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  18898.  
  18899.      Fetch a paired list of countries and their native language descriptions, 
  18900.      sorted by english description.  LCP: CountryEngNat 
  18901.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  18902.  
  18903.      Fetch a paired list of native language country descriptions, and the 
  18904.      english name of the country. 
  18905.      bool retrieveFromNetCode() 
  18906.  
  18907.      Determine the country that uses the currently set NetCode.  Fills all the 
  18908.      other country attributes with values. LCP: CountryAttNetCode 
  18909.      bool retrieveFromDesc() 
  18910.  
  18911.      Determine the country that uses the currently set description.  Fills all 
  18912.      the other country attributes with values.  LCP: CountryAttribs 
  18913.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  18914.  
  18915.      Determine the primary language of the current country.  "Desc" must be 
  18916.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  18917.      CountryPrimLang 
  18918.      bool getAllLanguages(vecString &Languages) 
  18919.  
  18920.      Determine all the languages used by the current country.  "Desc" must be 
  18921.      already set.  The result is returned in priority order (highest priority 
  18922.      first) in vecString &Languages.  LCP: CountryLanguages 
  18923.      bool getLanguageList(vecString &Languages) 
  18924.  
  18925.      Get a list of all possible languages, in alphabetical order, returned in 
  18926.      vecString &Languages.  LCP: CountryLangList 
  18927.      bool getLanguageListEngNat(mapString &Languages) 
  18928.  
  18929.      Get a map of all possible languages, their native description in 
  18930.      alphabetical order by english description, returned in in vecString 
  18931.      &Languages.  LCP: CountryLangListEngNat 
  18932.  
  18933.   Delete a country 
  18934.      bool deleteFromDesc() 
  18935.  
  18936.      Delete the country that uses the currently set description.  LCP: 
  18937.      CountryDelete 
  18938.  
  18939.   Set data members 
  18940.      bool setAll(mapString &FieldValues) 
  18941.  
  18942.      Sets all the data members of a topic using the mapString which is passed 
  18943.      to it.  Only the fields present in the mapString are updated, the other 
  18944.      fields are untouched.  LCP: CountryUpdate 
  18945.      bool setDesc(const string &DescSetting) 
  18946.  
  18947.      Set the short description 
  18948.      bool setDescLong(const string &DescLongSetting) 
  18949.  
  18950.      Set the long description 
  18951.      bool setDescNative(const string &DescNativeSetting) 
  18952.  
  18953.      Set the native language description 
  18954.      bool setNetCode(const string &NetCodeSetting) 
  18955.  
  18956.      Set the internet code for this country 
  18957.      bool erase() 
  18958.  
  18959.      Sets all the data members to empty 
  18960.  
  18961.   Get data members 
  18962.      bool getAll(mapString &FieldValues) 
  18963.  
  18964.      Return a mapString of all the data members of this topic. The key is the 
  18965.      variable name.  LCP: CountryAttribs 
  18966.      string getDesc() 
  18967.  
  18968.      Get the short description 
  18969.      string getDescLong() 
  18970.  
  18971.      Get the long description 
  18972.      string getDescNative() 
  18973.  
  18974.      Get the native language description 
  18975.      string getNetCode() 
  18976.  
  18977.      Get the internet code for this country 
  18978.  
  18979.  
  18980. ΓòÉΓòÉΓòÉ <hidden> ╨╖ ΓòÉΓòÉΓòÉ
  18981.  
  18982.  
  18983. lyris_Country Class 
  18984.  
  18985.      class lyris_Country 
  18986.  
  18987.      For determining what countries exist, and what languages are spoken & 
  18988.      preferred in each country 
  18989.  
  18990.      Defined in: COUNTRY.H 
  18991.  
  18992.   Create a new country 
  18993.  
  18994.       bool createNew() 
  18995.  
  18996.      Creates a new country/language table row.  LCP: CountryCreate 
  18997.      bool updateDatabase() 
  18998.  
  18999.      Save the current country with the data members that have changed.  LCP: 
  19000.      CountryUpdate 
  19001.      bool VerifyFields() 
  19002.  
  19003.      Verify that all required fields are filled in. 
  19004.  
  19005.   Retrieve data from the database 
  19006.      bool fetchAllCountries(vecString &AllCountries) 
  19007.  
  19008.      Fetch a list of all countries.  LCP: CountryAll 
  19009.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19010.  
  19011.      Fetch a paired list of countries and their native language descriptions, 
  19012.      sorted by english description.  LCP: CountryEngNat 
  19013.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19014.  
  19015.      Fetch a paired list of native language country descriptions, and the 
  19016.      english name of the country. 
  19017.      bool retrieveFromNetCode() 
  19018.  
  19019.      Determine the country that uses the currently set NetCode.  Fills all the 
  19020.      other country attributes with values. LCP: CountryAttNetCode 
  19021.      bool retrieveFromDesc() 
  19022.  
  19023.      Determine the country that uses the currently set description.  Fills all 
  19024.      the other country attributes with values.  LCP: CountryAttribs 
  19025.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19026.  
  19027.      Determine the primary language of the current country.  "Desc" must be 
  19028.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19029.      CountryPrimLang 
  19030.      bool getAllLanguages(vecString &Languages) 
  19031.  
  19032.      Determine all the languages used by the current country.  "Desc" must be 
  19033.      already set.  The result is returned in priority order (highest priority 
  19034.      first) in vecString &Languages.  LCP: CountryLanguages 
  19035.      bool getLanguageList(vecString &Languages) 
  19036.  
  19037.      Get a list of all possible languages, in alphabetical order, returned in 
  19038.      vecString &Languages.  LCP: CountryLangList 
  19039.      bool getLanguageListEngNat(mapString &Languages) 
  19040.  
  19041.      Get a map of all possible languages, their native description in 
  19042.      alphabetical order by english description, returned in in vecString 
  19043.      &Languages.  LCP: CountryLangListEngNat 
  19044.  
  19045.   Delete a country 
  19046.      bool deleteFromDesc() 
  19047.  
  19048.      Delete the country that uses the currently set description.  LCP: 
  19049.      CountryDelete 
  19050.  
  19051.   Set data members 
  19052.      bool setAll(mapString &FieldValues) 
  19053.  
  19054.      Sets all the data members of a topic using the mapString which is passed 
  19055.      to it.  Only the fields present in the mapString are updated, the other 
  19056.      fields are untouched.  LCP: CountryUpdate 
  19057.      bool setDesc(const string &DescSetting) 
  19058.  
  19059.      Set the short description 
  19060.      bool setDescLong(const string &DescLongSetting) 
  19061.  
  19062.      Set the long description 
  19063.      bool setDescNative(const string &DescNativeSetting) 
  19064.  
  19065.      Set the native language description 
  19066.      bool setNetCode(const string &NetCodeSetting) 
  19067.  
  19068.      Set the internet code for this country 
  19069.      bool erase() 
  19070.  
  19071.      Sets all the data members to empty 
  19072.  
  19073.   Get data members 
  19074.      bool getAll(mapString &FieldValues) 
  19075.  
  19076.      Return a mapString of all the data members of this topic. The key is the 
  19077.      variable name.  LCP: CountryAttribs 
  19078.      string getDesc() 
  19079.  
  19080.      Get the short description 
  19081.      string getDescLong() 
  19082.  
  19083.      Get the long description 
  19084.      string getDescNative() 
  19085.  
  19086.      Get the native language description 
  19087.      string getNetCode() 
  19088.  
  19089.      Get the internet code for this country 
  19090.  
  19091.  
  19092. ΓòÉΓòÉΓòÉ <hidden> ╨╕ ΓòÉΓòÉΓòÉ
  19093.  
  19094.  
  19095. lyris_Country Class 
  19096.  
  19097.      class lyris_Country 
  19098.  
  19099.      For determining what countries exist, and what languages are spoken & 
  19100.      preferred in each country 
  19101.  
  19102.      Defined in: COUNTRY.H 
  19103.  
  19104.   Create a new country 
  19105.  
  19106.       bool createNew() 
  19107.  
  19108.      Creates a new country/language table row.  LCP: CountryCreate 
  19109.      bool updateDatabase() 
  19110.  
  19111.      Save the current country with the data members that have changed.  LCP: 
  19112.      CountryUpdate 
  19113.      bool VerifyFields() 
  19114.  
  19115.      Verify that all required fields are filled in. 
  19116.  
  19117.   Retrieve data from the database 
  19118.      bool fetchAllCountries(vecString &AllCountries) 
  19119.  
  19120.      Fetch a list of all countries.  LCP: CountryAll 
  19121.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19122.  
  19123.      Fetch a paired list of countries and their native language descriptions, 
  19124.      sorted by english description.  LCP: CountryEngNat 
  19125.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19126.  
  19127.      Fetch a paired list of native language country descriptions, and the 
  19128.      english name of the country. 
  19129.      bool retrieveFromNetCode() 
  19130.  
  19131.      Determine the country that uses the currently set NetCode.  Fills all the 
  19132.      other country attributes with values. LCP: CountryAttNetCode 
  19133.      bool retrieveFromDesc() 
  19134.  
  19135.      Determine the country that uses the currently set description.  Fills all 
  19136.      the other country attributes with values.  LCP: CountryAttribs 
  19137.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19138.  
  19139.      Determine the primary language of the current country.  "Desc" must be 
  19140.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19141.      CountryPrimLang 
  19142.      bool getAllLanguages(vecString &Languages) 
  19143.  
  19144.      Determine all the languages used by the current country.  "Desc" must be 
  19145.      already set.  The result is returned in priority order (highest priority 
  19146.      first) in vecString &Languages.  LCP: CountryLanguages 
  19147.      bool getLanguageList(vecString &Languages) 
  19148.  
  19149.      Get a list of all possible languages, in alphabetical order, returned in 
  19150.      vecString &Languages.  LCP: CountryLangList 
  19151.      bool getLanguageListEngNat(mapString &Languages) 
  19152.  
  19153.      Get a map of all possible languages, their native description in 
  19154.      alphabetical order by english description, returned in in vecString 
  19155.      &Languages.  LCP: CountryLangListEngNat 
  19156.  
  19157.   Delete a country 
  19158.      bool deleteFromDesc() 
  19159.  
  19160.      Delete the country that uses the currently set description.  LCP: 
  19161.      CountryDelete 
  19162.  
  19163.   Set data members 
  19164.      bool setAll(mapString &FieldValues) 
  19165.  
  19166.      Sets all the data members of a topic using the mapString which is passed 
  19167.      to it.  Only the fields present in the mapString are updated, the other 
  19168.      fields are untouched.  LCP: CountryUpdate 
  19169.      bool setDesc(const string &DescSetting) 
  19170.  
  19171.      Set the short description 
  19172.      bool setDescLong(const string &DescLongSetting) 
  19173.  
  19174.      Set the long description 
  19175.      bool setDescNative(const string &DescNativeSetting) 
  19176.  
  19177.      Set the native language description 
  19178.      bool setNetCode(const string &NetCodeSetting) 
  19179.  
  19180.      Set the internet code for this country 
  19181.      bool erase() 
  19182.  
  19183.      Sets all the data members to empty 
  19184.  
  19185.   Get data members 
  19186.      bool getAll(mapString &FieldValues) 
  19187.  
  19188.      Return a mapString of all the data members of this topic. The key is the 
  19189.      variable name.  LCP: CountryAttribs 
  19190.      string getDesc() 
  19191.  
  19192.      Get the short description 
  19193.      string getDescLong() 
  19194.  
  19195.      Get the long description 
  19196.      string getDescNative() 
  19197.  
  19198.      Get the native language description 
  19199.      string getNetCode() 
  19200.  
  19201.      Get the internet code for this country 
  19202.  
  19203.  
  19204. ΓòÉΓòÉΓòÉ <hidden> ╨╣ ΓòÉΓòÉΓòÉ
  19205.  
  19206.  
  19207. lyris_Country Class 
  19208.  
  19209.      class lyris_Country 
  19210.  
  19211.      For determining what countries exist, and what languages are spoken & 
  19212.      preferred in each country 
  19213.  
  19214.      Defined in: COUNTRY.H 
  19215.  
  19216.   Create a new country 
  19217.  
  19218.       bool createNew() 
  19219.  
  19220.      Creates a new country/language table row.  LCP: CountryCreate 
  19221.      bool updateDatabase() 
  19222.  
  19223.      Save the current country with the data members that have changed.  LCP: 
  19224.      CountryUpdate 
  19225.      bool VerifyFields() 
  19226.  
  19227.      Verify that all required fields are filled in. 
  19228.  
  19229.   Retrieve data from the database 
  19230.      bool fetchAllCountries(vecString &AllCountries) 
  19231.  
  19232.      Fetch a list of all countries.  LCP: CountryAll 
  19233.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19234.  
  19235.      Fetch a paired list of countries and their native language descriptions, 
  19236.      sorted by english description.  LCP: CountryEngNat 
  19237.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19238.  
  19239.      Fetch a paired list of native language country descriptions, and the 
  19240.      english name of the country. 
  19241.      bool retrieveFromNetCode() 
  19242.  
  19243.      Determine the country that uses the currently set NetCode.  Fills all the 
  19244.      other country attributes with values. LCP: CountryAttNetCode 
  19245.      bool retrieveFromDesc() 
  19246.  
  19247.      Determine the country that uses the currently set description.  Fills all 
  19248.      the other country attributes with values.  LCP: CountryAttribs 
  19249.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19250.  
  19251.      Determine the primary language of the current country.  "Desc" must be 
  19252.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19253.      CountryPrimLang 
  19254.      bool getAllLanguages(vecString &Languages) 
  19255.  
  19256.      Determine all the languages used by the current country.  "Desc" must be 
  19257.      already set.  The result is returned in priority order (highest priority 
  19258.      first) in vecString &Languages.  LCP: CountryLanguages 
  19259.      bool getLanguageList(vecString &Languages) 
  19260.  
  19261.      Get a list of all possible languages, in alphabetical order, returned in 
  19262.      vecString &Languages.  LCP: CountryLangList 
  19263.      bool getLanguageListEngNat(mapString &Languages) 
  19264.  
  19265.      Get a map of all possible languages, their native description in 
  19266.      alphabetical order by english description, returned in in vecString 
  19267.      &Languages.  LCP: CountryLangListEngNat 
  19268.  
  19269.   Delete a country 
  19270.      bool deleteFromDesc() 
  19271.  
  19272.      Delete the country that uses the currently set description.  LCP: 
  19273.      CountryDelete 
  19274.  
  19275.   Set data members 
  19276.      bool setAll(mapString &FieldValues) 
  19277.  
  19278.      Sets all the data members of a topic using the mapString which is passed 
  19279.      to it.  Only the fields present in the mapString are updated, the other 
  19280.      fields are untouched.  LCP: CountryUpdate 
  19281.      bool setDesc(const string &DescSetting) 
  19282.  
  19283.      Set the short description 
  19284.      bool setDescLong(const string &DescLongSetting) 
  19285.  
  19286.      Set the long description 
  19287.      bool setDescNative(const string &DescNativeSetting) 
  19288.  
  19289.      Set the native language description 
  19290.      bool setNetCode(const string &NetCodeSetting) 
  19291.  
  19292.      Set the internet code for this country 
  19293.      bool erase() 
  19294.  
  19295.      Sets all the data members to empty 
  19296.  
  19297.   Get data members 
  19298.      bool getAll(mapString &FieldValues) 
  19299.  
  19300.      Return a mapString of all the data members of this topic. The key is the 
  19301.      variable name.  LCP: CountryAttribs 
  19302.      string getDesc() 
  19303.  
  19304.      Get the short description 
  19305.      string getDescLong() 
  19306.  
  19307.      Get the long description 
  19308.      string getDescNative() 
  19309.  
  19310.      Get the native language description 
  19311.      string getNetCode() 
  19312.  
  19313.      Get the internet code for this country 
  19314.  
  19315.  
  19316. ΓòÉΓòÉΓòÉ <hidden> ╨║ ΓòÉΓòÉΓòÉ
  19317.  
  19318.  
  19319. lyris_Country Class 
  19320.  
  19321.      class lyris_Country 
  19322.  
  19323.      For determining what countries exist, and what languages are spoken & 
  19324.      preferred in each country 
  19325.  
  19326.      Defined in: COUNTRY.H 
  19327.  
  19328.   Create a new country 
  19329.  
  19330.       bool createNew() 
  19331.  
  19332.      Creates a new country/language table row.  LCP: CountryCreate 
  19333.      bool updateDatabase() 
  19334.  
  19335.      Save the current country with the data members that have changed.  LCP: 
  19336.      CountryUpdate 
  19337.      bool VerifyFields() 
  19338.  
  19339.      Verify that all required fields are filled in. 
  19340.  
  19341.   Retrieve data from the database 
  19342.      bool fetchAllCountries(vecString &AllCountries) 
  19343.  
  19344.      Fetch a list of all countries.  LCP: CountryAll 
  19345.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19346.  
  19347.      Fetch a paired list of countries and their native language descriptions, 
  19348.      sorted by english description.  LCP: CountryEngNat 
  19349.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19350.  
  19351.      Fetch a paired list of native language country descriptions, and the 
  19352.      english name of the country. 
  19353.      bool retrieveFromNetCode() 
  19354.  
  19355.      Determine the country that uses the currently set NetCode.  Fills all the 
  19356.      other country attributes with values. LCP: CountryAttNetCode 
  19357.      bool retrieveFromDesc() 
  19358.  
  19359.      Determine the country that uses the currently set description.  Fills all 
  19360.      the other country attributes with values.  LCP: CountryAttribs 
  19361.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19362.  
  19363.      Determine the primary language of the current country.  "Desc" must be 
  19364.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19365.      CountryPrimLang 
  19366.      bool getAllLanguages(vecString &Languages) 
  19367.  
  19368.      Determine all the languages used by the current country.  "Desc" must be 
  19369.      already set.  The result is returned in priority order (highest priority 
  19370.      first) in vecString &Languages.  LCP: CountryLanguages 
  19371.      bool getLanguageList(vecString &Languages) 
  19372.  
  19373.      Get a list of all possible languages, in alphabetical order, returned in 
  19374.      vecString &Languages.  LCP: CountryLangList 
  19375.      bool getLanguageListEngNat(mapString &Languages) 
  19376.  
  19377.      Get a map of all possible languages, their native description in 
  19378.      alphabetical order by english description, returned in in vecString 
  19379.      &Languages.  LCP: CountryLangListEngNat 
  19380.  
  19381.   Delete a country 
  19382.      bool deleteFromDesc() 
  19383.  
  19384.      Delete the country that uses the currently set description.  LCP: 
  19385.      CountryDelete 
  19386.  
  19387.   Set data members 
  19388.      bool setAll(mapString &FieldValues) 
  19389.  
  19390.      Sets all the data members of a topic using the mapString which is passed 
  19391.      to it.  Only the fields present in the mapString are updated, the other 
  19392.      fields are untouched.  LCP: CountryUpdate 
  19393.      bool setDesc(const string &DescSetting) 
  19394.  
  19395.      Set the short description 
  19396.      bool setDescLong(const string &DescLongSetting) 
  19397.  
  19398.      Set the long description 
  19399.      bool setDescNative(const string &DescNativeSetting) 
  19400.  
  19401.      Set the native language description 
  19402.      bool setNetCode(const string &NetCodeSetting) 
  19403.  
  19404.      Set the internet code for this country 
  19405.      bool erase() 
  19406.  
  19407.      Sets all the data members to empty 
  19408.  
  19409.   Get data members 
  19410.      bool getAll(mapString &FieldValues) 
  19411.  
  19412.      Return a mapString of all the data members of this topic. The key is the 
  19413.      variable name.  LCP: CountryAttribs 
  19414.      string getDesc() 
  19415.  
  19416.      Get the short description 
  19417.      string getDescLong() 
  19418.  
  19419.      Get the long description 
  19420.      string getDescNative() 
  19421.  
  19422.      Get the native language description 
  19423.      string getNetCode() 
  19424.  
  19425.      Get the internet code for this country 
  19426.  
  19427.  
  19428. ΓòÉΓòÉΓòÉ <hidden> ╨╗ ΓòÉΓòÉΓòÉ
  19429.  
  19430.  
  19431. lyris_Country Class 
  19432.  
  19433.      class lyris_Country 
  19434.  
  19435.      For determining what countries exist, and what languages are spoken & 
  19436.      preferred in each country 
  19437.  
  19438.      Defined in: COUNTRY.H 
  19439.  
  19440.   Create a new country 
  19441.  
  19442.       bool createNew() 
  19443.  
  19444.      Creates a new country/language table row.  LCP: CountryCreate 
  19445.      bool updateDatabase() 
  19446.  
  19447.      Save the current country with the data members that have changed.  LCP: 
  19448.      CountryUpdate 
  19449.      bool VerifyFields() 
  19450.  
  19451.      Verify that all required fields are filled in. 
  19452.  
  19453.   Retrieve data from the database 
  19454.      bool fetchAllCountries(vecString &AllCountries) 
  19455.  
  19456.      Fetch a list of all countries.  LCP: CountryAll 
  19457.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19458.  
  19459.      Fetch a paired list of countries and their native language descriptions, 
  19460.      sorted by english description.  LCP: CountryEngNat 
  19461.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19462.  
  19463.      Fetch a paired list of native language country descriptions, and the 
  19464.      english name of the country. 
  19465.      bool retrieveFromNetCode() 
  19466.  
  19467.      Determine the country that uses the currently set NetCode.  Fills all the 
  19468.      other country attributes with values. LCP: CountryAttNetCode 
  19469.      bool retrieveFromDesc() 
  19470.  
  19471.      Determine the country that uses the currently set description.  Fills all 
  19472.      the other country attributes with values.  LCP: CountryAttribs 
  19473.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19474.  
  19475.      Determine the primary language of the current country.  "Desc" must be 
  19476.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19477.      CountryPrimLang 
  19478.      bool getAllLanguages(vecString &Languages) 
  19479.  
  19480.      Determine all the languages used by the current country.  "Desc" must be 
  19481.      already set.  The result is returned in priority order (highest priority 
  19482.      first) in vecString &Languages.  LCP: CountryLanguages 
  19483.      bool getLanguageList(vecString &Languages) 
  19484.  
  19485.      Get a list of all possible languages, in alphabetical order, returned in 
  19486.      vecString &Languages.  LCP: CountryLangList 
  19487.      bool getLanguageListEngNat(mapString &Languages) 
  19488.  
  19489.      Get a map of all possible languages, their native description in 
  19490.      alphabetical order by english description, returned in in vecString 
  19491.      &Languages.  LCP: CountryLangListEngNat 
  19492.  
  19493.   Delete a country 
  19494.      bool deleteFromDesc() 
  19495.  
  19496.      Delete the country that uses the currently set description.  LCP: 
  19497.      CountryDelete 
  19498.  
  19499.   Set data members 
  19500.      bool setAll(mapString &FieldValues) 
  19501.  
  19502.      Sets all the data members of a topic using the mapString which is passed 
  19503.      to it.  Only the fields present in the mapString are updated, the other 
  19504.      fields are untouched.  LCP: CountryUpdate 
  19505.      bool setDesc(const string &DescSetting) 
  19506.  
  19507.      Set the short description 
  19508.      bool setDescLong(const string &DescLongSetting) 
  19509.  
  19510.      Set the long description 
  19511.      bool setDescNative(const string &DescNativeSetting) 
  19512.  
  19513.      Set the native language description 
  19514.      bool setNetCode(const string &NetCodeSetting) 
  19515.  
  19516.      Set the internet code for this country 
  19517.      bool erase() 
  19518.  
  19519.      Sets all the data members to empty 
  19520.  
  19521.   Get data members 
  19522.      bool getAll(mapString &FieldValues) 
  19523.  
  19524.      Return a mapString of all the data members of this topic. The key is the 
  19525.      variable name.  LCP: CountryAttribs 
  19526.      string getDesc() 
  19527.  
  19528.      Get the short description 
  19529.      string getDescLong() 
  19530.  
  19531.      Get the long description 
  19532.      string getDescNative() 
  19533.  
  19534.      Get the native language description 
  19535.      string getNetCode() 
  19536.  
  19537.      Get the internet code for this country 
  19538.  
  19539.  
  19540. ΓòÉΓòÉΓòÉ <hidden> ╨╝ ΓòÉΓòÉΓòÉ
  19541.  
  19542.  
  19543. lyris_Country Class 
  19544.  
  19545.      class lyris_Country 
  19546.  
  19547.      For determining what countries exist, and what languages are spoken & 
  19548.      preferred in each country 
  19549.  
  19550.      Defined in: COUNTRY.H 
  19551.  
  19552.   Create a new country 
  19553.  
  19554.       bool createNew() 
  19555.  
  19556.      Creates a new country/language table row.  LCP: CountryCreate 
  19557.      bool updateDatabase() 
  19558.  
  19559.      Save the current country with the data members that have changed.  LCP: 
  19560.      CountryUpdate 
  19561.      bool VerifyFields() 
  19562.  
  19563.      Verify that all required fields are filled in. 
  19564.  
  19565.   Retrieve data from the database 
  19566.      bool fetchAllCountries(vecString &AllCountries) 
  19567.  
  19568.      Fetch a list of all countries.  LCP: CountryAll 
  19569.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19570.  
  19571.      Fetch a paired list of countries and their native language descriptions, 
  19572.      sorted by english description.  LCP: CountryEngNat 
  19573.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19574.  
  19575.      Fetch a paired list of native language country descriptions, and the 
  19576.      english name of the country. 
  19577.      bool retrieveFromNetCode() 
  19578.  
  19579.      Determine the country that uses the currently set NetCode.  Fills all the 
  19580.      other country attributes with values. LCP: CountryAttNetCode 
  19581.      bool retrieveFromDesc() 
  19582.  
  19583.      Determine the country that uses the currently set description.  Fills all 
  19584.      the other country attributes with values.  LCP: CountryAttribs 
  19585.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19586.  
  19587.      Determine the primary language of the current country.  "Desc" must be 
  19588.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19589.      CountryPrimLang 
  19590.      bool getAllLanguages(vecString &Languages) 
  19591.  
  19592.      Determine all the languages used by the current country.  "Desc" must be 
  19593.      already set.  The result is returned in priority order (highest priority 
  19594.      first) in vecString &Languages.  LCP: CountryLanguages 
  19595.      bool getLanguageList(vecString &Languages) 
  19596.  
  19597.      Get a list of all possible languages, in alphabetical order, returned in 
  19598.      vecString &Languages.  LCP: CountryLangList 
  19599.      bool getLanguageListEngNat(mapString &Languages) 
  19600.  
  19601.      Get a map of all possible languages, their native description in 
  19602.      alphabetical order by english description, returned in in vecString 
  19603.      &Languages.  LCP: CountryLangListEngNat 
  19604.  
  19605.   Delete a country 
  19606.      bool deleteFromDesc() 
  19607.  
  19608.      Delete the country that uses the currently set description.  LCP: 
  19609.      CountryDelete 
  19610.  
  19611.   Set data members 
  19612.      bool setAll(mapString &FieldValues) 
  19613.  
  19614.      Sets all the data members of a topic using the mapString which is passed 
  19615.      to it.  Only the fields present in the mapString are updated, the other 
  19616.      fields are untouched.  LCP: CountryUpdate 
  19617.      bool setDesc(const string &DescSetting) 
  19618.  
  19619.      Set the short description 
  19620.      bool setDescLong(const string &DescLongSetting) 
  19621.  
  19622.      Set the long description 
  19623.      bool setDescNative(const string &DescNativeSetting) 
  19624.  
  19625.      Set the native language description 
  19626.      bool setNetCode(const string &NetCodeSetting) 
  19627.  
  19628.      Set the internet code for this country 
  19629.      bool erase() 
  19630.  
  19631.      Sets all the data members to empty 
  19632.  
  19633.   Get data members 
  19634.      bool getAll(mapString &FieldValues) 
  19635.  
  19636.      Return a mapString of all the data members of this topic. The key is the 
  19637.      variable name.  LCP: CountryAttribs 
  19638.      string getDesc() 
  19639.  
  19640.      Get the short description 
  19641.      string getDescLong() 
  19642.  
  19643.      Get the long description 
  19644.      string getDescNative() 
  19645.  
  19646.      Get the native language description 
  19647.      string getNetCode() 
  19648.  
  19649.      Get the internet code for this country 
  19650.  
  19651.  
  19652. ΓòÉΓòÉΓòÉ <hidden> ╨╜ ΓòÉΓòÉΓòÉ
  19653.  
  19654.  
  19655. lyris_Country Class 
  19656.  
  19657.      class lyris_Country 
  19658.  
  19659.      For determining what countries exist, and what languages are spoken & 
  19660.      preferred in each country 
  19661.  
  19662.      Defined in: COUNTRY.H 
  19663.  
  19664.   Create a new country 
  19665.  
  19666.       bool createNew() 
  19667.  
  19668.      Creates a new country/language table row.  LCP: CountryCreate 
  19669.      bool updateDatabase() 
  19670.  
  19671.      Save the current country with the data members that have changed.  LCP: 
  19672.      CountryUpdate 
  19673.      bool VerifyFields() 
  19674.  
  19675.      Verify that all required fields are filled in. 
  19676.  
  19677.   Retrieve data from the database 
  19678.      bool fetchAllCountries(vecString &AllCountries) 
  19679.  
  19680.      Fetch a list of all countries.  LCP: CountryAll 
  19681.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19682.  
  19683.      Fetch a paired list of countries and their native language descriptions, 
  19684.      sorted by english description.  LCP: CountryEngNat 
  19685.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19686.  
  19687.      Fetch a paired list of native language country descriptions, and the 
  19688.      english name of the country. 
  19689.      bool retrieveFromNetCode() 
  19690.  
  19691.      Determine the country that uses the currently set NetCode.  Fills all the 
  19692.      other country attributes with values. LCP: CountryAttNetCode 
  19693.      bool retrieveFromDesc() 
  19694.  
  19695.      Determine the country that uses the currently set description.  Fills all 
  19696.      the other country attributes with values.  LCP: CountryAttribs 
  19697.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19698.  
  19699.      Determine the primary language of the current country.  "Desc" must be 
  19700.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19701.      CountryPrimLang 
  19702.      bool getAllLanguages(vecString &Languages) 
  19703.  
  19704.      Determine all the languages used by the current country.  "Desc" must be 
  19705.      already set.  The result is returned in priority order (highest priority 
  19706.      first) in vecString &Languages.  LCP: CountryLanguages 
  19707.      bool getLanguageList(vecString &Languages) 
  19708.  
  19709.      Get a list of all possible languages, in alphabetical order, returned in 
  19710.      vecString &Languages.  LCP: CountryLangList 
  19711.      bool getLanguageListEngNat(mapString &Languages) 
  19712.  
  19713.      Get a map of all possible languages, their native description in 
  19714.      alphabetical order by english description, returned in in vecString 
  19715.      &Languages.  LCP: CountryLangListEngNat 
  19716.  
  19717.   Delete a country 
  19718.      bool deleteFromDesc() 
  19719.  
  19720.      Delete the country that uses the currently set description.  LCP: 
  19721.      CountryDelete 
  19722.  
  19723.   Set data members 
  19724.      bool setAll(mapString &FieldValues) 
  19725.  
  19726.      Sets all the data members of a topic using the mapString which is passed 
  19727.      to it.  Only the fields present in the mapString are updated, the other 
  19728.      fields are untouched.  LCP: CountryUpdate 
  19729.      bool setDesc(const string &DescSetting) 
  19730.  
  19731.      Set the short description 
  19732.      bool setDescLong(const string &DescLongSetting) 
  19733.  
  19734.      Set the long description 
  19735.      bool setDescNative(const string &DescNativeSetting) 
  19736.  
  19737.      Set the native language description 
  19738.      bool setNetCode(const string &NetCodeSetting) 
  19739.  
  19740.      Set the internet code for this country 
  19741.      bool erase() 
  19742.  
  19743.      Sets all the data members to empty 
  19744.  
  19745.   Get data members 
  19746.      bool getAll(mapString &FieldValues) 
  19747.  
  19748.      Return a mapString of all the data members of this topic. The key is the 
  19749.      variable name.  LCP: CountryAttribs 
  19750.      string getDesc() 
  19751.  
  19752.      Get the short description 
  19753.      string getDescLong() 
  19754.  
  19755.      Get the long description 
  19756.      string getDescNative() 
  19757.  
  19758.      Get the native language description 
  19759.      string getNetCode() 
  19760.  
  19761.      Get the internet code for this country 
  19762.  
  19763.  
  19764. ΓòÉΓòÉΓòÉ <hidden> ╨╛ ΓòÉΓòÉΓòÉ
  19765.  
  19766.  
  19767. lyris_Country Class 
  19768.  
  19769.      class lyris_Country 
  19770.  
  19771.      For determining what countries exist, and what languages are spoken & 
  19772.      preferred in each country 
  19773.  
  19774.      Defined in: COUNTRY.H 
  19775.  
  19776.   Create a new country 
  19777.  
  19778.       bool createNew() 
  19779.  
  19780.      Creates a new country/language table row.  LCP: CountryCreate 
  19781.      bool updateDatabase() 
  19782.  
  19783.      Save the current country with the data members that have changed.  LCP: 
  19784.      CountryUpdate 
  19785.      bool VerifyFields() 
  19786.  
  19787.      Verify that all required fields are filled in. 
  19788.  
  19789.   Retrieve data from the database 
  19790.      bool fetchAllCountries(vecString &AllCountries) 
  19791.  
  19792.      Fetch a list of all countries.  LCP: CountryAll 
  19793.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19794.  
  19795.      Fetch a paired list of countries and their native language descriptions, 
  19796.      sorted by english description.  LCP: CountryEngNat 
  19797.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19798.  
  19799.      Fetch a paired list of native language country descriptions, and the 
  19800.      english name of the country. 
  19801.      bool retrieveFromNetCode() 
  19802.  
  19803.      Determine the country that uses the currently set NetCode.  Fills all the 
  19804.      other country attributes with values. LCP: CountryAttNetCode 
  19805.      bool retrieveFromDesc() 
  19806.  
  19807.      Determine the country that uses the currently set description.  Fills all 
  19808.      the other country attributes with values.  LCP: CountryAttribs 
  19809.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19810.  
  19811.      Determine the primary language of the current country.  "Desc" must be 
  19812.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19813.      CountryPrimLang 
  19814.      bool getAllLanguages(vecString &Languages) 
  19815.  
  19816.      Determine all the languages used by the current country.  "Desc" must be 
  19817.      already set.  The result is returned in priority order (highest priority 
  19818.      first) in vecString &Languages.  LCP: CountryLanguages 
  19819.      bool getLanguageList(vecString &Languages) 
  19820.  
  19821.      Get a list of all possible languages, in alphabetical order, returned in 
  19822.      vecString &Languages.  LCP: CountryLangList 
  19823.      bool getLanguageListEngNat(mapString &Languages) 
  19824.  
  19825.      Get a map of all possible languages, their native description in 
  19826.      alphabetical order by english description, returned in in vecString 
  19827.      &Languages.  LCP: CountryLangListEngNat 
  19828.  
  19829.   Delete a country 
  19830.      bool deleteFromDesc() 
  19831.  
  19832.      Delete the country that uses the currently set description.  LCP: 
  19833.      CountryDelete 
  19834.  
  19835.   Set data members 
  19836.      bool setAll(mapString &FieldValues) 
  19837.  
  19838.      Sets all the data members of a topic using the mapString which is passed 
  19839.      to it.  Only the fields present in the mapString are updated, the other 
  19840.      fields are untouched.  LCP: CountryUpdate 
  19841.      bool setDesc(const string &DescSetting) 
  19842.  
  19843.      Set the short description 
  19844.      bool setDescLong(const string &DescLongSetting) 
  19845.  
  19846.      Set the long description 
  19847.      bool setDescNative(const string &DescNativeSetting) 
  19848.  
  19849.      Set the native language description 
  19850.      bool setNetCode(const string &NetCodeSetting) 
  19851.  
  19852.      Set the internet code for this country 
  19853.      bool erase() 
  19854.  
  19855.      Sets all the data members to empty 
  19856.  
  19857.   Get data members 
  19858.      bool getAll(mapString &FieldValues) 
  19859.  
  19860.      Return a mapString of all the data members of this topic. The key is the 
  19861.      variable name.  LCP: CountryAttribs 
  19862.      string getDesc() 
  19863.  
  19864.      Get the short description 
  19865.      string getDescLong() 
  19866.  
  19867.      Get the long description 
  19868.      string getDescNative() 
  19869.  
  19870.      Get the native language description 
  19871.      string getNetCode() 
  19872.  
  19873.      Get the internet code for this country 
  19874.  
  19875.  
  19876. ΓòÉΓòÉΓòÉ <hidden> ╨┐ ΓòÉΓòÉΓòÉ
  19877.  
  19878.  
  19879. lyris_Country Class 
  19880.  
  19881.      class lyris_Country 
  19882.  
  19883.      For determining what countries exist, and what languages are spoken & 
  19884.      preferred in each country 
  19885.  
  19886.      Defined in: COUNTRY.H 
  19887.  
  19888.   Create a new country 
  19889.  
  19890.       bool createNew() 
  19891.  
  19892.      Creates a new country/language table row.  LCP: CountryCreate 
  19893.      bool updateDatabase() 
  19894.  
  19895.      Save the current country with the data members that have changed.  LCP: 
  19896.      CountryUpdate 
  19897.      bool VerifyFields() 
  19898.  
  19899.      Verify that all required fields are filled in. 
  19900.  
  19901.   Retrieve data from the database 
  19902.      bool fetchAllCountries(vecString &AllCountries) 
  19903.  
  19904.      Fetch a list of all countries.  LCP: CountryAll 
  19905.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  19906.  
  19907.      Fetch a paired list of countries and their native language descriptions, 
  19908.      sorted by english description.  LCP: CountryEngNat 
  19909.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  19910.  
  19911.      Fetch a paired list of native language country descriptions, and the 
  19912.      english name of the country. 
  19913.      bool retrieveFromNetCode() 
  19914.  
  19915.      Determine the country that uses the currently set NetCode.  Fills all the 
  19916.      other country attributes with values. LCP: CountryAttNetCode 
  19917.      bool retrieveFromDesc() 
  19918.  
  19919.      Determine the country that uses the currently set description.  Fills all 
  19920.      the other country attributes with values.  LCP: CountryAttribs 
  19921.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  19922.  
  19923.      Determine the primary language of the current country.  "Desc" must be 
  19924.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  19925.      CountryPrimLang 
  19926.      bool getAllLanguages(vecString &Languages) 
  19927.  
  19928.      Determine all the languages used by the current country.  "Desc" must be 
  19929.      already set.  The result is returned in priority order (highest priority 
  19930.      first) in vecString &Languages.  LCP: CountryLanguages 
  19931.      bool getLanguageList(vecString &Languages) 
  19932.  
  19933.      Get a list of all possible languages, in alphabetical order, returned in 
  19934.      vecString &Languages.  LCP: CountryLangList 
  19935.      bool getLanguageListEngNat(mapString &Languages) 
  19936.  
  19937.      Get a map of all possible languages, their native description in 
  19938.      alphabetical order by english description, returned in in vecString 
  19939.      &Languages.  LCP: CountryLangListEngNat 
  19940.  
  19941.   Delete a country 
  19942.      bool deleteFromDesc() 
  19943.  
  19944.      Delete the country that uses the currently set description.  LCP: 
  19945.      CountryDelete 
  19946.  
  19947.   Set data members 
  19948.      bool setAll(mapString &FieldValues) 
  19949.  
  19950.      Sets all the data members of a topic using the mapString which is passed 
  19951.      to it.  Only the fields present in the mapString are updated, the other 
  19952.      fields are untouched.  LCP: CountryUpdate 
  19953.      bool setDesc(const string &DescSetting) 
  19954.  
  19955.      Set the short description 
  19956.      bool setDescLong(const string &DescLongSetting) 
  19957.  
  19958.      Set the long description 
  19959.      bool setDescNative(const string &DescNativeSetting) 
  19960.  
  19961.      Set the native language description 
  19962.      bool setNetCode(const string &NetCodeSetting) 
  19963.  
  19964.      Set the internet code for this country 
  19965.      bool erase() 
  19966.  
  19967.      Sets all the data members to empty 
  19968.  
  19969.   Get data members 
  19970.      bool getAll(mapString &FieldValues) 
  19971.  
  19972.      Return a mapString of all the data members of this topic. The key is the 
  19973.      variable name.  LCP: CountryAttribs 
  19974.      string getDesc() 
  19975.  
  19976.      Get the short description 
  19977.      string getDescLong() 
  19978.  
  19979.      Get the long description 
  19980.      string getDescNative() 
  19981.  
  19982.      Get the native language description 
  19983.      string getNetCode() 
  19984.  
  19985.      Get the internet code for this country 
  19986.  
  19987.  
  19988. ΓòÉΓòÉΓòÉ <hidden> Γûæ ΓòÉΓòÉΓòÉ
  19989.  
  19990.  
  19991. lyris_Country Class 
  19992.  
  19993.      class lyris_Country 
  19994.  
  19995.      For determining what countries exist, and what languages are spoken & 
  19996.      preferred in each country 
  19997.  
  19998.      Defined in: COUNTRY.H 
  19999.  
  20000.   Create a new country 
  20001.  
  20002.       bool createNew() 
  20003.  
  20004.      Creates a new country/language table row.  LCP: CountryCreate 
  20005.      bool updateDatabase() 
  20006.  
  20007.      Save the current country with the data members that have changed.  LCP: 
  20008.      CountryUpdate 
  20009.      bool VerifyFields() 
  20010.  
  20011.      Verify that all required fields are filled in. 
  20012.  
  20013.   Retrieve data from the database 
  20014.      bool fetchAllCountries(vecString &AllCountries) 
  20015.  
  20016.      Fetch a list of all countries.  LCP: CountryAll 
  20017.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20018.  
  20019.      Fetch a paired list of countries and their native language descriptions, 
  20020.      sorted by english description.  LCP: CountryEngNat 
  20021.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20022.  
  20023.      Fetch a paired list of native language country descriptions, and the 
  20024.      english name of the country. 
  20025.      bool retrieveFromNetCode() 
  20026.  
  20027.      Determine the country that uses the currently set NetCode.  Fills all the 
  20028.      other country attributes with values. LCP: CountryAttNetCode 
  20029.      bool retrieveFromDesc() 
  20030.  
  20031.      Determine the country that uses the currently set description.  Fills all 
  20032.      the other country attributes with values.  LCP: CountryAttribs 
  20033.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20034.  
  20035.      Determine the primary language of the current country.  "Desc" must be 
  20036.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20037.      CountryPrimLang 
  20038.      bool getAllLanguages(vecString &Languages) 
  20039.  
  20040.      Determine all the languages used by the current country.  "Desc" must be 
  20041.      already set.  The result is returned in priority order (highest priority 
  20042.      first) in vecString &Languages.  LCP: CountryLanguages 
  20043.      bool getLanguageList(vecString &Languages) 
  20044.  
  20045.      Get a list of all possible languages, in alphabetical order, returned in 
  20046.      vecString &Languages.  LCP: CountryLangList 
  20047.      bool getLanguageListEngNat(mapString &Languages) 
  20048.  
  20049.      Get a map of all possible languages, their native description in 
  20050.      alphabetical order by english description, returned in in vecString 
  20051.      &Languages.  LCP: CountryLangListEngNat 
  20052.  
  20053.   Delete a country 
  20054.      bool deleteFromDesc() 
  20055.  
  20056.      Delete the country that uses the currently set description.  LCP: 
  20057.      CountryDelete 
  20058.  
  20059.   Set data members 
  20060.      bool setAll(mapString &FieldValues) 
  20061.  
  20062.      Sets all the data members of a topic using the mapString which is passed 
  20063.      to it.  Only the fields present in the mapString are updated, the other 
  20064.      fields are untouched.  LCP: CountryUpdate 
  20065.      bool setDesc(const string &DescSetting) 
  20066.  
  20067.      Set the short description 
  20068.      bool setDescLong(const string &DescLongSetting) 
  20069.  
  20070.      Set the long description 
  20071.      bool setDescNative(const string &DescNativeSetting) 
  20072.  
  20073.      Set the native language description 
  20074.      bool setNetCode(const string &NetCodeSetting) 
  20075.  
  20076.      Set the internet code for this country 
  20077.      bool erase() 
  20078.  
  20079.      Sets all the data members to empty 
  20080.  
  20081.   Get data members 
  20082.      bool getAll(mapString &FieldValues) 
  20083.  
  20084.      Return a mapString of all the data members of this topic. The key is the 
  20085.      variable name.  LCP: CountryAttribs 
  20086.      string getDesc() 
  20087.  
  20088.      Get the short description 
  20089.      string getDescLong() 
  20090.  
  20091.      Get the long description 
  20092.      string getDescNative() 
  20093.  
  20094.      Get the native language description 
  20095.      string getNetCode() 
  20096.  
  20097.      Get the internet code for this country 
  20098.  
  20099.  
  20100. ΓòÉΓòÉΓòÉ <hidden> ΓûÆ ΓòÉΓòÉΓòÉ
  20101.  
  20102.  
  20103. lyris_Country Class 
  20104.  
  20105.      class lyris_Country 
  20106.  
  20107.      For determining what countries exist, and what languages are spoken & 
  20108.      preferred in each country 
  20109.  
  20110.      Defined in: COUNTRY.H 
  20111.  
  20112.   Create a new country 
  20113.  
  20114.       bool createNew() 
  20115.  
  20116.      Creates a new country/language table row.  LCP: CountryCreate 
  20117.      bool updateDatabase() 
  20118.  
  20119.      Save the current country with the data members that have changed.  LCP: 
  20120.      CountryUpdate 
  20121.      bool VerifyFields() 
  20122.  
  20123.      Verify that all required fields are filled in. 
  20124.  
  20125.   Retrieve data from the database 
  20126.      bool fetchAllCountries(vecString &AllCountries) 
  20127.  
  20128.      Fetch a list of all countries.  LCP: CountryAll 
  20129.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20130.  
  20131.      Fetch a paired list of countries and their native language descriptions, 
  20132.      sorted by english description.  LCP: CountryEngNat 
  20133.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20134.  
  20135.      Fetch a paired list of native language country descriptions, and the 
  20136.      english name of the country. 
  20137.      bool retrieveFromNetCode() 
  20138.  
  20139.      Determine the country that uses the currently set NetCode.  Fills all the 
  20140.      other country attributes with values. LCP: CountryAttNetCode 
  20141.      bool retrieveFromDesc() 
  20142.  
  20143.      Determine the country that uses the currently set description.  Fills all 
  20144.      the other country attributes with values.  LCP: CountryAttribs 
  20145.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20146.  
  20147.      Determine the primary language of the current country.  "Desc" must be 
  20148.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20149.      CountryPrimLang 
  20150.      bool getAllLanguages(vecString &Languages) 
  20151.  
  20152.      Determine all the languages used by the current country.  "Desc" must be 
  20153.      already set.  The result is returned in priority order (highest priority 
  20154.      first) in vecString &Languages.  LCP: CountryLanguages 
  20155.      bool getLanguageList(vecString &Languages) 
  20156.  
  20157.      Get a list of all possible languages, in alphabetical order, returned in 
  20158.      vecString &Languages.  LCP: CountryLangList 
  20159.      bool getLanguageListEngNat(mapString &Languages) 
  20160.  
  20161.      Get a map of all possible languages, their native description in 
  20162.      alphabetical order by english description, returned in in vecString 
  20163.      &Languages.  LCP: CountryLangListEngNat 
  20164.  
  20165.   Delete a country 
  20166.      bool deleteFromDesc() 
  20167.  
  20168.      Delete the country that uses the currently set description.  LCP: 
  20169.      CountryDelete 
  20170.  
  20171.   Set data members 
  20172.      bool setAll(mapString &FieldValues) 
  20173.  
  20174.      Sets all the data members of a topic using the mapString which is passed 
  20175.      to it.  Only the fields present in the mapString are updated, the other 
  20176.      fields are untouched.  LCP: CountryUpdate 
  20177.      bool setDesc(const string &DescSetting) 
  20178.  
  20179.      Set the short description 
  20180.      bool setDescLong(const string &DescLongSetting) 
  20181.  
  20182.      Set the long description 
  20183.      bool setDescNative(const string &DescNativeSetting) 
  20184.  
  20185.      Set the native language description 
  20186.      bool setNetCode(const string &NetCodeSetting) 
  20187.  
  20188.      Set the internet code for this country 
  20189.      bool erase() 
  20190.  
  20191.      Sets all the data members to empty 
  20192.  
  20193.   Get data members 
  20194.      bool getAll(mapString &FieldValues) 
  20195.  
  20196.      Return a mapString of all the data members of this topic. The key is the 
  20197.      variable name.  LCP: CountryAttribs 
  20198.      string getDesc() 
  20199.  
  20200.      Get the short description 
  20201.      string getDescLong() 
  20202.  
  20203.      Get the long description 
  20204.      string getDescNative() 
  20205.  
  20206.      Get the native language description 
  20207.      string getNetCode() 
  20208.  
  20209.      Get the internet code for this country 
  20210.  
  20211.  
  20212. ΓòÉΓòÉΓòÉ <hidden> Γûô ΓòÉΓòÉΓòÉ
  20213.  
  20214.  
  20215. lyris_Country Class 
  20216.  
  20217.      class lyris_Country 
  20218.  
  20219.      For determining what countries exist, and what languages are spoken & 
  20220.      preferred in each country 
  20221.  
  20222.      Defined in: COUNTRY.H 
  20223.  
  20224.   Create a new country 
  20225.  
  20226.       bool createNew() 
  20227.  
  20228.      Creates a new country/language table row.  LCP: CountryCreate 
  20229.      bool updateDatabase() 
  20230.  
  20231.      Save the current country with the data members that have changed.  LCP: 
  20232.      CountryUpdate 
  20233.      bool VerifyFields() 
  20234.  
  20235.      Verify that all required fields are filled in. 
  20236.  
  20237.   Retrieve data from the database 
  20238.      bool fetchAllCountries(vecString &AllCountries) 
  20239.  
  20240.      Fetch a list of all countries.  LCP: CountryAll 
  20241.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20242.  
  20243.      Fetch a paired list of countries and their native language descriptions, 
  20244.      sorted by english description.  LCP: CountryEngNat 
  20245.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20246.  
  20247.      Fetch a paired list of native language country descriptions, and the 
  20248.      english name of the country. 
  20249.      bool retrieveFromNetCode() 
  20250.  
  20251.      Determine the country that uses the currently set NetCode.  Fills all the 
  20252.      other country attributes with values. LCP: CountryAttNetCode 
  20253.      bool retrieveFromDesc() 
  20254.  
  20255.      Determine the country that uses the currently set description.  Fills all 
  20256.      the other country attributes with values.  LCP: CountryAttribs 
  20257.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20258.  
  20259.      Determine the primary language of the current country.  "Desc" must be 
  20260.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20261.      CountryPrimLang 
  20262.      bool getAllLanguages(vecString &Languages) 
  20263.  
  20264.      Determine all the languages used by the current country.  "Desc" must be 
  20265.      already set.  The result is returned in priority order (highest priority 
  20266.      first) in vecString &Languages.  LCP: CountryLanguages 
  20267.      bool getLanguageList(vecString &Languages) 
  20268.  
  20269.      Get a list of all possible languages, in alphabetical order, returned in 
  20270.      vecString &Languages.  LCP: CountryLangList 
  20271.      bool getLanguageListEngNat(mapString &Languages) 
  20272.  
  20273.      Get a map of all possible languages, their native description in 
  20274.      alphabetical order by english description, returned in in vecString 
  20275.      &Languages.  LCP: CountryLangListEngNat 
  20276.  
  20277.   Delete a country 
  20278.      bool deleteFromDesc() 
  20279.  
  20280.      Delete the country that uses the currently set description.  LCP: 
  20281.      CountryDelete 
  20282.  
  20283.   Set data members 
  20284.      bool setAll(mapString &FieldValues) 
  20285.  
  20286.      Sets all the data members of a topic using the mapString which is passed 
  20287.      to it.  Only the fields present in the mapString are updated, the other 
  20288.      fields are untouched.  LCP: CountryUpdate 
  20289.      bool setDesc(const string &DescSetting) 
  20290.  
  20291.      Set the short description 
  20292.      bool setDescLong(const string &DescLongSetting) 
  20293.  
  20294.      Set the long description 
  20295.      bool setDescNative(const string &DescNativeSetting) 
  20296.  
  20297.      Set the native language description 
  20298.      bool setNetCode(const string &NetCodeSetting) 
  20299.  
  20300.      Set the internet code for this country 
  20301.      bool erase() 
  20302.  
  20303.      Sets all the data members to empty 
  20304.  
  20305.   Get data members 
  20306.      bool getAll(mapString &FieldValues) 
  20307.  
  20308.      Return a mapString of all the data members of this topic. The key is the 
  20309.      variable name.  LCP: CountryAttribs 
  20310.      string getDesc() 
  20311.  
  20312.      Get the short description 
  20313.      string getDescLong() 
  20314.  
  20315.      Get the long description 
  20316.      string getDescNative() 
  20317.  
  20318.      Get the native language description 
  20319.      string getNetCode() 
  20320.  
  20321.      Get the internet code for this country 
  20322.  
  20323.  
  20324. ΓòÉΓòÉΓòÉ <hidden> Γöé ΓòÉΓòÉΓòÉ
  20325.  
  20326.  
  20327. lyris_Country Class 
  20328.  
  20329.      class lyris_Country 
  20330.  
  20331.      For determining what countries exist, and what languages are spoken & 
  20332.      preferred in each country 
  20333.  
  20334.      Defined in: COUNTRY.H 
  20335.  
  20336.   Create a new country 
  20337.  
  20338.       bool createNew() 
  20339.  
  20340.      Creates a new country/language table row.  LCP: CountryCreate 
  20341.      bool updateDatabase() 
  20342.  
  20343.      Save the current country with the data members that have changed.  LCP: 
  20344.      CountryUpdate 
  20345.      bool VerifyFields() 
  20346.  
  20347.      Verify that all required fields are filled in. 
  20348.  
  20349.   Retrieve data from the database 
  20350.      bool fetchAllCountries(vecString &AllCountries) 
  20351.  
  20352.      Fetch a list of all countries.  LCP: CountryAll 
  20353.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20354.  
  20355.      Fetch a paired list of countries and their native language descriptions, 
  20356.      sorted by english description.  LCP: CountryEngNat 
  20357.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20358.  
  20359.      Fetch a paired list of native language country descriptions, and the 
  20360.      english name of the country. 
  20361.      bool retrieveFromNetCode() 
  20362.  
  20363.      Determine the country that uses the currently set NetCode.  Fills all the 
  20364.      other country attributes with values. LCP: CountryAttNetCode 
  20365.      bool retrieveFromDesc() 
  20366.  
  20367.      Determine the country that uses the currently set description.  Fills all 
  20368.      the other country attributes with values.  LCP: CountryAttribs 
  20369.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20370.  
  20371.      Determine the primary language of the current country.  "Desc" must be 
  20372.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20373.      CountryPrimLang 
  20374.      bool getAllLanguages(vecString &Languages) 
  20375.  
  20376.      Determine all the languages used by the current country.  "Desc" must be 
  20377.      already set.  The result is returned in priority order (highest priority 
  20378.      first) in vecString &Languages.  LCP: CountryLanguages 
  20379.      bool getLanguageList(vecString &Languages) 
  20380.  
  20381.      Get a list of all possible languages, in alphabetical order, returned in 
  20382.      vecString &Languages.  LCP: CountryLangList 
  20383.      bool getLanguageListEngNat(mapString &Languages) 
  20384.  
  20385.      Get a map of all possible languages, their native description in 
  20386.      alphabetical order by english description, returned in in vecString 
  20387.      &Languages.  LCP: CountryLangListEngNat 
  20388.  
  20389.   Delete a country 
  20390.      bool deleteFromDesc() 
  20391.  
  20392.      Delete the country that uses the currently set description.  LCP: 
  20393.      CountryDelete 
  20394.  
  20395.   Set data members 
  20396.      bool setAll(mapString &FieldValues) 
  20397.  
  20398.      Sets all the data members of a topic using the mapString which is passed 
  20399.      to it.  Only the fields present in the mapString are updated, the other 
  20400.      fields are untouched.  LCP: CountryUpdate 
  20401.      bool setDesc(const string &DescSetting) 
  20402.  
  20403.      Set the short description 
  20404.      bool setDescLong(const string &DescLongSetting) 
  20405.  
  20406.      Set the long description 
  20407.      bool setDescNative(const string &DescNativeSetting) 
  20408.  
  20409.      Set the native language description 
  20410.      bool setNetCode(const string &NetCodeSetting) 
  20411.  
  20412.      Set the internet code for this country 
  20413.      bool erase() 
  20414.  
  20415.      Sets all the data members to empty 
  20416.  
  20417.   Get data members 
  20418.      bool getAll(mapString &FieldValues) 
  20419.  
  20420.      Return a mapString of all the data members of this topic. The key is the 
  20421.      variable name.  LCP: CountryAttribs 
  20422.      string getDesc() 
  20423.  
  20424.      Get the short description 
  20425.      string getDescLong() 
  20426.  
  20427.      Get the long description 
  20428.      string getDescNative() 
  20429.  
  20430.      Get the native language description 
  20431.      string getNetCode() 
  20432.  
  20433.      Get the internet code for this country 
  20434.  
  20435.  
  20436. ΓòÉΓòÉΓòÉ <hidden> Γöñ ΓòÉΓòÉΓòÉ
  20437.  
  20438.  
  20439. lyris_Country Class 
  20440.  
  20441.      class lyris_Country 
  20442.  
  20443.      For determining what countries exist, and what languages are spoken & 
  20444.      preferred in each country 
  20445.  
  20446.      Defined in: COUNTRY.H 
  20447.  
  20448.   Create a new country 
  20449.  
  20450.       bool createNew() 
  20451.  
  20452.      Creates a new country/language table row.  LCP: CountryCreate 
  20453.      bool updateDatabase() 
  20454.  
  20455.      Save the current country with the data members that have changed.  LCP: 
  20456.      CountryUpdate 
  20457.      bool VerifyFields() 
  20458.  
  20459.      Verify that all required fields are filled in. 
  20460.  
  20461.   Retrieve data from the database 
  20462.      bool fetchAllCountries(vecString &AllCountries) 
  20463.  
  20464.      Fetch a list of all countries.  LCP: CountryAll 
  20465.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20466.  
  20467.      Fetch a paired list of countries and their native language descriptions, 
  20468.      sorted by english description.  LCP: CountryEngNat 
  20469.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20470.  
  20471.      Fetch a paired list of native language country descriptions, and the 
  20472.      english name of the country. 
  20473.      bool retrieveFromNetCode() 
  20474.  
  20475.      Determine the country that uses the currently set NetCode.  Fills all the 
  20476.      other country attributes with values. LCP: CountryAttNetCode 
  20477.      bool retrieveFromDesc() 
  20478.  
  20479.      Determine the country that uses the currently set description.  Fills all 
  20480.      the other country attributes with values.  LCP: CountryAttribs 
  20481.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20482.  
  20483.      Determine the primary language of the current country.  "Desc" must be 
  20484.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20485.      CountryPrimLang 
  20486.      bool getAllLanguages(vecString &Languages) 
  20487.  
  20488.      Determine all the languages used by the current country.  "Desc" must be 
  20489.      already set.  The result is returned in priority order (highest priority 
  20490.      first) in vecString &Languages.  LCP: CountryLanguages 
  20491.      bool getLanguageList(vecString &Languages) 
  20492.  
  20493.      Get a list of all possible languages, in alphabetical order, returned in 
  20494.      vecString &Languages.  LCP: CountryLangList 
  20495.      bool getLanguageListEngNat(mapString &Languages) 
  20496.  
  20497.      Get a map of all possible languages, their native description in 
  20498.      alphabetical order by english description, returned in in vecString 
  20499.      &Languages.  LCP: CountryLangListEngNat 
  20500.  
  20501.   Delete a country 
  20502.      bool deleteFromDesc() 
  20503.  
  20504.      Delete the country that uses the currently set description.  LCP: 
  20505.      CountryDelete 
  20506.  
  20507.   Set data members 
  20508.      bool setAll(mapString &FieldValues) 
  20509.  
  20510.      Sets all the data members of a topic using the mapString which is passed 
  20511.      to it.  Only the fields present in the mapString are updated, the other 
  20512.      fields are untouched.  LCP: CountryUpdate 
  20513.      bool setDesc(const string &DescSetting) 
  20514.  
  20515.      Set the short description 
  20516.      bool setDescLong(const string &DescLongSetting) 
  20517.  
  20518.      Set the long description 
  20519.      bool setDescNative(const string &DescNativeSetting) 
  20520.  
  20521.      Set the native language description 
  20522.      bool setNetCode(const string &NetCodeSetting) 
  20523.  
  20524.      Set the internet code for this country 
  20525.      bool erase() 
  20526.  
  20527.      Sets all the data members to empty 
  20528.  
  20529.   Get data members 
  20530.      bool getAll(mapString &FieldValues) 
  20531.  
  20532.      Return a mapString of all the data members of this topic. The key is the 
  20533.      variable name.  LCP: CountryAttribs 
  20534.      string getDesc() 
  20535.  
  20536.      Get the short description 
  20537.      string getDescLong() 
  20538.  
  20539.      Get the long description 
  20540.      string getDescNative() 
  20541.  
  20542.      Get the native language description 
  20543.      string getNetCode() 
  20544.  
  20545.      Get the internet code for this country 
  20546.  
  20547.  
  20548. ΓòÉΓòÉΓòÉ <hidden> Γòí ΓòÉΓòÉΓòÉ
  20549.  
  20550.  
  20551. lyris_Country Class 
  20552.  
  20553.      class lyris_Country 
  20554.  
  20555.      For determining what countries exist, and what languages are spoken & 
  20556.      preferred in each country 
  20557.  
  20558.      Defined in: COUNTRY.H 
  20559.  
  20560.   Create a new country 
  20561.  
  20562.       bool createNew() 
  20563.  
  20564.      Creates a new country/language table row.  LCP: CountryCreate 
  20565.      bool updateDatabase() 
  20566.  
  20567.      Save the current country with the data members that have changed.  LCP: 
  20568.      CountryUpdate 
  20569.      bool VerifyFields() 
  20570.  
  20571.      Verify that all required fields are filled in. 
  20572.  
  20573.   Retrieve data from the database 
  20574.      bool fetchAllCountries(vecString &AllCountries) 
  20575.  
  20576.      Fetch a list of all countries.  LCP: CountryAll 
  20577.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20578.  
  20579.      Fetch a paired list of countries and their native language descriptions, 
  20580.      sorted by english description.  LCP: CountryEngNat 
  20581.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20582.  
  20583.      Fetch a paired list of native language country descriptions, and the 
  20584.      english name of the country. 
  20585.      bool retrieveFromNetCode() 
  20586.  
  20587.      Determine the country that uses the currently set NetCode.  Fills all the 
  20588.      other country attributes with values. LCP: CountryAttNetCode 
  20589.      bool retrieveFromDesc() 
  20590.  
  20591.      Determine the country that uses the currently set description.  Fills all 
  20592.      the other country attributes with values.  LCP: CountryAttribs 
  20593.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20594.  
  20595.      Determine the primary language of the current country.  "Desc" must be 
  20596.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20597.      CountryPrimLang 
  20598.      bool getAllLanguages(vecString &Languages) 
  20599.  
  20600.      Determine all the languages used by the current country.  "Desc" must be 
  20601.      already set.  The result is returned in priority order (highest priority 
  20602.      first) in vecString &Languages.  LCP: CountryLanguages 
  20603.      bool getLanguageList(vecString &Languages) 
  20604.  
  20605.      Get a list of all possible languages, in alphabetical order, returned in 
  20606.      vecString &Languages.  LCP: CountryLangList 
  20607.      bool getLanguageListEngNat(mapString &Languages) 
  20608.  
  20609.      Get a map of all possible languages, their native description in 
  20610.      alphabetical order by english description, returned in in vecString 
  20611.      &Languages.  LCP: CountryLangListEngNat 
  20612.  
  20613.   Delete a country 
  20614.      bool deleteFromDesc() 
  20615.  
  20616.      Delete the country that uses the currently set description.  LCP: 
  20617.      CountryDelete 
  20618.  
  20619.   Set data members 
  20620.      bool setAll(mapString &FieldValues) 
  20621.  
  20622.      Sets all the data members of a topic using the mapString which is passed 
  20623.      to it.  Only the fields present in the mapString are updated, the other 
  20624.      fields are untouched.  LCP: CountryUpdate 
  20625.      bool setDesc(const string &DescSetting) 
  20626.  
  20627.      Set the short description 
  20628.      bool setDescLong(const string &DescLongSetting) 
  20629.  
  20630.      Set the long description 
  20631.      bool setDescNative(const string &DescNativeSetting) 
  20632.  
  20633.      Set the native language description 
  20634.      bool setNetCode(const string &NetCodeSetting) 
  20635.  
  20636.      Set the internet code for this country 
  20637.      bool erase() 
  20638.  
  20639.      Sets all the data members to empty 
  20640.  
  20641.   Get data members 
  20642.      bool getAll(mapString &FieldValues) 
  20643.  
  20644.      Return a mapString of all the data members of this topic. The key is the 
  20645.      variable name.  LCP: CountryAttribs 
  20646.      string getDesc() 
  20647.  
  20648.      Get the short description 
  20649.      string getDescLong() 
  20650.  
  20651.      Get the long description 
  20652.      string getDescNative() 
  20653.  
  20654.      Get the native language description 
  20655.      string getNetCode() 
  20656.  
  20657.      Get the internet code for this country 
  20658.  
  20659.  
  20660. ΓòÉΓòÉΓòÉ <hidden> Γòó ΓòÉΓòÉΓòÉ
  20661.  
  20662.  
  20663. lyris_Country Class 
  20664.  
  20665.      class lyris_Country 
  20666.  
  20667.      For determining what countries exist, and what languages are spoken & 
  20668.      preferred in each country 
  20669.  
  20670.      Defined in: COUNTRY.H 
  20671.  
  20672.   Create a new country 
  20673.  
  20674.       bool createNew() 
  20675.  
  20676.      Creates a new country/language table row.  LCP: CountryCreate 
  20677.      bool updateDatabase() 
  20678.  
  20679.      Save the current country with the data members that have changed.  LCP: 
  20680.      CountryUpdate 
  20681.      bool VerifyFields() 
  20682.  
  20683.      Verify that all required fields are filled in. 
  20684.  
  20685.   Retrieve data from the database 
  20686.      bool fetchAllCountries(vecString &AllCountries) 
  20687.  
  20688.      Fetch a list of all countries.  LCP: CountryAll 
  20689.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20690.  
  20691.      Fetch a paired list of countries and their native language descriptions, 
  20692.      sorted by english description.  LCP: CountryEngNat 
  20693.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20694.  
  20695.      Fetch a paired list of native language country descriptions, and the 
  20696.      english name of the country. 
  20697.      bool retrieveFromNetCode() 
  20698.  
  20699.      Determine the country that uses the currently set NetCode.  Fills all the 
  20700.      other country attributes with values. LCP: CountryAttNetCode 
  20701.      bool retrieveFromDesc() 
  20702.  
  20703.      Determine the country that uses the currently set description.  Fills all 
  20704.      the other country attributes with values.  LCP: CountryAttribs 
  20705.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20706.  
  20707.      Determine the primary language of the current country.  "Desc" must be 
  20708.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20709.      CountryPrimLang 
  20710.      bool getAllLanguages(vecString &Languages) 
  20711.  
  20712.      Determine all the languages used by the current country.  "Desc" must be 
  20713.      already set.  The result is returned in priority order (highest priority 
  20714.      first) in vecString &Languages.  LCP: CountryLanguages 
  20715.      bool getLanguageList(vecString &Languages) 
  20716.  
  20717.      Get a list of all possible languages, in alphabetical order, returned in 
  20718.      vecString &Languages.  LCP: CountryLangList 
  20719.      bool getLanguageListEngNat(mapString &Languages) 
  20720.  
  20721.      Get a map of all possible languages, their native description in 
  20722.      alphabetical order by english description, returned in in vecString 
  20723.      &Languages.  LCP: CountryLangListEngNat 
  20724.  
  20725.   Delete a country 
  20726.      bool deleteFromDesc() 
  20727.  
  20728.      Delete the country that uses the currently set description.  LCP: 
  20729.      CountryDelete 
  20730.  
  20731.   Set data members 
  20732.      bool setAll(mapString &FieldValues) 
  20733.  
  20734.      Sets all the data members of a topic using the mapString which is passed 
  20735.      to it.  Only the fields present in the mapString are updated, the other 
  20736.      fields are untouched.  LCP: CountryUpdate 
  20737.      bool setDesc(const string &DescSetting) 
  20738.  
  20739.      Set the short description 
  20740.      bool setDescLong(const string &DescLongSetting) 
  20741.  
  20742.      Set the long description 
  20743.      bool setDescNative(const string &DescNativeSetting) 
  20744.  
  20745.      Set the native language description 
  20746.      bool setNetCode(const string &NetCodeSetting) 
  20747.  
  20748.      Set the internet code for this country 
  20749.      bool erase() 
  20750.  
  20751.      Sets all the data members to empty 
  20752.  
  20753.   Get data members 
  20754.      bool getAll(mapString &FieldValues) 
  20755.  
  20756.      Return a mapString of all the data members of this topic. The key is the 
  20757.      variable name.  LCP: CountryAttribs 
  20758.      string getDesc() 
  20759.  
  20760.      Get the short description 
  20761.      string getDescLong() 
  20762.  
  20763.      Get the long description 
  20764.      string getDescNative() 
  20765.  
  20766.      Get the native language description 
  20767.      string getNetCode() 
  20768.  
  20769.      Get the internet code for this country 
  20770.  
  20771.  
  20772. ΓòÉΓòÉΓòÉ <hidden> Γòû ΓòÉΓòÉΓòÉ
  20773.  
  20774.  
  20775. lyris_Country Class 
  20776.  
  20777.      class lyris_Country 
  20778.  
  20779.      For determining what countries exist, and what languages are spoken & 
  20780.      preferred in each country 
  20781.  
  20782.      Defined in: COUNTRY.H 
  20783.  
  20784.   Create a new country 
  20785.  
  20786.       bool createNew() 
  20787.  
  20788.      Creates a new country/language table row.  LCP: CountryCreate 
  20789.      bool updateDatabase() 
  20790.  
  20791.      Save the current country with the data members that have changed.  LCP: 
  20792.      CountryUpdate 
  20793.      bool VerifyFields() 
  20794.  
  20795.      Verify that all required fields are filled in. 
  20796.  
  20797.   Retrieve data from the database 
  20798.      bool fetchAllCountries(vecString &AllCountries) 
  20799.  
  20800.      Fetch a list of all countries.  LCP: CountryAll 
  20801.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20802.  
  20803.      Fetch a paired list of countries and their native language descriptions, 
  20804.      sorted by english description.  LCP: CountryEngNat 
  20805.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20806.  
  20807.      Fetch a paired list of native language country descriptions, and the 
  20808.      english name of the country. 
  20809.      bool retrieveFromNetCode() 
  20810.  
  20811.      Determine the country that uses the currently set NetCode.  Fills all the 
  20812.      other country attributes with values. LCP: CountryAttNetCode 
  20813.      bool retrieveFromDesc() 
  20814.  
  20815.      Determine the country that uses the currently set description.  Fills all 
  20816.      the other country attributes with values.  LCP: CountryAttribs 
  20817.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20818.  
  20819.      Determine the primary language of the current country.  "Desc" must be 
  20820.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20821.      CountryPrimLang 
  20822.      bool getAllLanguages(vecString &Languages) 
  20823.  
  20824.      Determine all the languages used by the current country.  "Desc" must be 
  20825.      already set.  The result is returned in priority order (highest priority 
  20826.      first) in vecString &Languages.  LCP: CountryLanguages 
  20827.      bool getLanguageList(vecString &Languages) 
  20828.  
  20829.      Get a list of all possible languages, in alphabetical order, returned in 
  20830.      vecString &Languages.  LCP: CountryLangList 
  20831.      bool getLanguageListEngNat(mapString &Languages) 
  20832.  
  20833.      Get a map of all possible languages, their native description in 
  20834.      alphabetical order by english description, returned in in vecString 
  20835.      &Languages.  LCP: CountryLangListEngNat 
  20836.  
  20837.   Delete a country 
  20838.      bool deleteFromDesc() 
  20839.  
  20840.      Delete the country that uses the currently set description.  LCP: 
  20841.      CountryDelete 
  20842.  
  20843.   Set data members 
  20844.      bool setAll(mapString &FieldValues) 
  20845.  
  20846.      Sets all the data members of a topic using the mapString which is passed 
  20847.      to it.  Only the fields present in the mapString are updated, the other 
  20848.      fields are untouched.  LCP: CountryUpdate 
  20849.      bool setDesc(const string &DescSetting) 
  20850.  
  20851.      Set the short description 
  20852.      bool setDescLong(const string &DescLongSetting) 
  20853.  
  20854.      Set the long description 
  20855.      bool setDescNative(const string &DescNativeSetting) 
  20856.  
  20857.      Set the native language description 
  20858.      bool setNetCode(const string &NetCodeSetting) 
  20859.  
  20860.      Set the internet code for this country 
  20861.      bool erase() 
  20862.  
  20863.      Sets all the data members to empty 
  20864.  
  20865.   Get data members 
  20866.      bool getAll(mapString &FieldValues) 
  20867.  
  20868.      Return a mapString of all the data members of this topic. The key is the 
  20869.      variable name.  LCP: CountryAttribs 
  20870.      string getDesc() 
  20871.  
  20872.      Get the short description 
  20873.      string getDescLong() 
  20874.  
  20875.      Get the long description 
  20876.      string getDescNative() 
  20877.  
  20878.      Get the native language description 
  20879.      string getNetCode() 
  20880.  
  20881.      Get the internet code for this country 
  20882.  
  20883.  
  20884. ΓòÉΓòÉΓòÉ <hidden> Γòò ΓòÉΓòÉΓòÉ
  20885.  
  20886.  
  20887. lyris_Country Class 
  20888.  
  20889.      class lyris_Country 
  20890.  
  20891.      For determining what countries exist, and what languages are spoken & 
  20892.      preferred in each country 
  20893.  
  20894.      Defined in: COUNTRY.H 
  20895.  
  20896.   Create a new country 
  20897.  
  20898.       bool createNew() 
  20899.  
  20900.      Creates a new country/language table row.  LCP: CountryCreate 
  20901.      bool updateDatabase() 
  20902.  
  20903.      Save the current country with the data members that have changed.  LCP: 
  20904.      CountryUpdate 
  20905.      bool VerifyFields() 
  20906.  
  20907.      Verify that all required fields are filled in. 
  20908.  
  20909.   Retrieve data from the database 
  20910.      bool fetchAllCountries(vecString &AllCountries) 
  20911.  
  20912.      Fetch a list of all countries.  LCP: CountryAll 
  20913.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  20914.  
  20915.      Fetch a paired list of countries and their native language descriptions, 
  20916.      sorted by english description.  LCP: CountryEngNat 
  20917.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  20918.  
  20919.      Fetch a paired list of native language country descriptions, and the 
  20920.      english name of the country. 
  20921.      bool retrieveFromNetCode() 
  20922.  
  20923.      Determine the country that uses the currently set NetCode.  Fills all the 
  20924.      other country attributes with values. LCP: CountryAttNetCode 
  20925.      bool retrieveFromDesc() 
  20926.  
  20927.      Determine the country that uses the currently set description.  Fills all 
  20928.      the other country attributes with values.  LCP: CountryAttribs 
  20929.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  20930.  
  20931.      Determine the primary language of the current country.  "Desc" must be 
  20932.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  20933.      CountryPrimLang 
  20934.      bool getAllLanguages(vecString &Languages) 
  20935.  
  20936.      Determine all the languages used by the current country.  "Desc" must be 
  20937.      already set.  The result is returned in priority order (highest priority 
  20938.      first) in vecString &Languages.  LCP: CountryLanguages 
  20939.      bool getLanguageList(vecString &Languages) 
  20940.  
  20941.      Get a list of all possible languages, in alphabetical order, returned in 
  20942.      vecString &Languages.  LCP: CountryLangList 
  20943.      bool getLanguageListEngNat(mapString &Languages) 
  20944.  
  20945.      Get a map of all possible languages, their native description in 
  20946.      alphabetical order by english description, returned in in vecString 
  20947.      &Languages.  LCP: CountryLangListEngNat 
  20948.  
  20949.   Delete a country 
  20950.      bool deleteFromDesc() 
  20951.  
  20952.      Delete the country that uses the currently set description.  LCP: 
  20953.      CountryDelete 
  20954.  
  20955.   Set data members 
  20956.      bool setAll(mapString &FieldValues) 
  20957.  
  20958.      Sets all the data members of a topic using the mapString which is passed 
  20959.      to it.  Only the fields present in the mapString are updated, the other 
  20960.      fields are untouched.  LCP: CountryUpdate 
  20961.      bool setDesc(const string &DescSetting) 
  20962.  
  20963.      Set the short description 
  20964.      bool setDescLong(const string &DescLongSetting) 
  20965.  
  20966.      Set the long description 
  20967.      bool setDescNative(const string &DescNativeSetting) 
  20968.  
  20969.      Set the native language description 
  20970.      bool setNetCode(const string &NetCodeSetting) 
  20971.  
  20972.      Set the internet code for this country 
  20973.      bool erase() 
  20974.  
  20975.      Sets all the data members to empty 
  20976.  
  20977.   Get data members 
  20978.      bool getAll(mapString &FieldValues) 
  20979.  
  20980.      Return a mapString of all the data members of this topic. The key is the 
  20981.      variable name.  LCP: CountryAttribs 
  20982.      string getDesc() 
  20983.  
  20984.      Get the short description 
  20985.      string getDescLong() 
  20986.  
  20987.      Get the long description 
  20988.      string getDescNative() 
  20989.  
  20990.      Get the native language description 
  20991.      string getNetCode() 
  20992.  
  20993.      Get the internet code for this country 
  20994.  
  20995.  
  20996. ΓòÉΓòÉΓòÉ <hidden> Γòú ΓòÉΓòÉΓòÉ
  20997.  
  20998.  
  20999. lyris_Country Class 
  21000.  
  21001.      class lyris_Country 
  21002.  
  21003.      For determining what countries exist, and what languages are spoken & 
  21004.      preferred in each country 
  21005.  
  21006.      Defined in: COUNTRY.H 
  21007.  
  21008.   Create a new country 
  21009.  
  21010.       bool createNew() 
  21011.  
  21012.      Creates a new country/language table row.  LCP: CountryCreate 
  21013.      bool updateDatabase() 
  21014.  
  21015.      Save the current country with the data members that have changed.  LCP: 
  21016.      CountryUpdate 
  21017.      bool VerifyFields() 
  21018.  
  21019.      Verify that all required fields are filled in. 
  21020.  
  21021.   Retrieve data from the database 
  21022.      bool fetchAllCountries(vecString &AllCountries) 
  21023.  
  21024.      Fetch a list of all countries.  LCP: CountryAll 
  21025.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21026.  
  21027.      Fetch a paired list of countries and their native language descriptions, 
  21028.      sorted by english description.  LCP: CountryEngNat 
  21029.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21030.  
  21031.      Fetch a paired list of native language country descriptions, and the 
  21032.      english name of the country. 
  21033.      bool retrieveFromNetCode() 
  21034.  
  21035.      Determine the country that uses the currently set NetCode.  Fills all the 
  21036.      other country attributes with values. LCP: CountryAttNetCode 
  21037.      bool retrieveFromDesc() 
  21038.  
  21039.      Determine the country that uses the currently set description.  Fills all 
  21040.      the other country attributes with values.  LCP: CountryAttribs 
  21041.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21042.  
  21043.      Determine the primary language of the current country.  "Desc" must be 
  21044.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21045.      CountryPrimLang 
  21046.      bool getAllLanguages(vecString &Languages) 
  21047.  
  21048.      Determine all the languages used by the current country.  "Desc" must be 
  21049.      already set.  The result is returned in priority order (highest priority 
  21050.      first) in vecString &Languages.  LCP: CountryLanguages 
  21051.      bool getLanguageList(vecString &Languages) 
  21052.  
  21053.      Get a list of all possible languages, in alphabetical order, returned in 
  21054.      vecString &Languages.  LCP: CountryLangList 
  21055.      bool getLanguageListEngNat(mapString &Languages) 
  21056.  
  21057.      Get a map of all possible languages, their native description in 
  21058.      alphabetical order by english description, returned in in vecString 
  21059.      &Languages.  LCP: CountryLangListEngNat 
  21060.  
  21061.   Delete a country 
  21062.      bool deleteFromDesc() 
  21063.  
  21064.      Delete the country that uses the currently set description.  LCP: 
  21065.      CountryDelete 
  21066.  
  21067.   Set data members 
  21068.      bool setAll(mapString &FieldValues) 
  21069.  
  21070.      Sets all the data members of a topic using the mapString which is passed 
  21071.      to it.  Only the fields present in the mapString are updated, the other 
  21072.      fields are untouched.  LCP: CountryUpdate 
  21073.      bool setDesc(const string &DescSetting) 
  21074.  
  21075.      Set the short description 
  21076.      bool setDescLong(const string &DescLongSetting) 
  21077.  
  21078.      Set the long description 
  21079.      bool setDescNative(const string &DescNativeSetting) 
  21080.  
  21081.      Set the native language description 
  21082.      bool setNetCode(const string &NetCodeSetting) 
  21083.  
  21084.      Set the internet code for this country 
  21085.      bool erase() 
  21086.  
  21087.      Sets all the data members to empty 
  21088.  
  21089.   Get data members 
  21090.      bool getAll(mapString &FieldValues) 
  21091.  
  21092.      Return a mapString of all the data members of this topic. The key is the 
  21093.      variable name.  LCP: CountryAttribs 
  21094.      string getDesc() 
  21095.  
  21096.      Get the short description 
  21097.      string getDescLong() 
  21098.  
  21099.      Get the long description 
  21100.      string getDescNative() 
  21101.  
  21102.      Get the native language description 
  21103.      string getNetCode() 
  21104.  
  21105.      Get the internet code for this country 
  21106.  
  21107.  
  21108. ΓòÉΓòÉΓòÉ <hidden> Γòæ ΓòÉΓòÉΓòÉ
  21109.  
  21110.  
  21111. lyris_Country Class 
  21112.  
  21113.      class lyris_Country 
  21114.  
  21115.      For determining what countries exist, and what languages are spoken & 
  21116.      preferred in each country 
  21117.  
  21118.      Defined in: COUNTRY.H 
  21119.  
  21120.   Create a new country 
  21121.  
  21122.       bool createNew() 
  21123.  
  21124.      Creates a new country/language table row.  LCP: CountryCreate 
  21125.      bool updateDatabase() 
  21126.  
  21127.      Save the current country with the data members that have changed.  LCP: 
  21128.      CountryUpdate 
  21129.      bool VerifyFields() 
  21130.  
  21131.      Verify that all required fields are filled in. 
  21132.  
  21133.   Retrieve data from the database 
  21134.      bool fetchAllCountries(vecString &AllCountries) 
  21135.  
  21136.      Fetch a list of all countries.  LCP: CountryAll 
  21137.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21138.  
  21139.      Fetch a paired list of countries and their native language descriptions, 
  21140.      sorted by english description.  LCP: CountryEngNat 
  21141.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21142.  
  21143.      Fetch a paired list of native language country descriptions, and the 
  21144.      english name of the country. 
  21145.      bool retrieveFromNetCode() 
  21146.  
  21147.      Determine the country that uses the currently set NetCode.  Fills all the 
  21148.      other country attributes with values. LCP: CountryAttNetCode 
  21149.      bool retrieveFromDesc() 
  21150.  
  21151.      Determine the country that uses the currently set description.  Fills all 
  21152.      the other country attributes with values.  LCP: CountryAttribs 
  21153.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21154.  
  21155.      Determine the primary language of the current country.  "Desc" must be 
  21156.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21157.      CountryPrimLang 
  21158.      bool getAllLanguages(vecString &Languages) 
  21159.  
  21160.      Determine all the languages used by the current country.  "Desc" must be 
  21161.      already set.  The result is returned in priority order (highest priority 
  21162.      first) in vecString &Languages.  LCP: CountryLanguages 
  21163.      bool getLanguageList(vecString &Languages) 
  21164.  
  21165.      Get a list of all possible languages, in alphabetical order, returned in 
  21166.      vecString &Languages.  LCP: CountryLangList 
  21167.      bool getLanguageListEngNat(mapString &Languages) 
  21168.  
  21169.      Get a map of all possible languages, their native description in 
  21170.      alphabetical order by english description, returned in in vecString 
  21171.      &Languages.  LCP: CountryLangListEngNat 
  21172.  
  21173.   Delete a country 
  21174.      bool deleteFromDesc() 
  21175.  
  21176.      Delete the country that uses the currently set description.  LCP: 
  21177.      CountryDelete 
  21178.  
  21179.   Set data members 
  21180.      bool setAll(mapString &FieldValues) 
  21181.  
  21182.      Sets all the data members of a topic using the mapString which is passed 
  21183.      to it.  Only the fields present in the mapString are updated, the other 
  21184.      fields are untouched.  LCP: CountryUpdate 
  21185.      bool setDesc(const string &DescSetting) 
  21186.  
  21187.      Set the short description 
  21188.      bool setDescLong(const string &DescLongSetting) 
  21189.  
  21190.      Set the long description 
  21191.      bool setDescNative(const string &DescNativeSetting) 
  21192.  
  21193.      Set the native language description 
  21194.      bool setNetCode(const string &NetCodeSetting) 
  21195.  
  21196.      Set the internet code for this country 
  21197.      bool erase() 
  21198.  
  21199.      Sets all the data members to empty 
  21200.  
  21201.   Get data members 
  21202.      bool getAll(mapString &FieldValues) 
  21203.  
  21204.      Return a mapString of all the data members of this topic. The key is the 
  21205.      variable name.  LCP: CountryAttribs 
  21206.      string getDesc() 
  21207.  
  21208.      Get the short description 
  21209.      string getDescLong() 
  21210.  
  21211.      Get the long description 
  21212.      string getDescNative() 
  21213.  
  21214.      Get the native language description 
  21215.      string getNetCode() 
  21216.  
  21217.      Get the internet code for this country 
  21218.  
  21219.  
  21220. ΓòÉΓòÉΓòÉ <hidden> Γòù ΓòÉΓòÉΓòÉ
  21221.  
  21222.  
  21223. lyris_Country Class 
  21224.  
  21225.      class lyris_Country 
  21226.  
  21227.      For determining what countries exist, and what languages are spoken & 
  21228.      preferred in each country 
  21229.  
  21230.      Defined in: COUNTRY.H 
  21231.  
  21232.   Create a new country 
  21233.  
  21234.       bool createNew() 
  21235.  
  21236.      Creates a new country/language table row.  LCP: CountryCreate 
  21237.      bool updateDatabase() 
  21238.  
  21239.      Save the current country with the data members that have changed.  LCP: 
  21240.      CountryUpdate 
  21241.      bool VerifyFields() 
  21242.  
  21243.      Verify that all required fields are filled in. 
  21244.  
  21245.   Retrieve data from the database 
  21246.      bool fetchAllCountries(vecString &AllCountries) 
  21247.  
  21248.      Fetch a list of all countries.  LCP: CountryAll 
  21249.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21250.  
  21251.      Fetch a paired list of countries and their native language descriptions, 
  21252.      sorted by english description.  LCP: CountryEngNat 
  21253.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21254.  
  21255.      Fetch a paired list of native language country descriptions, and the 
  21256.      english name of the country. 
  21257.      bool retrieveFromNetCode() 
  21258.  
  21259.      Determine the country that uses the currently set NetCode.  Fills all the 
  21260.      other country attributes with values. LCP: CountryAttNetCode 
  21261.      bool retrieveFromDesc() 
  21262.  
  21263.      Determine the country that uses the currently set description.  Fills all 
  21264.      the other country attributes with values.  LCP: CountryAttribs 
  21265.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21266.  
  21267.      Determine the primary language of the current country.  "Desc" must be 
  21268.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21269.      CountryPrimLang 
  21270.      bool getAllLanguages(vecString &Languages) 
  21271.  
  21272.      Determine all the languages used by the current country.  "Desc" must be 
  21273.      already set.  The result is returned in priority order (highest priority 
  21274.      first) in vecString &Languages.  LCP: CountryLanguages 
  21275.      bool getLanguageList(vecString &Languages) 
  21276.  
  21277.      Get a list of all possible languages, in alphabetical order, returned in 
  21278.      vecString &Languages.  LCP: CountryLangList 
  21279.      bool getLanguageListEngNat(mapString &Languages) 
  21280.  
  21281.      Get a map of all possible languages, their native description in 
  21282.      alphabetical order by english description, returned in in vecString 
  21283.      &Languages.  LCP: CountryLangListEngNat 
  21284.  
  21285.   Delete a country 
  21286.      bool deleteFromDesc() 
  21287.  
  21288.      Delete the country that uses the currently set description.  LCP: 
  21289.      CountryDelete 
  21290.  
  21291.   Set data members 
  21292.      bool setAll(mapString &FieldValues) 
  21293.  
  21294.      Sets all the data members of a topic using the mapString which is passed 
  21295.      to it.  Only the fields present in the mapString are updated, the other 
  21296.      fields are untouched.  LCP: CountryUpdate 
  21297.      bool setDesc(const string &DescSetting) 
  21298.  
  21299.      Set the short description 
  21300.      bool setDescLong(const string &DescLongSetting) 
  21301.  
  21302.      Set the long description 
  21303.      bool setDescNative(const string &DescNativeSetting) 
  21304.  
  21305.      Set the native language description 
  21306.      bool setNetCode(const string &NetCodeSetting) 
  21307.  
  21308.      Set the internet code for this country 
  21309.      bool erase() 
  21310.  
  21311.      Sets all the data members to empty 
  21312.  
  21313.   Get data members 
  21314.      bool getAll(mapString &FieldValues) 
  21315.  
  21316.      Return a mapString of all the data members of this topic. The key is the 
  21317.      variable name.  LCP: CountryAttribs 
  21318.      string getDesc() 
  21319.  
  21320.      Get the short description 
  21321.      string getDescLong() 
  21322.  
  21323.      Get the long description 
  21324.      string getDescNative() 
  21325.  
  21326.      Get the native language description 
  21327.      string getNetCode() 
  21328.  
  21329.      Get the internet code for this country 
  21330.  
  21331.  
  21332. ΓòÉΓòÉΓòÉ <hidden> Γò¥ ΓòÉΓòÉΓòÉ
  21333.  
  21334.  
  21335. lyris_Country Class 
  21336.  
  21337.      class lyris_Country 
  21338.  
  21339.      For determining what countries exist, and what languages are spoken & 
  21340.      preferred in each country 
  21341.  
  21342.      Defined in: COUNTRY.H 
  21343.  
  21344.   Create a new country 
  21345.  
  21346.       bool createNew() 
  21347.  
  21348.      Creates a new country/language table row.  LCP: CountryCreate 
  21349.      bool updateDatabase() 
  21350.  
  21351.      Save the current country with the data members that have changed.  LCP: 
  21352.      CountryUpdate 
  21353.      bool VerifyFields() 
  21354.  
  21355.      Verify that all required fields are filled in. 
  21356.  
  21357.   Retrieve data from the database 
  21358.      bool fetchAllCountries(vecString &AllCountries) 
  21359.  
  21360.      Fetch a list of all countries.  LCP: CountryAll 
  21361.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21362.  
  21363.      Fetch a paired list of countries and their native language descriptions, 
  21364.      sorted by english description.  LCP: CountryEngNat 
  21365.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21366.  
  21367.      Fetch a paired list of native language country descriptions, and the 
  21368.      english name of the country. 
  21369.      bool retrieveFromNetCode() 
  21370.  
  21371.      Determine the country that uses the currently set NetCode.  Fills all the 
  21372.      other country attributes with values. LCP: CountryAttNetCode 
  21373.      bool retrieveFromDesc() 
  21374.  
  21375.      Determine the country that uses the currently set description.  Fills all 
  21376.      the other country attributes with values.  LCP: CountryAttribs 
  21377.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21378.  
  21379.      Determine the primary language of the current country.  "Desc" must be 
  21380.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21381.      CountryPrimLang 
  21382.      bool getAllLanguages(vecString &Languages) 
  21383.  
  21384.      Determine all the languages used by the current country.  "Desc" must be 
  21385.      already set.  The result is returned in priority order (highest priority 
  21386.      first) in vecString &Languages.  LCP: CountryLanguages 
  21387.      bool getLanguageList(vecString &Languages) 
  21388.  
  21389.      Get a list of all possible languages, in alphabetical order, returned in 
  21390.      vecString &Languages.  LCP: CountryLangList 
  21391.      bool getLanguageListEngNat(mapString &Languages) 
  21392.  
  21393.      Get a map of all possible languages, their native description in 
  21394.      alphabetical order by english description, returned in in vecString 
  21395.      &Languages.  LCP: CountryLangListEngNat 
  21396.  
  21397.   Delete a country 
  21398.      bool deleteFromDesc() 
  21399.  
  21400.      Delete the country that uses the currently set description.  LCP: 
  21401.      CountryDelete 
  21402.  
  21403.   Set data members 
  21404.      bool setAll(mapString &FieldValues) 
  21405.  
  21406.      Sets all the data members of a topic using the mapString which is passed 
  21407.      to it.  Only the fields present in the mapString are updated, the other 
  21408.      fields are untouched.  LCP: CountryUpdate 
  21409.      bool setDesc(const string &DescSetting) 
  21410.  
  21411.      Set the short description 
  21412.      bool setDescLong(const string &DescLongSetting) 
  21413.  
  21414.      Set the long description 
  21415.      bool setDescNative(const string &DescNativeSetting) 
  21416.  
  21417.      Set the native language description 
  21418.      bool setNetCode(const string &NetCodeSetting) 
  21419.  
  21420.      Set the internet code for this country 
  21421.      bool erase() 
  21422.  
  21423.      Sets all the data members to empty 
  21424.  
  21425.   Get data members 
  21426.      bool getAll(mapString &FieldValues) 
  21427.  
  21428.      Return a mapString of all the data members of this topic. The key is the 
  21429.      variable name.  LCP: CountryAttribs 
  21430.      string getDesc() 
  21431.  
  21432.      Get the short description 
  21433.      string getDescLong() 
  21434.  
  21435.      Get the long description 
  21436.      string getDescNative() 
  21437.  
  21438.      Get the native language description 
  21439.      string getNetCode() 
  21440.  
  21441.      Get the internet code for this country 
  21442.  
  21443.  
  21444. ΓòÉΓòÉΓòÉ <hidden> Γò£ ΓòÉΓòÉΓòÉ
  21445.  
  21446.  
  21447. lyris_Country Class 
  21448.  
  21449.      class lyris_Country 
  21450.  
  21451.      For determining what countries exist, and what languages are spoken & 
  21452.      preferred in each country 
  21453.  
  21454.      Defined in: COUNTRY.H 
  21455.  
  21456.   Create a new country 
  21457.  
  21458.       bool createNew() 
  21459.  
  21460.      Creates a new country/language table row.  LCP: CountryCreate 
  21461.      bool updateDatabase() 
  21462.  
  21463.      Save the current country with the data members that have changed.  LCP: 
  21464.      CountryUpdate 
  21465.      bool VerifyFields() 
  21466.  
  21467.      Verify that all required fields are filled in. 
  21468.  
  21469.   Retrieve data from the database 
  21470.      bool fetchAllCountries(vecString &AllCountries) 
  21471.  
  21472.      Fetch a list of all countries.  LCP: CountryAll 
  21473.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21474.  
  21475.      Fetch a paired list of countries and their native language descriptions, 
  21476.      sorted by english description.  LCP: CountryEngNat 
  21477.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21478.  
  21479.      Fetch a paired list of native language country descriptions, and the 
  21480.      english name of the country. 
  21481.      bool retrieveFromNetCode() 
  21482.  
  21483.      Determine the country that uses the currently set NetCode.  Fills all the 
  21484.      other country attributes with values. LCP: CountryAttNetCode 
  21485.      bool retrieveFromDesc() 
  21486.  
  21487.      Determine the country that uses the currently set description.  Fills all 
  21488.      the other country attributes with values.  LCP: CountryAttribs 
  21489.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21490.  
  21491.      Determine the primary language of the current country.  "Desc" must be 
  21492.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21493.      CountryPrimLang 
  21494.      bool getAllLanguages(vecString &Languages) 
  21495.  
  21496.      Determine all the languages used by the current country.  "Desc" must be 
  21497.      already set.  The result is returned in priority order (highest priority 
  21498.      first) in vecString &Languages.  LCP: CountryLanguages 
  21499.      bool getLanguageList(vecString &Languages) 
  21500.  
  21501.      Get a list of all possible languages, in alphabetical order, returned in 
  21502.      vecString &Languages.  LCP: CountryLangList 
  21503.      bool getLanguageListEngNat(mapString &Languages) 
  21504.  
  21505.      Get a map of all possible languages, their native description in 
  21506.      alphabetical order by english description, returned in in vecString 
  21507.      &Languages.  LCP: CountryLangListEngNat 
  21508.  
  21509.   Delete a country 
  21510.      bool deleteFromDesc() 
  21511.  
  21512.      Delete the country that uses the currently set description.  LCP: 
  21513.      CountryDelete 
  21514.  
  21515.   Set data members 
  21516.      bool setAll(mapString &FieldValues) 
  21517.  
  21518.      Sets all the data members of a topic using the mapString which is passed 
  21519.      to it.  Only the fields present in the mapString are updated, the other 
  21520.      fields are untouched.  LCP: CountryUpdate 
  21521.      bool setDesc(const string &DescSetting) 
  21522.  
  21523.      Set the short description 
  21524.      bool setDescLong(const string &DescLongSetting) 
  21525.  
  21526.      Set the long description 
  21527.      bool setDescNative(const string &DescNativeSetting) 
  21528.  
  21529.      Set the native language description 
  21530.      bool setNetCode(const string &NetCodeSetting) 
  21531.  
  21532.      Set the internet code for this country 
  21533.      bool erase() 
  21534.  
  21535.      Sets all the data members to empty 
  21536.  
  21537.   Get data members 
  21538.      bool getAll(mapString &FieldValues) 
  21539.  
  21540.      Return a mapString of all the data members of this topic. The key is the 
  21541.      variable name.  LCP: CountryAttribs 
  21542.      string getDesc() 
  21543.  
  21544.      Get the short description 
  21545.      string getDescLong() 
  21546.  
  21547.      Get the long description 
  21548.      string getDescNative() 
  21549.  
  21550.      Get the native language description 
  21551.      string getNetCode() 
  21552.  
  21553.      Get the internet code for this country 
  21554.  
  21555.  
  21556. ΓòÉΓòÉΓòÉ <hidden> Γò¢ ΓòÉΓòÉΓòÉ
  21557.  
  21558.  
  21559. lyris_Country Class 
  21560.  
  21561.      class lyris_Country 
  21562.  
  21563.      For determining what countries exist, and what languages are spoken & 
  21564.      preferred in each country 
  21565.  
  21566.      Defined in: COUNTRY.H 
  21567.  
  21568.   Create a new country 
  21569.  
  21570.       bool createNew() 
  21571.  
  21572.      Creates a new country/language table row.  LCP: CountryCreate 
  21573.      bool updateDatabase() 
  21574.  
  21575.      Save the current country with the data members that have changed.  LCP: 
  21576.      CountryUpdate 
  21577.      bool VerifyFields() 
  21578.  
  21579.      Verify that all required fields are filled in. 
  21580.  
  21581.   Retrieve data from the database 
  21582.      bool fetchAllCountries(vecString &AllCountries) 
  21583.  
  21584.      Fetch a list of all countries.  LCP: CountryAll 
  21585.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21586.  
  21587.      Fetch a paired list of countries and their native language descriptions, 
  21588.      sorted by english description.  LCP: CountryEngNat 
  21589.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21590.  
  21591.      Fetch a paired list of native language country descriptions, and the 
  21592.      english name of the country. 
  21593.      bool retrieveFromNetCode() 
  21594.  
  21595.      Determine the country that uses the currently set NetCode.  Fills all the 
  21596.      other country attributes with values. LCP: CountryAttNetCode 
  21597.      bool retrieveFromDesc() 
  21598.  
  21599.      Determine the country that uses the currently set description.  Fills all 
  21600.      the other country attributes with values.  LCP: CountryAttribs 
  21601.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21602.  
  21603.      Determine the primary language of the current country.  "Desc" must be 
  21604.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21605.      CountryPrimLang 
  21606.      bool getAllLanguages(vecString &Languages) 
  21607.  
  21608.      Determine all the languages used by the current country.  "Desc" must be 
  21609.      already set.  The result is returned in priority order (highest priority 
  21610.      first) in vecString &Languages.  LCP: CountryLanguages 
  21611.      bool getLanguageList(vecString &Languages) 
  21612.  
  21613.      Get a list of all possible languages, in alphabetical order, returned in 
  21614.      vecString &Languages.  LCP: CountryLangList 
  21615.      bool getLanguageListEngNat(mapString &Languages) 
  21616.  
  21617.      Get a map of all possible languages, their native description in 
  21618.      alphabetical order by english description, returned in in vecString 
  21619.      &Languages.  LCP: CountryLangListEngNat 
  21620.  
  21621.   Delete a country 
  21622.      bool deleteFromDesc() 
  21623.  
  21624.      Delete the country that uses the currently set description.  LCP: 
  21625.      CountryDelete 
  21626.  
  21627.   Set data members 
  21628.      bool setAll(mapString &FieldValues) 
  21629.  
  21630.      Sets all the data members of a topic using the mapString which is passed 
  21631.      to it.  Only the fields present in the mapString are updated, the other 
  21632.      fields are untouched.  LCP: CountryUpdate 
  21633.      bool setDesc(const string &DescSetting) 
  21634.  
  21635.      Set the short description 
  21636.      bool setDescLong(const string &DescLongSetting) 
  21637.  
  21638.      Set the long description 
  21639.      bool setDescNative(const string &DescNativeSetting) 
  21640.  
  21641.      Set the native language description 
  21642.      bool setNetCode(const string &NetCodeSetting) 
  21643.  
  21644.      Set the internet code for this country 
  21645.      bool erase() 
  21646.  
  21647.      Sets all the data members to empty 
  21648.  
  21649.   Get data members 
  21650.      bool getAll(mapString &FieldValues) 
  21651.  
  21652.      Return a mapString of all the data members of this topic. The key is the 
  21653.      variable name.  LCP: CountryAttribs 
  21654.      string getDesc() 
  21655.  
  21656.      Get the short description 
  21657.      string getDescLong() 
  21658.  
  21659.      Get the long description 
  21660.      string getDescNative() 
  21661.  
  21662.      Get the native language description 
  21663.      string getNetCode() 
  21664.  
  21665.      Get the internet code for this country 
  21666.  
  21667.  
  21668. ΓòÉΓòÉΓòÉ <hidden> ΓöÉ ΓòÉΓòÉΓòÉ
  21669.  
  21670.  
  21671. lyris_Country Class 
  21672.  
  21673.      class lyris_Country 
  21674.  
  21675.      For determining what countries exist, and what languages are spoken & 
  21676.      preferred in each country 
  21677.  
  21678.      Defined in: COUNTRY.H 
  21679.  
  21680.   Create a new country 
  21681.  
  21682.       bool createNew() 
  21683.  
  21684.      Creates a new country/language table row.  LCP: CountryCreate 
  21685.      bool updateDatabase() 
  21686.  
  21687.      Save the current country with the data members that have changed.  LCP: 
  21688.      CountryUpdate 
  21689.      bool VerifyFields() 
  21690.  
  21691.      Verify that all required fields are filled in. 
  21692.  
  21693.   Retrieve data from the database 
  21694.      bool fetchAllCountries(vecString &AllCountries) 
  21695.  
  21696.      Fetch a list of all countries.  LCP: CountryAll 
  21697.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21698.  
  21699.      Fetch a paired list of countries and their native language descriptions, 
  21700.      sorted by english description.  LCP: CountryEngNat 
  21701.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21702.  
  21703.      Fetch a paired list of native language country descriptions, and the 
  21704.      english name of the country. 
  21705.      bool retrieveFromNetCode() 
  21706.  
  21707.      Determine the country that uses the currently set NetCode.  Fills all the 
  21708.      other country attributes with values. LCP: CountryAttNetCode 
  21709.      bool retrieveFromDesc() 
  21710.  
  21711.      Determine the country that uses the currently set description.  Fills all 
  21712.      the other country attributes with values.  LCP: CountryAttribs 
  21713.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21714.  
  21715.      Determine the primary language of the current country.  "Desc" must be 
  21716.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21717.      CountryPrimLang 
  21718.      bool getAllLanguages(vecString &Languages) 
  21719.  
  21720.      Determine all the languages used by the current country.  "Desc" must be 
  21721.      already set.  The result is returned in priority order (highest priority 
  21722.      first) in vecString &Languages.  LCP: CountryLanguages 
  21723.      bool getLanguageList(vecString &Languages) 
  21724.  
  21725.      Get a list of all possible languages, in alphabetical order, returned in 
  21726.      vecString &Languages.  LCP: CountryLangList 
  21727.      bool getLanguageListEngNat(mapString &Languages) 
  21728.  
  21729.      Get a map of all possible languages, their native description in 
  21730.      alphabetical order by english description, returned in in vecString 
  21731.      &Languages.  LCP: CountryLangListEngNat 
  21732.  
  21733.   Delete a country 
  21734.      bool deleteFromDesc() 
  21735.  
  21736.      Delete the country that uses the currently set description.  LCP: 
  21737.      CountryDelete 
  21738.  
  21739.   Set data members 
  21740.      bool setAll(mapString &FieldValues) 
  21741.  
  21742.      Sets all the data members of a topic using the mapString which is passed 
  21743.      to it.  Only the fields present in the mapString are updated, the other 
  21744.      fields are untouched.  LCP: CountryUpdate 
  21745.      bool setDesc(const string &DescSetting) 
  21746.  
  21747.      Set the short description 
  21748.      bool setDescLong(const string &DescLongSetting) 
  21749.  
  21750.      Set the long description 
  21751.      bool setDescNative(const string &DescNativeSetting) 
  21752.  
  21753.      Set the native language description 
  21754.      bool setNetCode(const string &NetCodeSetting) 
  21755.  
  21756.      Set the internet code for this country 
  21757.      bool erase() 
  21758.  
  21759.      Sets all the data members to empty 
  21760.  
  21761.   Get data members 
  21762.      bool getAll(mapString &FieldValues) 
  21763.  
  21764.      Return a mapString of all the data members of this topic. The key is the 
  21765.      variable name.  LCP: CountryAttribs 
  21766.      string getDesc() 
  21767.  
  21768.      Get the short description 
  21769.      string getDescLong() 
  21770.  
  21771.      Get the long description 
  21772.      string getDescNative() 
  21773.  
  21774.      Get the native language description 
  21775.      string getNetCode() 
  21776.  
  21777.      Get the internet code for this country 
  21778.  
  21779.  
  21780. ΓòÉΓòÉΓòÉ <hidden> Γöö ΓòÉΓòÉΓòÉ
  21781.  
  21782.  
  21783. lyris_Country Class 
  21784.  
  21785.      class lyris_Country 
  21786.  
  21787.      For determining what countries exist, and what languages are spoken & 
  21788.      preferred in each country 
  21789.  
  21790.      Defined in: COUNTRY.H 
  21791.  
  21792.   Create a new country 
  21793.  
  21794.       bool createNew() 
  21795.  
  21796.      Creates a new country/language table row.  LCP: CountryCreate 
  21797.      bool updateDatabase() 
  21798.  
  21799.      Save the current country with the data members that have changed.  LCP: 
  21800.      CountryUpdate 
  21801.      bool VerifyFields() 
  21802.  
  21803.      Verify that all required fields are filled in. 
  21804.  
  21805.   Retrieve data from the database 
  21806.      bool fetchAllCountries(vecString &AllCountries) 
  21807.  
  21808.      Fetch a list of all countries.  LCP: CountryAll 
  21809.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21810.  
  21811.      Fetch a paired list of countries and their native language descriptions, 
  21812.      sorted by english description.  LCP: CountryEngNat 
  21813.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21814.  
  21815.      Fetch a paired list of native language country descriptions, and the 
  21816.      english name of the country. 
  21817.      bool retrieveFromNetCode() 
  21818.  
  21819.      Determine the country that uses the currently set NetCode.  Fills all the 
  21820.      other country attributes with values. LCP: CountryAttNetCode 
  21821.      bool retrieveFromDesc() 
  21822.  
  21823.      Determine the country that uses the currently set description.  Fills all 
  21824.      the other country attributes with values.  LCP: CountryAttribs 
  21825.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21826.  
  21827.      Determine the primary language of the current country.  "Desc" must be 
  21828.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21829.      CountryPrimLang 
  21830.      bool getAllLanguages(vecString &Languages) 
  21831.  
  21832.      Determine all the languages used by the current country.  "Desc" must be 
  21833.      already set.  The result is returned in priority order (highest priority 
  21834.      first) in vecString &Languages.  LCP: CountryLanguages 
  21835.      bool getLanguageList(vecString &Languages) 
  21836.  
  21837.      Get a list of all possible languages, in alphabetical order, returned in 
  21838.      vecString &Languages.  LCP: CountryLangList 
  21839.      bool getLanguageListEngNat(mapString &Languages) 
  21840.  
  21841.      Get a map of all possible languages, their native description in 
  21842.      alphabetical order by english description, returned in in vecString 
  21843.      &Languages.  LCP: CountryLangListEngNat 
  21844.  
  21845.   Delete a country 
  21846.      bool deleteFromDesc() 
  21847.  
  21848.      Delete the country that uses the currently set description.  LCP: 
  21849.      CountryDelete 
  21850.  
  21851.   Set data members 
  21852.      bool setAll(mapString &FieldValues) 
  21853.  
  21854.      Sets all the data members of a topic using the mapString which is passed 
  21855.      to it.  Only the fields present in the mapString are updated, the other 
  21856.      fields are untouched.  LCP: CountryUpdate 
  21857.      bool setDesc(const string &DescSetting) 
  21858.  
  21859.      Set the short description 
  21860.      bool setDescLong(const string &DescLongSetting) 
  21861.  
  21862.      Set the long description 
  21863.      bool setDescNative(const string &DescNativeSetting) 
  21864.  
  21865.      Set the native language description 
  21866.      bool setNetCode(const string &NetCodeSetting) 
  21867.  
  21868.      Set the internet code for this country 
  21869.      bool erase() 
  21870.  
  21871.      Sets all the data members to empty 
  21872.  
  21873.   Get data members 
  21874.      bool getAll(mapString &FieldValues) 
  21875.  
  21876.      Return a mapString of all the data members of this topic. The key is the 
  21877.      variable name.  LCP: CountryAttribs 
  21878.      string getDesc() 
  21879.  
  21880.      Get the short description 
  21881.      string getDescLong() 
  21882.  
  21883.      Get the long description 
  21884.      string getDescNative() 
  21885.  
  21886.      Get the native language description 
  21887.      string getNetCode() 
  21888.  
  21889.      Get the internet code for this country 
  21890.  
  21891.  
  21892. ΓòÉΓòÉΓòÉ <hidden> Γö┤ ΓòÉΓòÉΓòÉ
  21893.  
  21894.  
  21895. lyris_Country Class 
  21896.  
  21897.      class lyris_Country 
  21898.  
  21899.      For determining what countries exist, and what languages are spoken & 
  21900.      preferred in each country 
  21901.  
  21902.      Defined in: COUNTRY.H 
  21903.  
  21904.   Create a new country 
  21905.  
  21906.       bool createNew() 
  21907.  
  21908.      Creates a new country/language table row.  LCP: CountryCreate 
  21909.      bool updateDatabase() 
  21910.  
  21911.      Save the current country with the data members that have changed.  LCP: 
  21912.      CountryUpdate 
  21913.      bool VerifyFields() 
  21914.  
  21915.      Verify that all required fields are filled in. 
  21916.  
  21917.   Retrieve data from the database 
  21918.      bool fetchAllCountries(vecString &AllCountries) 
  21919.  
  21920.      Fetch a list of all countries.  LCP: CountryAll 
  21921.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  21922.  
  21923.      Fetch a paired list of countries and their native language descriptions, 
  21924.      sorted by english description.  LCP: CountryEngNat 
  21925.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  21926.  
  21927.      Fetch a paired list of native language country descriptions, and the 
  21928.      english name of the country. 
  21929.      bool retrieveFromNetCode() 
  21930.  
  21931.      Determine the country that uses the currently set NetCode.  Fills all the 
  21932.      other country attributes with values. LCP: CountryAttNetCode 
  21933.      bool retrieveFromDesc() 
  21934.  
  21935.      Determine the country that uses the currently set description.  Fills all 
  21936.      the other country attributes with values.  LCP: CountryAttribs 
  21937.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  21938.  
  21939.      Determine the primary language of the current country.  "Desc" must be 
  21940.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  21941.      CountryPrimLang 
  21942.      bool getAllLanguages(vecString &Languages) 
  21943.  
  21944.      Determine all the languages used by the current country.  "Desc" must be 
  21945.      already set.  The result is returned in priority order (highest priority 
  21946.      first) in vecString &Languages.  LCP: CountryLanguages 
  21947.      bool getLanguageList(vecString &Languages) 
  21948.  
  21949.      Get a list of all possible languages, in alphabetical order, returned in 
  21950.      vecString &Languages.  LCP: CountryLangList 
  21951.      bool getLanguageListEngNat(mapString &Languages) 
  21952.  
  21953.      Get a map of all possible languages, their native description in 
  21954.      alphabetical order by english description, returned in in vecString 
  21955.      &Languages.  LCP: CountryLangListEngNat 
  21956.  
  21957.   Delete a country 
  21958.      bool deleteFromDesc() 
  21959.  
  21960.      Delete the country that uses the currently set description.  LCP: 
  21961.      CountryDelete 
  21962.  
  21963.   Set data members 
  21964.      bool setAll(mapString &FieldValues) 
  21965.  
  21966.      Sets all the data members of a topic using the mapString which is passed 
  21967.      to it.  Only the fields present in the mapString are updated, the other 
  21968.      fields are untouched.  LCP: CountryUpdate 
  21969.      bool setDesc(const string &DescSetting) 
  21970.  
  21971.      Set the short description 
  21972.      bool setDescLong(const string &DescLongSetting) 
  21973.  
  21974.      Set the long description 
  21975.      bool setDescNative(const string &DescNativeSetting) 
  21976.  
  21977.      Set the native language description 
  21978.      bool setNetCode(const string &NetCodeSetting) 
  21979.  
  21980.      Set the internet code for this country 
  21981.      bool erase() 
  21982.  
  21983.      Sets all the data members to empty 
  21984.  
  21985.   Get data members 
  21986.      bool getAll(mapString &FieldValues) 
  21987.  
  21988.      Return a mapString of all the data members of this topic. The key is the 
  21989.      variable name.  LCP: CountryAttribs 
  21990.      string getDesc() 
  21991.  
  21992.      Get the short description 
  21993.      string getDescLong() 
  21994.  
  21995.      Get the long description 
  21996.      string getDescNative() 
  21997.  
  21998.      Get the native language description 
  21999.      string getNetCode() 
  22000.  
  22001.      Get the internet code for this country 
  22002.  
  22003.  
  22004. ΓòÉΓòÉΓòÉ <hidden> Γö¼ ΓòÉΓòÉΓòÉ
  22005.  
  22006.  
  22007. lyris_Country Class 
  22008.  
  22009.      class lyris_Country 
  22010.  
  22011.      For determining what countries exist, and what languages are spoken & 
  22012.      preferred in each country 
  22013.  
  22014.      Defined in: COUNTRY.H 
  22015.  
  22016.   Create a new country 
  22017.  
  22018.       bool createNew() 
  22019.  
  22020.      Creates a new country/language table row.  LCP: CountryCreate 
  22021.      bool updateDatabase() 
  22022.  
  22023.      Save the current country with the data members that have changed.  LCP: 
  22024.      CountryUpdate 
  22025.      bool VerifyFields() 
  22026.  
  22027.      Verify that all required fields are filled in. 
  22028.  
  22029.   Retrieve data from the database 
  22030.      bool fetchAllCountries(vecString &AllCountries) 
  22031.  
  22032.      Fetch a list of all countries.  LCP: CountryAll 
  22033.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22034.  
  22035.      Fetch a paired list of countries and their native language descriptions, 
  22036.      sorted by english description.  LCP: CountryEngNat 
  22037.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22038.  
  22039.      Fetch a paired list of native language country descriptions, and the 
  22040.      english name of the country. 
  22041.      bool retrieveFromNetCode() 
  22042.  
  22043.      Determine the country that uses the currently set NetCode.  Fills all the 
  22044.      other country attributes with values. LCP: CountryAttNetCode 
  22045.      bool retrieveFromDesc() 
  22046.  
  22047.      Determine the country that uses the currently set description.  Fills all 
  22048.      the other country attributes with values.  LCP: CountryAttribs 
  22049.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22050.  
  22051.      Determine the primary language of the current country.  "Desc" must be 
  22052.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22053.      CountryPrimLang 
  22054.      bool getAllLanguages(vecString &Languages) 
  22055.  
  22056.      Determine all the languages used by the current country.  "Desc" must be 
  22057.      already set.  The result is returned in priority order (highest priority 
  22058.      first) in vecString &Languages.  LCP: CountryLanguages 
  22059.      bool getLanguageList(vecString &Languages) 
  22060.  
  22061.      Get a list of all possible languages, in alphabetical order, returned in 
  22062.      vecString &Languages.  LCP: CountryLangList 
  22063.      bool getLanguageListEngNat(mapString &Languages) 
  22064.  
  22065.      Get a map of all possible languages, their native description in 
  22066.      alphabetical order by english description, returned in in vecString 
  22067.      &Languages.  LCP: CountryLangListEngNat 
  22068.  
  22069.   Delete a country 
  22070.      bool deleteFromDesc() 
  22071.  
  22072.      Delete the country that uses the currently set description.  LCP: 
  22073.      CountryDelete 
  22074.  
  22075.   Set data members 
  22076.      bool setAll(mapString &FieldValues) 
  22077.  
  22078.      Sets all the data members of a topic using the mapString which is passed 
  22079.      to it.  Only the fields present in the mapString are updated, the other 
  22080.      fields are untouched.  LCP: CountryUpdate 
  22081.      bool setDesc(const string &DescSetting) 
  22082.  
  22083.      Set the short description 
  22084.      bool setDescLong(const string &DescLongSetting) 
  22085.  
  22086.      Set the long description 
  22087.      bool setDescNative(const string &DescNativeSetting) 
  22088.  
  22089.      Set the native language description 
  22090.      bool setNetCode(const string &NetCodeSetting) 
  22091.  
  22092.      Set the internet code for this country 
  22093.      bool erase() 
  22094.  
  22095.      Sets all the data members to empty 
  22096.  
  22097.   Get data members 
  22098.      bool getAll(mapString &FieldValues) 
  22099.  
  22100.      Return a mapString of all the data members of this topic. The key is the 
  22101.      variable name.  LCP: CountryAttribs 
  22102.      string getDesc() 
  22103.  
  22104.      Get the short description 
  22105.      string getDescLong() 
  22106.  
  22107.      Get the long description 
  22108.      string getDescNative() 
  22109.  
  22110.      Get the native language description 
  22111.      string getNetCode() 
  22112.  
  22113.      Get the internet code for this country 
  22114.  
  22115.  
  22116. ΓòÉΓòÉΓòÉ <hidden> Γö£ ΓòÉΓòÉΓòÉ
  22117.  
  22118.  
  22119. lyris_Country Class 
  22120.  
  22121.      class lyris_Country 
  22122.  
  22123.      For determining what countries exist, and what languages are spoken & 
  22124.      preferred in each country 
  22125.  
  22126.      Defined in: COUNTRY.H 
  22127.  
  22128.   Create a new country 
  22129.  
  22130.       bool createNew() 
  22131.  
  22132.      Creates a new country/language table row.  LCP: CountryCreate 
  22133.      bool updateDatabase() 
  22134.  
  22135.      Save the current country with the data members that have changed.  LCP: 
  22136.      CountryUpdate 
  22137.      bool VerifyFields() 
  22138.  
  22139.      Verify that all required fields are filled in. 
  22140.  
  22141.   Retrieve data from the database 
  22142.      bool fetchAllCountries(vecString &AllCountries) 
  22143.  
  22144.      Fetch a list of all countries.  LCP: CountryAll 
  22145.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22146.  
  22147.      Fetch a paired list of countries and their native language descriptions, 
  22148.      sorted by english description.  LCP: CountryEngNat 
  22149.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22150.  
  22151.      Fetch a paired list of native language country descriptions, and the 
  22152.      english name of the country. 
  22153.      bool retrieveFromNetCode() 
  22154.  
  22155.      Determine the country that uses the currently set NetCode.  Fills all the 
  22156.      other country attributes with values. LCP: CountryAttNetCode 
  22157.      bool retrieveFromDesc() 
  22158.  
  22159.      Determine the country that uses the currently set description.  Fills all 
  22160.      the other country attributes with values.  LCP: CountryAttribs 
  22161.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22162.  
  22163.      Determine the primary language of the current country.  "Desc" must be 
  22164.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22165.      CountryPrimLang 
  22166.      bool getAllLanguages(vecString &Languages) 
  22167.  
  22168.      Determine all the languages used by the current country.  "Desc" must be 
  22169.      already set.  The result is returned in priority order (highest priority 
  22170.      first) in vecString &Languages.  LCP: CountryLanguages 
  22171.      bool getLanguageList(vecString &Languages) 
  22172.  
  22173.      Get a list of all possible languages, in alphabetical order, returned in 
  22174.      vecString &Languages.  LCP: CountryLangList 
  22175.      bool getLanguageListEngNat(mapString &Languages) 
  22176.  
  22177.      Get a map of all possible languages, their native description in 
  22178.      alphabetical order by english description, returned in in vecString 
  22179.      &Languages.  LCP: CountryLangListEngNat 
  22180.  
  22181.   Delete a country 
  22182.      bool deleteFromDesc() 
  22183.  
  22184.      Delete the country that uses the currently set description.  LCP: 
  22185.      CountryDelete 
  22186.  
  22187.   Set data members 
  22188.      bool setAll(mapString &FieldValues) 
  22189.  
  22190.      Sets all the data members of a topic using the mapString which is passed 
  22191.      to it.  Only the fields present in the mapString are updated, the other 
  22192.      fields are untouched.  LCP: CountryUpdate 
  22193.      bool setDesc(const string &DescSetting) 
  22194.  
  22195.      Set the short description 
  22196.      bool setDescLong(const string &DescLongSetting) 
  22197.  
  22198.      Set the long description 
  22199.      bool setDescNative(const string &DescNativeSetting) 
  22200.  
  22201.      Set the native language description 
  22202.      bool setNetCode(const string &NetCodeSetting) 
  22203.  
  22204.      Set the internet code for this country 
  22205.      bool erase() 
  22206.  
  22207.      Sets all the data members to empty 
  22208.  
  22209.   Get data members 
  22210.      bool getAll(mapString &FieldValues) 
  22211.  
  22212.      Return a mapString of all the data members of this topic. The key is the 
  22213.      variable name.  LCP: CountryAttribs 
  22214.      string getDesc() 
  22215.  
  22216.      Get the short description 
  22217.      string getDescLong() 
  22218.  
  22219.      Get the long description 
  22220.      string getDescNative() 
  22221.  
  22222.      Get the native language description 
  22223.      string getNetCode() 
  22224.  
  22225.      Get the internet code for this country 
  22226.  
  22227.  
  22228. ΓòÉΓòÉΓòÉ <hidden> ΓöÇ ΓòÉΓòÉΓòÉ
  22229.  
  22230.  
  22231. lyris_Country Class 
  22232.  
  22233.      class lyris_Country 
  22234.  
  22235.      For determining what countries exist, and what languages are spoken & 
  22236.      preferred in each country 
  22237.  
  22238.      Defined in: COUNTRY.H 
  22239.  
  22240.   Create a new country 
  22241.  
  22242.       bool createNew() 
  22243.  
  22244.      Creates a new country/language table row.  LCP: CountryCreate 
  22245.      bool updateDatabase() 
  22246.  
  22247.      Save the current country with the data members that have changed.  LCP: 
  22248.      CountryUpdate 
  22249.      bool VerifyFields() 
  22250.  
  22251.      Verify that all required fields are filled in. 
  22252.  
  22253.   Retrieve data from the database 
  22254.      bool fetchAllCountries(vecString &AllCountries) 
  22255.  
  22256.      Fetch a list of all countries.  LCP: CountryAll 
  22257.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22258.  
  22259.      Fetch a paired list of countries and their native language descriptions, 
  22260.      sorted by english description.  LCP: CountryEngNat 
  22261.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22262.  
  22263.      Fetch a paired list of native language country descriptions, and the 
  22264.      english name of the country. 
  22265.      bool retrieveFromNetCode() 
  22266.  
  22267.      Determine the country that uses the currently set NetCode.  Fills all the 
  22268.      other country attributes with values. LCP: CountryAttNetCode 
  22269.      bool retrieveFromDesc() 
  22270.  
  22271.      Determine the country that uses the currently set description.  Fills all 
  22272.      the other country attributes with values.  LCP: CountryAttribs 
  22273.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22274.  
  22275.      Determine the primary language of the current country.  "Desc" must be 
  22276.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22277.      CountryPrimLang 
  22278.      bool getAllLanguages(vecString &Languages) 
  22279.  
  22280.      Determine all the languages used by the current country.  "Desc" must be 
  22281.      already set.  The result is returned in priority order (highest priority 
  22282.      first) in vecString &Languages.  LCP: CountryLanguages 
  22283.      bool getLanguageList(vecString &Languages) 
  22284.  
  22285.      Get a list of all possible languages, in alphabetical order, returned in 
  22286.      vecString &Languages.  LCP: CountryLangList 
  22287.      bool getLanguageListEngNat(mapString &Languages) 
  22288.  
  22289.      Get a map of all possible languages, their native description in 
  22290.      alphabetical order by english description, returned in in vecString 
  22291.      &Languages.  LCP: CountryLangListEngNat 
  22292.  
  22293.   Delete a country 
  22294.      bool deleteFromDesc() 
  22295.  
  22296.      Delete the country that uses the currently set description.  LCP: 
  22297.      CountryDelete 
  22298.  
  22299.   Set data members 
  22300.      bool setAll(mapString &FieldValues) 
  22301.  
  22302.      Sets all the data members of a topic using the mapString which is passed 
  22303.      to it.  Only the fields present in the mapString are updated, the other 
  22304.      fields are untouched.  LCP: CountryUpdate 
  22305.      bool setDesc(const string &DescSetting) 
  22306.  
  22307.      Set the short description 
  22308.      bool setDescLong(const string &DescLongSetting) 
  22309.  
  22310.      Set the long description 
  22311.      bool setDescNative(const string &DescNativeSetting) 
  22312.  
  22313.      Set the native language description 
  22314.      bool setNetCode(const string &NetCodeSetting) 
  22315.  
  22316.      Set the internet code for this country 
  22317.      bool erase() 
  22318.  
  22319.      Sets all the data members to empty 
  22320.  
  22321.   Get data members 
  22322.      bool getAll(mapString &FieldValues) 
  22323.  
  22324.      Return a mapString of all the data members of this topic. The key is the 
  22325.      variable name.  LCP: CountryAttribs 
  22326.      string getDesc() 
  22327.  
  22328.      Get the short description 
  22329.      string getDescLong() 
  22330.  
  22331.      Get the long description 
  22332.      string getDescNative() 
  22333.  
  22334.      Get the native language description 
  22335.      string getNetCode() 
  22336.  
  22337.      Get the internet code for this country 
  22338.  
  22339.  
  22340. ΓòÉΓòÉΓòÉ <hidden> Γö╝ ΓòÉΓòÉΓòÉ
  22341.  
  22342.  
  22343. lyris_Country Class 
  22344.  
  22345.      class lyris_Country 
  22346.  
  22347.      For determining what countries exist, and what languages are spoken & 
  22348.      preferred in each country 
  22349.  
  22350.      Defined in: COUNTRY.H 
  22351.  
  22352.   Create a new country 
  22353.  
  22354.       bool createNew() 
  22355.  
  22356.      Creates a new country/language table row.  LCP: CountryCreate 
  22357.      bool updateDatabase() 
  22358.  
  22359.      Save the current country with the data members that have changed.  LCP: 
  22360.      CountryUpdate 
  22361.      bool VerifyFields() 
  22362.  
  22363.      Verify that all required fields are filled in. 
  22364.  
  22365.   Retrieve data from the database 
  22366.      bool fetchAllCountries(vecString &AllCountries) 
  22367.  
  22368.      Fetch a list of all countries.  LCP: CountryAll 
  22369.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22370.  
  22371.      Fetch a paired list of countries and their native language descriptions, 
  22372.      sorted by english description.  LCP: CountryEngNat 
  22373.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22374.  
  22375.      Fetch a paired list of native language country descriptions, and the 
  22376.      english name of the country. 
  22377.      bool retrieveFromNetCode() 
  22378.  
  22379.      Determine the country that uses the currently set NetCode.  Fills all the 
  22380.      other country attributes with values. LCP: CountryAttNetCode 
  22381.      bool retrieveFromDesc() 
  22382.  
  22383.      Determine the country that uses the currently set description.  Fills all 
  22384.      the other country attributes with values.  LCP: CountryAttribs 
  22385.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22386.  
  22387.      Determine the primary language of the current country.  "Desc" must be 
  22388.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22389.      CountryPrimLang 
  22390.      bool getAllLanguages(vecString &Languages) 
  22391.  
  22392.      Determine all the languages used by the current country.  "Desc" must be 
  22393.      already set.  The result is returned in priority order (highest priority 
  22394.      first) in vecString &Languages.  LCP: CountryLanguages 
  22395.      bool getLanguageList(vecString &Languages) 
  22396.  
  22397.      Get a list of all possible languages, in alphabetical order, returned in 
  22398.      vecString &Languages.  LCP: CountryLangList 
  22399.      bool getLanguageListEngNat(mapString &Languages) 
  22400.  
  22401.      Get a map of all possible languages, their native description in 
  22402.      alphabetical order by english description, returned in in vecString 
  22403.      &Languages.  LCP: CountryLangListEngNat 
  22404.  
  22405.   Delete a country 
  22406.      bool deleteFromDesc() 
  22407.  
  22408.      Delete the country that uses the currently set description.  LCP: 
  22409.      CountryDelete 
  22410.  
  22411.   Set data members 
  22412.      bool setAll(mapString &FieldValues) 
  22413.  
  22414.      Sets all the data members of a topic using the mapString which is passed 
  22415.      to it.  Only the fields present in the mapString are updated, the other 
  22416.      fields are untouched.  LCP: CountryUpdate 
  22417.      bool setDesc(const string &DescSetting) 
  22418.  
  22419.      Set the short description 
  22420.      bool setDescLong(const string &DescLongSetting) 
  22421.  
  22422.      Set the long description 
  22423.      bool setDescNative(const string &DescNativeSetting) 
  22424.  
  22425.      Set the native language description 
  22426.      bool setNetCode(const string &NetCodeSetting) 
  22427.  
  22428.      Set the internet code for this country 
  22429.      bool erase() 
  22430.  
  22431.      Sets all the data members to empty 
  22432.  
  22433.   Get data members 
  22434.      bool getAll(mapString &FieldValues) 
  22435.  
  22436.      Return a mapString of all the data members of this topic. The key is the 
  22437.      variable name.  LCP: CountryAttribs 
  22438.      string getDesc() 
  22439.  
  22440.      Get the short description 
  22441.      string getDescLong() 
  22442.  
  22443.      Get the long description 
  22444.      string getDescNative() 
  22445.  
  22446.      Get the native language description 
  22447.      string getNetCode() 
  22448.  
  22449.      Get the internet code for this country 
  22450.  
  22451.  
  22452. ΓòÉΓòÉΓòÉ <hidden> Γò₧ ΓòÉΓòÉΓòÉ
  22453.  
  22454.  
  22455. lyris_Country Class 
  22456.  
  22457.      class lyris_Country 
  22458.  
  22459.      For determining what countries exist, and what languages are spoken & 
  22460.      preferred in each country 
  22461.  
  22462.      Defined in: COUNTRY.H 
  22463.  
  22464.   Create a new country 
  22465.  
  22466.       bool createNew() 
  22467.  
  22468.      Creates a new country/language table row.  LCP: CountryCreate 
  22469.      bool updateDatabase() 
  22470.  
  22471.      Save the current country with the data members that have changed.  LCP: 
  22472.      CountryUpdate 
  22473.      bool VerifyFields() 
  22474.  
  22475.      Verify that all required fields are filled in. 
  22476.  
  22477.   Retrieve data from the database 
  22478.      bool fetchAllCountries(vecString &AllCountries) 
  22479.  
  22480.      Fetch a list of all countries.  LCP: CountryAll 
  22481.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22482.  
  22483.      Fetch a paired list of countries and their native language descriptions, 
  22484.      sorted by english description.  LCP: CountryEngNat 
  22485.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22486.  
  22487.      Fetch a paired list of native language country descriptions, and the 
  22488.      english name of the country. 
  22489.      bool retrieveFromNetCode() 
  22490.  
  22491.      Determine the country that uses the currently set NetCode.  Fills all the 
  22492.      other country attributes with values. LCP: CountryAttNetCode 
  22493.      bool retrieveFromDesc() 
  22494.  
  22495.      Determine the country that uses the currently set description.  Fills all 
  22496.      the other country attributes with values.  LCP: CountryAttribs 
  22497.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22498.  
  22499.      Determine the primary language of the current country.  "Desc" must be 
  22500.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22501.      CountryPrimLang 
  22502.      bool getAllLanguages(vecString &Languages) 
  22503.  
  22504.      Determine all the languages used by the current country.  "Desc" must be 
  22505.      already set.  The result is returned in priority order (highest priority 
  22506.      first) in vecString &Languages.  LCP: CountryLanguages 
  22507.      bool getLanguageList(vecString &Languages) 
  22508.  
  22509.      Get a list of all possible languages, in alphabetical order, returned in 
  22510.      vecString &Languages.  LCP: CountryLangList 
  22511.      bool getLanguageListEngNat(mapString &Languages) 
  22512.  
  22513.      Get a map of all possible languages, their native description in 
  22514.      alphabetical order by english description, returned in in vecString 
  22515.      &Languages.  LCP: CountryLangListEngNat 
  22516.  
  22517.   Delete a country 
  22518.      bool deleteFromDesc() 
  22519.  
  22520.      Delete the country that uses the currently set description.  LCP: 
  22521.      CountryDelete 
  22522.  
  22523.   Set data members 
  22524.      bool setAll(mapString &FieldValues) 
  22525.  
  22526.      Sets all the data members of a topic using the mapString which is passed 
  22527.      to it.  Only the fields present in the mapString are updated, the other 
  22528.      fields are untouched.  LCP: CountryUpdate 
  22529.      bool setDesc(const string &DescSetting) 
  22530.  
  22531.      Set the short description 
  22532.      bool setDescLong(const string &DescLongSetting) 
  22533.  
  22534.      Set the long description 
  22535.      bool setDescNative(const string &DescNativeSetting) 
  22536.  
  22537.      Set the native language description 
  22538.      bool setNetCode(const string &NetCodeSetting) 
  22539.  
  22540.      Set the internet code for this country 
  22541.      bool erase() 
  22542.  
  22543.      Sets all the data members to empty 
  22544.  
  22545.   Get data members 
  22546.      bool getAll(mapString &FieldValues) 
  22547.  
  22548.      Return a mapString of all the data members of this topic. The key is the 
  22549.      variable name.  LCP: CountryAttribs 
  22550.      string getDesc() 
  22551.  
  22552.      Get the short description 
  22553.      string getDescLong() 
  22554.  
  22555.      Get the long description 
  22556.      string getDescNative() 
  22557.  
  22558.      Get the native language description 
  22559.      string getNetCode() 
  22560.  
  22561.      Get the internet code for this country 
  22562.  
  22563.  
  22564. ΓòÉΓòÉΓòÉ <hidden> ΓòÜ ΓòÉΓòÉΓòÉ
  22565.  
  22566.  
  22567. lyris_Country Class 
  22568.  
  22569.      class lyris_Country 
  22570.  
  22571.      For determining what countries exist, and what languages are spoken & 
  22572.      preferred in each country 
  22573.  
  22574.      Defined in: COUNTRY.H 
  22575.  
  22576.   Create a new country 
  22577.  
  22578.       bool createNew() 
  22579.  
  22580.      Creates a new country/language table row.  LCP: CountryCreate 
  22581.      bool updateDatabase() 
  22582.  
  22583.      Save the current country with the data members that have changed.  LCP: 
  22584.      CountryUpdate 
  22585.      bool VerifyFields() 
  22586.  
  22587.      Verify that all required fields are filled in. 
  22588.  
  22589.   Retrieve data from the database 
  22590.      bool fetchAllCountries(vecString &AllCountries) 
  22591.  
  22592.      Fetch a list of all countries.  LCP: CountryAll 
  22593.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22594.  
  22595.      Fetch a paired list of countries and their native language descriptions, 
  22596.      sorted by english description.  LCP: CountryEngNat 
  22597.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22598.  
  22599.      Fetch a paired list of native language country descriptions, and the 
  22600.      english name of the country. 
  22601.      bool retrieveFromNetCode() 
  22602.  
  22603.      Determine the country that uses the currently set NetCode.  Fills all the 
  22604.      other country attributes with values. LCP: CountryAttNetCode 
  22605.      bool retrieveFromDesc() 
  22606.  
  22607.      Determine the country that uses the currently set description.  Fills all 
  22608.      the other country attributes with values.  LCP: CountryAttribs 
  22609.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22610.  
  22611.      Determine the primary language of the current country.  "Desc" must be 
  22612.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22613.      CountryPrimLang 
  22614.      bool getAllLanguages(vecString &Languages) 
  22615.  
  22616.      Determine all the languages used by the current country.  "Desc" must be 
  22617.      already set.  The result is returned in priority order (highest priority 
  22618.      first) in vecString &Languages.  LCP: CountryLanguages 
  22619.      bool getLanguageList(vecString &Languages) 
  22620.  
  22621.      Get a list of all possible languages, in alphabetical order, returned in 
  22622.      vecString &Languages.  LCP: CountryLangList 
  22623.      bool getLanguageListEngNat(mapString &Languages) 
  22624.  
  22625.      Get a map of all possible languages, their native description in 
  22626.      alphabetical order by english description, returned in in vecString 
  22627.      &Languages.  LCP: CountryLangListEngNat 
  22628.  
  22629.   Delete a country 
  22630.      bool deleteFromDesc() 
  22631.  
  22632.      Delete the country that uses the currently set description.  LCP: 
  22633.      CountryDelete 
  22634.  
  22635.   Set data members 
  22636.      bool setAll(mapString &FieldValues) 
  22637.  
  22638.      Sets all the data members of a topic using the mapString which is passed 
  22639.      to it.  Only the fields present in the mapString are updated, the other 
  22640.      fields are untouched.  LCP: CountryUpdate 
  22641.      bool setDesc(const string &DescSetting) 
  22642.  
  22643.      Set the short description 
  22644.      bool setDescLong(const string &DescLongSetting) 
  22645.  
  22646.      Set the long description 
  22647.      bool setDescNative(const string &DescNativeSetting) 
  22648.  
  22649.      Set the native language description 
  22650.      bool setNetCode(const string &NetCodeSetting) 
  22651.  
  22652.      Set the internet code for this country 
  22653.      bool erase() 
  22654.  
  22655.      Sets all the data members to empty 
  22656.  
  22657.   Get data members 
  22658.      bool getAll(mapString &FieldValues) 
  22659.  
  22660.      Return a mapString of all the data members of this topic. The key is the 
  22661.      variable name.  LCP: CountryAttribs 
  22662.      string getDesc() 
  22663.  
  22664.      Get the short description 
  22665.      string getDescLong() 
  22666.  
  22667.      Get the long description 
  22668.      string getDescNative() 
  22669.  
  22670.      Get the native language description 
  22671.      string getNetCode() 
  22672.  
  22673.      Get the internet code for this country 
  22674.      Lists.dbf 
  22675.  
  22676.   Lists.Name.Name = "Name" 
  22677.    Lists.Name.Description = "Unique native-language name that identifies this 
  22678.   mailing list" 
  22679.    Lists.Name.DataType = DATATYPE_CHAR 
  22680.    Lists.Name.Length = STANDARD_CHAR_FIELD_SIZE 
  22681.    Lists.Name.PrimaryKey = yes 
  22682.    Lists.Name.Sort = yes 
  22683.    Lists.Name.AllowDuplicates = no 
  22684.  
  22685.    Lists.Topic.Name = "Topic" 
  22686.    Lists.Topic.Description = "Topic that this list belongs to" 
  22687.    Lists.Topic.DataType = DATATYPE_CHAR 
  22688.    Lists.Topic.Length = STANDARD_CHAR_FIELD_SIZE 
  22689.    Lists.Topic.Sort = yes 
  22690.    Lists.Topic.AllowDuplicates = yes 
  22691.  
  22692.    Lists.DescShort.Name = "DescShort" 
  22693.    Lists.DescShort.Description = "Short description of this topic (link to 
  22694.   document)" 
  22695.    Lists.DescShort.DataType = DATATYPE_CHAR 
  22696.    Lists.DescShort.Length = STANDARD_CHAR_FIELD_SIZE 
  22697.  
  22698.    Lists.DescLong.Name = "DescLong" 
  22699.    Lists.DescLong.Description = "Long description of this topic (link to 
  22700.   document)" 
  22701.    Lists.DescLong.DataType = DATATYPE_CHAR 
  22702.    Lists.DescLong.Length = STANDARD_CHAR_FIELD_SIZE 
  22703.  
  22704.    Lists.Comments.Name = "Comments" 
  22705.    Lists.Comments.Description = "Comment about this list (link to document)" 
  22706.    Lists.Comments.DataType = DATATYPE_CHAR 
  22707.    Lists.Comments.Length = STANDARD_CHAR_FIELD_SIZE 
  22708.  
  22709.    Lists.PrimLang.Name = "PrimLang" 
  22710.    Lists.PrimLang.Description = "Primary language used for this list (link to 
  22711.   language)" 
  22712.    Lists.PrimLang.DataType = DATATYPE_CHAR 
  22713.    Lists.PrimLang.Length = STANDARD_CHAR_FIELD_SIZE 
  22714.  
  22715.    Lists.SecLang.Name = "SecLang" 
  22716.    Lists.SecLang.Description = "Secondary language used for this list (link to 
  22717.   language)" 
  22718.    Lists.SecLang.DataType = DATATYPE_CHAR 
  22719.    Lists.SecLang.Length = STANDARD_CHAR_FIELD_SIZE 
  22720.  
  22721.    Lists.Admin.Name = "Admin" 
  22722.    Lists.Admin.Description = "Administrator reponsible for this list (link to 
  22723.   people)" 
  22724.    Lists.Admin.DataType = DATATYPE_CHAR 
  22725.    Lists.Admin.Length = STANDARD_CHAR_FIELD_SIZE 
  22726.  
  22727.    Lists.SponsOrg.Name = "SponsOrg" 
  22728.    Lists.SponsOrg.Description = "Organization that is sponsoring this list 
  22729.   (link to document, type is organization)" 
  22730.    Lists.SponsOrg.DataType = DATATYPE_CHAR 
  22731.    Lists.SponsOrg.Length = STANDARD_CHAR_FIELD_SIZE 
  22732.  
  22733.    Lists.URLList.Name = "URLList" 
  22734.    Lists.URLList.Description = "URL to list's home page" 
  22735.    Lists.URLList.DataType = DATATYPE_CHAR 
  22736.    Lists.URLList.Length = STANDARD_CHAR_FIELD_SIZE 
  22737.  
  22738.    Lists.URLLogo.Name = "URLLogo" 
  22739.    Lists.URLLogo.Description = "URL to GIF/JPEG list logo" 
  22740.    Lists.URLLogo.DataType = DATATYPE_CHAR 
  22741.    Lists.URLLogo.Length = STANDARD_CHAR_FIELD_SIZE 
  22742.  
  22743.    Lists.Keywords.Name = "Keywords" 
  22744.    Lists.Keywords.Description = "Keywords that describe this list" 
  22745.    Lists.Keywords.DataType = DATATYPE_CHAR 
  22746.    Lists.Keywords.Length = STANDARD_CHAR_FIELD_SIZE 
  22747.  
  22748.    Lists.MessageHdr.Name = "MessageHdr" 
  22749.    Lists.MessageHdr.Description = "Text that should be pre-prepended to every 
  22750.   message" 
  22751.    Lists.MessageHdr.DataType = DATATYPE_MEMO 
  22752.    Lists.MessageHdr.Length = STANDARD_MEMO_FIELD_SIZE 
  22753.  
  22754.    Lists.MessageFtr.Name = "MessageFtr" 
  22755.    Lists.MessageFtr.Description = "Text that should be appended to every 
  22756.   message" 
  22757.    Lists.MessageFtr.DataType = DATATYPE_MEMO 
  22758.    Lists.MessageFtr.Length = STANDARD_MEMO_FIELD_SIZE 
  22759.  
  22760.    Lists.SMTPHdrs.Name = "SMTPHdrs" 
  22761.    Lists.SMTPHdrs.Description = "Text that should be included in the SMTP 
  22762.   header of every message" 
  22763.    Lists.SMTPHdrs.DataType = DATATYPE_MEMO 
  22764.    Lists.SMTPHdrs.Length = STANDARD_MEMO_FIELD_SIZE 
  22765.  
  22766.    Lists.ArchivKeep.Name = "ArchivKeep" 
  22767.    Lists.ArchivKeep.Description = "Keep archives for how many days (0=forever, 
  22768.   1-10,000 days)" 
  22769.    Lists.ArchivKeep.DataType = DATATYPE_NUMERIC 
  22770.    Lists.ArchivKeep.Length = 5 
  22771.  
  22772.    Lists.VisibGlobl.Name = "VisibGlobl" 
  22773.    Lists.VisibGlobl.Description = "Visible via 'list global' ?" 
  22774.    Lists.VisibGlobl.DataType = DATATYPE_LOGICAL 
  22775.    Lists.VisibGlobl.Length = 1 
  22776.  
  22777.    Lists.RelPending.Name = "RelPending" 
  22778.    Lists.RelPending.Description = "If a pending message hasn't been aproved 
  22779.   after X days, then send it anyways." 
  22780.    Lists.RelPending.DataType = DATATYPE_NUMERIC 
  22781.    Lists.RelPending.Length = 5 
  22782.  
  22783.    Lists.PrsrvXTags.Name = "PrsrvXTags" 
  22784.    Lists.PrsrvXTags.Description = "Should we preserve X-.... SMTP header tags" 
  22785.    Lists.PrsrvXTags.DataType = DATATYPE_LOGICAL 
  22786.    Lists.PrsrvXTags.Length = 1 
  22787.  
  22788.    Lists.MaxMessNum.Name = "MaxMessNum" 
  22789.    Lists.MaxMessNum.Description = "Maximum number of messages that can be sent 
  22790.   to the list in 24h period (0=unlimited)" 
  22791.    Lists.MaxMessNum.DataType = DATATYPE_NUMERIC 
  22792.    Lists.MaxMessNum.Length = 4 
  22793.  
  22794.    Lists.MaxMessSiz.Name = "MaxMessSiz" 
  22795.    Lists.MaxMessSiz.Description = "In bytes, the maximum size of allowed 
  22796.   messages from non-admin people" 
  22797.    Lists.MaxMessSiz.DataType = DATATYPE_NUMERIC 
  22798.    Lists.MaxMessSiz.Length = 16 
  22799.  
  22800.    Lists.ConfInterv.Name = "ConfInterv" 
  22801.    Lists.ConfInterv.Description = "After how many days should we send a 'you 
  22802.   must confirm your membership' message? (0=never)" 
  22803.    Lists.ConfInterv.DataType = DATATYPE_NUMERIC 
  22804.    Lists.ConfInterv.Length = 5 
  22805.  
  22806.    Lists.ActSuspect.Name = "ActSuspect" 
  22807.    Lists.ActSuspect.Description = "What action to take on suspect users: none, 
  22808.   remove, nomail, notify_admin" 
  22809.    Lists.ActSuspect.DataType = DATATYPE_CHAR 
  22810.    Lists.ActSuspect.Length = STANDARD_CHAR_FIELD_SIZE 
  22811.  
  22812.    Lists.ActBouncng.Name = "ActBouncng" 
  22813.    Lists.ActBouncng.Description = "What action to take on users bouncing 
  22814.   messages: none, remove, nomail, notify_admin" 
  22815.    Lists.ActBouncng.DataType = DATATYPE_CHAR 
  22816.    Lists.ActBouncng.Length = STANDARD_CHAR_FIELD_SIZE 
  22817.  
  22818.    Lists.BouncngNum.Name = "BouncngNum" 
  22819.    Lists.BouncngNum.Description = "How many messages can a user bounce before 
  22820.   action is taken" 
  22821.    Lists.BouncngNum.DataType = DATATYPE_NUMERIC 
  22822.    Lists.BouncngNum.Length = 5 
  22823.  
  22824.    Lists.BouncngTim.Name = "BouncngTim" 
  22825.    Lists.BouncngTim.Description = "How much time has to pass with a user 
  22826.   bouncing messages before action is taken" 
  22827.    Lists.BouncngTim.DataType = DATATYPE_NUMERIC 
  22828.    Lists.BouncngTim.Length = 5 
  22829.  
  22830.    Lists.SndActMess.Name = "SndActMess" 
  22831.    Lists.SndActMess.Description = "Send 'this action was done to you' messages 
  22832.   to people who have had an action taken against them." 
  22833.    Lists.SndActMess.DataType = DATATYPE_LOGICAL 
  22834.    Lists.SndActMess.Length = 1 
  22835.  
  22836.    Lists.Security.Name = "Security" 
  22837.    Lists.Security.Description = "Is this list 'private' (admin approval) 
  22838.   'closed' (admin must add you) 'password' (you need the password) 'open'" 
  22839.    Lists.Security.DataType = DATATYPE_CHAR 
  22840.    Lists.Security.Length = STANDARD_CHAR_FIELD_SIZE 
  22841.  
  22842.    Lists.SubPasswd.Name = "SubPasswd" 
  22843.    Lists.SubPasswd.Description = "If this list is 'password' protected for new 
  22844.   subscribers, what is the password?" 
  22845.    Lists.SubPasswd.DataType = DATATYPE_CHAR 
  22846.    Lists.SubPasswd.Length = STANDARD_CHAR_FIELD_SIZE 
  22847.  
  22848.    Lists.ListSubj.Name = "ListSubj" 
  22849.    Lists.ListSubj.Description = "Should we prepend the list name to the subject 
  22850.   line of every outgoing list message" 
  22851.    Lists.ListSubj.DataType = DATATYPE_LOGICAL 
  22852.    Lists.ListSubj.Length = 1 
  22853.  
  22854.    Lists.NoConfirm.Name = "NoConfirm" 
  22855.    Lists.NoConfirm.Description = "Do not send out a confirming message to new 
  22856.   subscribers to make sure they used the same email address" 
  22857.    Lists.NoConfirm.DataType = DATATYPE_LOGICAL 
  22858.    Lists.NoConfirm.Length = 1 
  22859.  
  22860.    Lists.AdminSend.Name = "AdminSend" 
  22861.    Lists.AdminSend.Description = "Only Admins can send mail to the list" 
  22862.    Lists.AdminSend.DataType = DATATYPE_LOGICAL 
  22863.    Lists.AdminSend.Length = 1 
  22864.  
  22865.    Lists.Moderated.Name = "Moderated" 
  22866.    Lists.Moderated.Description = "Is this list moderated?" 
  22867.    Lists.Moderated.DataType = DATATYPE_CHAR 
  22868.    Lists.Moderated.Length = STANDARD_CHAR_FIELD_SIZE 
  22869.  
  22870.    Lists.ApproveNum.Name = "ApproveNum" 
  22871.    Lists.ApproveNum.Description = "How many messages have to be approved before 
  22872.   a new person can post unapproved?" 
  22873.    Lists.ApproveNum.DataType = DATATYPE_NUMERIC 
  22874.    Lists.ApproveNum.Length = 5 
  22875.  
  22876.    Lists.ReplyTo.Name = "ReplyTo" 
  22877.    Lists.ReplyTo.Description = "If filled in, this specifies the reply-to field 
  22878.   of every message send on this list" 
  22879.    Lists.ReplyTo.DataType = DATATYPE_CHAR 
  22880.    Lists.ReplyTo.Length = STANDARD_CHAR_FIELD_SIZE 
  22881.  
  22882.    Lists.From.Name = "From" 
  22883.    Lists.From.Description = "If filled in, this specifies the from field of 
  22884.   every message send on this list" 
  22885.    Lists.From.DataType = DATATYPE_CHAR 
  22886.    Lists.From.Length = STANDARD_CHAR_FIELD_SIZE 
  22887.  
  22888.    Lists.SMTPFrom.Name = "SMTPFrom" 
  22889.    Lists.SMTPFrom.Description = "If filled in, this specifies the SMTP from 
  22890.   field of every message send on this list" 
  22891.    Lists.SMTPFrom.DataType = DATATYPE_CHAR 
  22892.    Lists.SMTPFrom.Length = STANDARD_CHAR_FIELD_SIZE 
  22893.  
  22894.    Lists.Visitors.Name = "Visitors" 
  22895.    Lists.Visitors.Description = " 
  22896.  
  22897.  
  22898. ΓòÉΓòÉΓòÉ <hidden> Γòö ΓòÉΓòÉΓòÉ
  22899.  
  22900.  
  22901. lyris_Country Class 
  22902.  
  22903.      class lyris_Country 
  22904.  
  22905.      For determining what countries exist, and what languages are spoken & 
  22906.      preferred in each country 
  22907.  
  22908.      Defined in: COUNTRY.H 
  22909.  
  22910.   Create a new country 
  22911.  
  22912.       bool createNew() 
  22913.  
  22914.      Creates a new country/language table row.  LCP: CountryCreate 
  22915.      bool updateDatabase() 
  22916.  
  22917.      Save the current country with the data members that have changed.  LCP: 
  22918.      CountryUpdate 
  22919.      bool VerifyFields() 
  22920.  
  22921.      Verify that all required fields are filled in. 
  22922.  
  22923.   Retrieve data from the database 
  22924.      bool fetchAllCountries(vecString &AllCountries) 
  22925.  
  22926.      Fetch a list of all countries.  LCP: CountryAll 
  22927.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  22928.  
  22929.      Fetch a paired list of countries and their native language descriptions, 
  22930.      sorted by english description.  LCP: CountryEngNat 
  22931.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  22932.  
  22933.      Fetch a paired list of native language country descriptions, and the 
  22934.      english name of the country. 
  22935.      bool retrieveFromNetCode() 
  22936.  
  22937.      Determine the country that uses the currently set NetCode.  Fills all the 
  22938.      other country attributes with values. LCP: CountryAttNetCode 
  22939.      bool retrieveFromDesc() 
  22940.  
  22941.      Determine the country that uses the currently set description.  Fills all 
  22942.      the other country attributes with values.  LCP: CountryAttribs 
  22943.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  22944.  
  22945.      Determine the primary language of the current country.  "Desc" must be 
  22946.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  22947.      CountryPrimLang 
  22948.      bool getAllLanguages(vecString &Languages) 
  22949.  
  22950.      Determine all the languages used by the current country.  "Desc" must be 
  22951.      already set.  The result is returned in priority order (highest priority 
  22952.      first) in vecString &Languages.  LCP: CountryLanguages 
  22953.      bool getLanguageList(vecString &Languages) 
  22954.  
  22955.      Get a list of all possible languages, in alphabetical order, returned in 
  22956.      vecString &Languages.  LCP: CountryLangList 
  22957.      bool getLanguageListEngNat(mapString &Languages) 
  22958.  
  22959.      Get a map of all possible languages, their native description in 
  22960.      alphabetical order by english description, returned in in vecString 
  22961.      &Languages.  LCP: CountryLangListEngNat 
  22962.  
  22963.   Delete a country 
  22964.      bool deleteFromDesc() 
  22965.  
  22966.      Delete the country that uses the currently set description.  LCP: 
  22967.      CountryDelete 
  22968.  
  22969.   Set data members 
  22970.      bool setAll(mapString &FieldValues) 
  22971.  
  22972.      Sets all the data members of a topic using the mapString which is passed 
  22973.      to it.  Only the fields present in the mapString are updated, the other 
  22974.      fields are untouched.  LCP: CountryUpdate 
  22975.      bool setDesc(const string &DescSetting) 
  22976.  
  22977.      Set the short description 
  22978.      bool setDescLong(const string &DescLongSetting) 
  22979.  
  22980.      Set the long description 
  22981.      bool setDescNative(const string &DescNativeSetting) 
  22982.  
  22983.      Set the native language description 
  22984.      bool setNetCode(const string &NetCodeSetting) 
  22985.  
  22986.      Set the internet code for this country 
  22987.      bool erase() 
  22988.  
  22989.      Sets all the data members to empty 
  22990.  
  22991.   Get data members 
  22992.      bool getAll(mapString &FieldValues) 
  22993.  
  22994.      Return a mapString of all the data members of this topic. The key is the 
  22995.      variable name.  LCP: CountryAttribs 
  22996.      string getDesc() 
  22997.  
  22998.      Get the short description 
  22999.      string getDescLong() 
  23000.  
  23001.      Get the long description 
  23002.      string getDescNative() 
  23003.  
  23004.      Get the native language description 
  23005.      string getNetCode() 
  23006.  
  23007.      Get the internet code for this country 
  23008.  
  23009.  
  23010. ΓòÉΓòÉΓòÉ <hidden> Γò⌐ ΓòÉΓòÉΓòÉ
  23011.  
  23012.  
  23013. lyris_Country Class 
  23014.  
  23015.      class lyris_Country 
  23016.  
  23017.      For determining what countries exist, and what languages are spoken & 
  23018.      preferred in each country 
  23019.  
  23020.      Defined in: COUNTRY.H 
  23021.  
  23022.   Create a new country 
  23023.  
  23024.       bool createNew() 
  23025.  
  23026.      Creates a new country/language table row.  LCP: CountryCreate 
  23027.      bool updateDatabase() 
  23028.  
  23029.      Save the current country with the data members that have changed.  LCP: 
  23030.      CountryUpdate 
  23031.      bool VerifyFields() 
  23032.  
  23033.      Verify that all required fields are filled in. 
  23034.  
  23035.   Retrieve data from the database 
  23036.      bool fetchAllCountries(vecString &AllCountries) 
  23037.  
  23038.      Fetch a list of all countries.  LCP: CountryAll 
  23039.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23040.  
  23041.      Fetch a paired list of countries and their native language descriptions, 
  23042.      sorted by english description.  LCP: CountryEngNat 
  23043.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23044.  
  23045.      Fetch a paired list of native language country descriptions, and the 
  23046.      english name of the country. 
  23047.      bool retrieveFromNetCode() 
  23048.  
  23049.      Determine the country that uses the currently set NetCode.  Fills all the 
  23050.      other country attributes with values. LCP: CountryAttNetCode 
  23051.      bool retrieveFromDesc() 
  23052.  
  23053.      Determine the country that uses the currently set description.  Fills all 
  23054.      the other country attributes with values.  LCP: CountryAttribs 
  23055.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23056.  
  23057.      Determine the primary language of the current country.  "Desc" must be 
  23058.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23059.      CountryPrimLang 
  23060.      bool getAllLanguages(vecString &Languages) 
  23061.  
  23062.      Determine all the languages used by the current country.  "Desc" must be 
  23063.      already set.  The result is returned in priority order (highest priority 
  23064.      first) in vecString &Languages.  LCP: CountryLanguages 
  23065.      bool getLanguageList(vecString &Languages) 
  23066.  
  23067.      Get a list of all possible languages, in alphabetical order, returned in 
  23068.      vecString &Languages.  LCP: CountryLangList 
  23069.      bool getLanguageListEngNat(mapString &Languages) 
  23070.  
  23071.      Get a map of all possible languages, their native description in 
  23072.      alphabetical order by english description, returned in in vecString 
  23073.      &Languages.  LCP: CountryLangListEngNat 
  23074.  
  23075.   Delete a country 
  23076.      bool deleteFromDesc() 
  23077.  
  23078.      Delete the country that uses the currently set description.  LCP: 
  23079.      CountryDelete 
  23080.  
  23081.   Set data members 
  23082.      bool setAll(mapString &FieldValues) 
  23083.  
  23084.      Sets all the data members of a topic using the mapString which is passed 
  23085.      to it.  Only the fields present in the mapString are updated, the other 
  23086.      fields are untouched.  LCP: CountryUpdate 
  23087.      bool setDesc(const string &DescSetting) 
  23088.  
  23089.      Set the short description 
  23090.      bool setDescLong(const string &DescLongSetting) 
  23091.  
  23092.      Set the long description 
  23093.      bool setDescNative(const string &DescNativeSetting) 
  23094.  
  23095.      Set the native language description 
  23096.      bool setNetCode(const string &NetCodeSetting) 
  23097.  
  23098.      Set the internet code for this country 
  23099.      bool erase() 
  23100.  
  23101.      Sets all the data members to empty 
  23102.  
  23103.   Get data members 
  23104.      bool getAll(mapString &FieldValues) 
  23105.  
  23106.      Return a mapString of all the data members of this topic. The key is the 
  23107.      variable name.  LCP: CountryAttribs 
  23108.      string getDesc() 
  23109.  
  23110.      Get the short description 
  23111.      string getDescLong() 
  23112.  
  23113.      Get the long description 
  23114.      string getDescNative() 
  23115.  
  23116.      Get the native language description 
  23117.      string getNetCode() 
  23118.  
  23119.      Get the internet code for this country 
  23120.  
  23121.  
  23122. ΓòÉΓòÉΓòÉ <hidden> Γòª ΓòÉΓòÉΓòÉ
  23123.  
  23124.  
  23125. lyris_Country Class 
  23126.  
  23127.      class lyris_Country 
  23128.  
  23129.      For determining what countries exist, and what languages are spoken & 
  23130.      preferred in each country 
  23131.  
  23132.      Defined in: COUNTRY.H 
  23133.  
  23134.   Create a new country 
  23135.  
  23136.       bool createNew() 
  23137.  
  23138.      Creates a new country/language table row.  LCP: CountryCreate 
  23139.      bool updateDatabase() 
  23140.  
  23141.      Save the current country with the data members that have changed.  LCP: 
  23142.      CountryUpdate 
  23143.      bool VerifyFields() 
  23144.  
  23145.      Verify that all required fields are filled in. 
  23146.  
  23147.   Retrieve data from the database 
  23148.      bool fetchAllCountries(vecString &AllCountries) 
  23149.  
  23150.      Fetch a list of all countries.  LCP: CountryAll 
  23151.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23152.  
  23153.      Fetch a paired list of countries and their native language descriptions, 
  23154.      sorted by english description.  LCP: CountryEngNat 
  23155.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23156.  
  23157.      Fetch a paired list of native language country descriptions, and the 
  23158.      english name of the country. 
  23159.      bool retrieveFromNetCode() 
  23160.  
  23161.      Determine the country that uses the currently set NetCode.  Fills all the 
  23162.      other country attributes with values. LCP: CountryAttNetCode 
  23163.      bool retrieveFromDesc() 
  23164.  
  23165.      Determine the country that uses the currently set description.  Fills all 
  23166.      the other country attributes with values.  LCP: CountryAttribs 
  23167.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23168.  
  23169.      Determine the primary language of the current country.  "Desc" must be 
  23170.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23171.      CountryPrimLang 
  23172.      bool getAllLanguages(vecString &Languages) 
  23173.  
  23174.      Determine all the languages used by the current country.  "Desc" must be 
  23175.      already set.  The result is returned in priority order (highest priority 
  23176.      first) in vecString &Languages.  LCP: CountryLanguages 
  23177.      bool getLanguageList(vecString &Languages) 
  23178.  
  23179.      Get a list of all possible languages, in alphabetical order, returned in 
  23180.      vecString &Languages.  LCP: CountryLangList 
  23181.      bool getLanguageListEngNat(mapString &Languages) 
  23182.  
  23183.      Get a map of all possible languages, their native description in 
  23184.      alphabetical order by english description, returned in in vecString 
  23185.      &Languages.  LCP: CountryLangListEngNat 
  23186.  
  23187.   Delete a country 
  23188.      bool deleteFromDesc() 
  23189.  
  23190.      Delete the country that uses the currently set description.  LCP: 
  23191.      CountryDelete 
  23192.  
  23193.   Set data members 
  23194.      bool setAll(mapString &FieldValues) 
  23195.  
  23196.      Sets all the data members of a topic using the mapString which is passed 
  23197.      to it.  Only the fields present in the mapString are updated, the other 
  23198.      fields are untouched.  LCP: CountryUpdate 
  23199.      bool setDesc(const string &DescSetting) 
  23200.  
  23201.      Set the short description 
  23202.      bool setDescLong(const string &DescLongSetting) 
  23203.  
  23204.      Set the long description 
  23205.      bool setDescNative(const string &DescNativeSetting) 
  23206.  
  23207.      Set the native language description 
  23208.      bool setNetCode(const string &NetCodeSetting) 
  23209.  
  23210.      Set the internet code for this country 
  23211.      bool erase() 
  23212.  
  23213.      Sets all the data members to empty 
  23214.  
  23215.   Get data members 
  23216.      bool getAll(mapString &FieldValues) 
  23217.  
  23218.      Return a mapString of all the data members of this topic. The key is the 
  23219.      variable name.  LCP: CountryAttribs 
  23220.      string getDesc() 
  23221.  
  23222.      Get the short description 
  23223.      string getDescLong() 
  23224.  
  23225.      Get the long description 
  23226.      string getDescNative() 
  23227.  
  23228.      Get the native language description 
  23229.      string getNetCode() 
  23230.  
  23231.      Get the internet code for this country 
  23232.  
  23233.  
  23234. ΓòÉΓòÉΓòÉ <hidden> Γòá ΓòÉΓòÉΓòÉ
  23235.  
  23236.  
  23237. lyris_Country Class 
  23238.  
  23239.      class lyris_Country 
  23240.  
  23241.      For determining what countries exist, and what languages are spoken & 
  23242.      preferred in each country 
  23243.  
  23244.      Defined in: COUNTRY.H 
  23245.  
  23246.   Create a new country 
  23247.  
  23248.       bool createNew() 
  23249.  
  23250.      Creates a new country/language table row.  LCP: CountryCreate 
  23251.      bool updateDatabase() 
  23252.  
  23253.      Save the current country with the data members that have changed.  LCP: 
  23254.      CountryUpdate 
  23255.      bool VerifyFields() 
  23256.  
  23257.      Verify that all required fields are filled in. 
  23258.  
  23259.   Retrieve data from the database 
  23260.      bool fetchAllCountries(vecString &AllCountries) 
  23261.  
  23262.      Fetch a list of all countries.  LCP: CountryAll 
  23263.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23264.  
  23265.      Fetch a paired list of countries and their native language descriptions, 
  23266.      sorted by english description.  LCP: CountryEngNat 
  23267.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23268.  
  23269.      Fetch a paired list of native language country descriptions, and the 
  23270.      english name of the country. 
  23271.      bool retrieveFromNetCode() 
  23272.  
  23273.      Determine the country that uses the currently set NetCode.  Fills all the 
  23274.      other country attributes with values. LCP: CountryAttNetCode 
  23275.      bool retrieveFromDesc() 
  23276.  
  23277.      Determine the country that uses the currently set description.  Fills all 
  23278.      the other country attributes with values.  LCP: CountryAttribs 
  23279.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23280.  
  23281.      Determine the primary language of the current country.  "Desc" must be 
  23282.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23283.      CountryPrimLang 
  23284.      bool getAllLanguages(vecString &Languages) 
  23285.  
  23286.      Determine all the languages used by the current country.  "Desc" must be 
  23287.      already set.  The result is returned in priority order (highest priority 
  23288.      first) in vecString &Languages.  LCP: CountryLanguages 
  23289.      bool getLanguageList(vecString &Languages) 
  23290.  
  23291.      Get a list of all possible languages, in alphabetical order, returned in 
  23292.      vecString &Languages.  LCP: CountryLangList 
  23293.      bool getLanguageListEngNat(mapString &Languages) 
  23294.  
  23295.      Get a map of all possible languages, their native description in 
  23296.      alphabetical order by english description, returned in in vecString 
  23297.      &Languages.  LCP: CountryLangListEngNat 
  23298.  
  23299.   Delete a country 
  23300.      bool deleteFromDesc() 
  23301.  
  23302.      Delete the country that uses the currently set description.  LCP: 
  23303.      CountryDelete 
  23304.  
  23305.   Set data members 
  23306.      bool setAll(mapString &FieldValues) 
  23307.  
  23308.      Sets all the data members of a topic using the mapString which is passed 
  23309.      to it.  Only the fields present in the mapString are updated, the other 
  23310.      fields are untouched.  LCP: CountryUpdate 
  23311.      bool setDesc(const string &DescSetting) 
  23312.  
  23313.      Set the short description 
  23314.      bool setDescLong(const string &DescLongSetting) 
  23315.  
  23316.      Set the long description 
  23317.      bool setDescNative(const string &DescNativeSetting) 
  23318.  
  23319.      Set the native language description 
  23320.      bool setNetCode(const string &NetCodeSetting) 
  23321.  
  23322.      Set the internet code for this country 
  23323.      bool erase() 
  23324.  
  23325.      Sets all the data members to empty 
  23326.  
  23327.   Get data members 
  23328.      bool getAll(mapString &FieldValues) 
  23329.  
  23330.      Return a mapString of all the data members of this topic. The key is the 
  23331.      variable name.  LCP: CountryAttribs 
  23332.      string getDesc() 
  23333.  
  23334.      Get the short description 
  23335.      string getDescLong() 
  23336.  
  23337.      Get the long description 
  23338.      string getDescNative() 
  23339.  
  23340.      Get the native language description 
  23341.      string getNetCode() 
  23342.  
  23343.      Get the internet code for this country 
  23344.  
  23345.  
  23346. ΓòÉΓòÉΓòÉ <hidden> ΓòÉ ΓòÉΓòÉΓòÉ
  23347.  
  23348.  
  23349. lyris_Country Class 
  23350.  
  23351.      class lyris_Country 
  23352.  
  23353.      For determining what countries exist, and what languages are spoken & 
  23354.      preferred in each country 
  23355.  
  23356.      Defined in: COUNTRY.H 
  23357.  
  23358.   Create a new country 
  23359.  
  23360.       bool createNew() 
  23361.  
  23362.      Creates a new country/language table row.  LCP: CountryCreate 
  23363.      bool updateDatabase() 
  23364.  
  23365.      Save the current country with the data members that have changed.  LCP: 
  23366.      CountryUpdate 
  23367.      bool VerifyFields() 
  23368.  
  23369.      Verify that all required fields are filled in. 
  23370.  
  23371.   Retrieve data from the database 
  23372.      bool fetchAllCountries(vecString &AllCountries) 
  23373.  
  23374.      Fetch a list of all countries.  LCP: CountryAll 
  23375.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23376.  
  23377.      Fetch a paired list of countries and their native language descriptions, 
  23378.      sorted by english description.  LCP: CountryEngNat 
  23379.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23380.  
  23381.      Fetch a paired list of native language country descriptions, and the 
  23382.      english name of the country. 
  23383.      bool retrieveFromNetCode() 
  23384.  
  23385.      Determine the country that uses the currently set NetCode.  Fills all the 
  23386.      other country attributes with values. LCP: CountryAttNetCode 
  23387.      bool retrieveFromDesc() 
  23388.  
  23389.      Determine the country that uses the currently set description.  Fills all 
  23390.      the other country attributes with values.  LCP: CountryAttribs 
  23391.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23392.  
  23393.      Determine the primary language of the current country.  "Desc" must be 
  23394.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23395.      CountryPrimLang 
  23396.      bool getAllLanguages(vecString &Languages) 
  23397.  
  23398.      Determine all the languages used by the current country.  "Desc" must be 
  23399.      already set.  The result is returned in priority order (highest priority 
  23400.      first) in vecString &Languages.  LCP: CountryLanguages 
  23401.      bool getLanguageList(vecString &Languages) 
  23402.  
  23403.      Get a list of all possible languages, in alphabetical order, returned in 
  23404.      vecString &Languages.  LCP: CountryLangList 
  23405.      bool getLanguageListEngNat(mapString &Languages) 
  23406.  
  23407.      Get a map of all possible languages, their native description in 
  23408.      alphabetical order by english description, returned in in vecString 
  23409.      &Languages.  LCP: CountryLangListEngNat 
  23410.  
  23411.   Delete a country 
  23412.      bool deleteFromDesc() 
  23413.  
  23414.      Delete the country that uses the currently set description.  LCP: 
  23415.      CountryDelete 
  23416.  
  23417.   Set data members 
  23418.      bool setAll(mapString &FieldValues) 
  23419.  
  23420.      Sets all the data members of a topic using the mapString which is passed 
  23421.      to it.  Only the fields present in the mapString are updated, the other 
  23422.      fields are untouched.  LCP: CountryUpdate 
  23423.      bool setDesc(const string &DescSetting) 
  23424.  
  23425.      Set the short description 
  23426.      bool setDescLong(const string &DescLongSetting) 
  23427.  
  23428.      Set the long description 
  23429.      bool setDescNative(const string &DescNativeSetting) 
  23430.  
  23431.      Set the native language description 
  23432.      bool setNetCode(const string &NetCodeSetting) 
  23433.  
  23434.      Set the internet code for this country 
  23435.      bool erase() 
  23436.  
  23437.      Sets all the data members to empty 
  23438.  
  23439.   Get data members 
  23440.      bool getAll(mapString &FieldValues) 
  23441.  
  23442.      Return a mapString of all the data members of this topic. The key is the 
  23443.      variable name.  LCP: CountryAttribs 
  23444.      string getDesc() 
  23445.  
  23446.      Get the short description 
  23447.      string getDescLong() 
  23448.  
  23449.      Get the long description 
  23450.      string getDescNative() 
  23451.  
  23452.      Get the native language description 
  23453.      string getNetCode() 
  23454.  
  23455.      Get the internet code for this country 
  23456.  
  23457.  
  23458. ΓòÉΓòÉΓòÉ <hidden> Γò¼ ΓòÉΓòÉΓòÉ
  23459.  
  23460.  
  23461. lyris_Country Class 
  23462.  
  23463.      class lyris_Country 
  23464.  
  23465.      For determining what countries exist, and what languages are spoken & 
  23466.      preferred in each country 
  23467.  
  23468.      Defined in: COUNTRY.H 
  23469.  
  23470.   Create a new country 
  23471.  
  23472.       bool createNew() 
  23473.  
  23474.      Creates a new country/language table row.  LCP: CountryCreate 
  23475.      bool updateDatabase() 
  23476.  
  23477.      Save the current country with the data members that have changed.  LCP: 
  23478.      CountryUpdate 
  23479.      bool VerifyFields() 
  23480.  
  23481.      Verify that all required fields are filled in. 
  23482.  
  23483.   Retrieve data from the database 
  23484.      bool fetchAllCountries(vecString &AllCountries) 
  23485.  
  23486.      Fetch a list of all countries.  LCP: CountryAll 
  23487.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23488.  
  23489.      Fetch a paired list of countries and their native language descriptions, 
  23490.      sorted by english description.  LCP: CountryEngNat 
  23491.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23492.  
  23493.      Fetch a paired list of native language country descriptions, and the 
  23494.      english name of the country. 
  23495.      bool retrieveFromNetCode() 
  23496.  
  23497.      Determine the country that uses the currently set NetCode.  Fills all the 
  23498.      other country attributes with values. LCP: CountryAttNetCode 
  23499.      bool retrieveFromDesc() 
  23500.  
  23501.      Determine the country that uses the currently set description.  Fills all 
  23502.      the other country attributes with values.  LCP: CountryAttribs 
  23503.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23504.  
  23505.      Determine the primary language of the current country.  "Desc" must be 
  23506.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23507.      CountryPrimLang 
  23508.      bool getAllLanguages(vecString &Languages) 
  23509.  
  23510.      Determine all the languages used by the current country.  "Desc" must be 
  23511.      already set.  The result is returned in priority order (highest priority 
  23512.      first) in vecString &Languages.  LCP: CountryLanguages 
  23513.      bool getLanguageList(vecString &Languages) 
  23514.  
  23515.      Get a list of all possible languages, in alphabetical order, returned in 
  23516.      vecString &Languages.  LCP: CountryLangList 
  23517.      bool getLanguageListEngNat(mapString &Languages) 
  23518.  
  23519.      Get a map of all possible languages, their native description in 
  23520.      alphabetical order by english description, returned in in vecString 
  23521.      &Languages.  LCP: CountryLangListEngNat 
  23522.  
  23523.   Delete a country 
  23524.      bool deleteFromDesc() 
  23525.  
  23526.      Delete the country that uses the currently set description.  LCP: 
  23527.      CountryDelete 
  23528.  
  23529.   Set data members 
  23530.      bool setAll(mapString &FieldValues) 
  23531.  
  23532.      Sets all the data members of a topic using the mapString which is passed 
  23533.      to it.  Only the fields present in the mapString are updated, the other 
  23534.      fields are untouched.  LCP: CountryUpdate 
  23535.      bool setDesc(const string &DescSetting) 
  23536.  
  23537.      Set the short description 
  23538.      bool setDescLong(const string &DescLongSetting) 
  23539.  
  23540.      Set the long description 
  23541.      bool setDescNative(const string &DescNativeSetting) 
  23542.  
  23543.      Set the native language description 
  23544.      bool setNetCode(const string &NetCodeSetting) 
  23545.  
  23546.      Set the internet code for this country 
  23547.      bool erase() 
  23548.  
  23549.      Sets all the data members to empty 
  23550.  
  23551.   Get data members 
  23552.      bool getAll(mapString &FieldValues) 
  23553.  
  23554.      Return a mapString of all the data members of this topic. The key is the 
  23555.      variable name.  LCP: CountryAttribs 
  23556.      string getDesc() 
  23557.  
  23558.      Get the short description 
  23559.      string getDescLong() 
  23560.  
  23561.      Get the long description 
  23562.      string getDescNative() 
  23563.  
  23564.      Get the native language description 
  23565.      string getNetCode() 
  23566.  
  23567.      Get the internet code for this country 
  23568.  
  23569.  
  23570. ΓòÉΓòÉΓòÉ <hidden> Γòº ΓòÉΓòÉΓòÉ
  23571.  
  23572.  
  23573. lyris_Country Class 
  23574.  
  23575.      class lyris_Country 
  23576.  
  23577.      For determining what countries exist, and what languages are spoken & 
  23578.      preferred in each country 
  23579.  
  23580.      Defined in: COUNTRY.H 
  23581.  
  23582.   Create a new country 
  23583.  
  23584.       bool createNew() 
  23585.  
  23586.      Creates a new country/language table row.  LCP: CountryCreate 
  23587.      bool updateDatabase() 
  23588.  
  23589.      Save the current country with the data members that have changed.  LCP: 
  23590.      CountryUpdate 
  23591.      bool VerifyFields() 
  23592.  
  23593.      Verify that all required fields are filled in. 
  23594.  
  23595.   Retrieve data from the database 
  23596.      bool fetchAllCountries(vecString &AllCountries) 
  23597.  
  23598.      Fetch a list of all countries.  LCP: CountryAll 
  23599.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23600.  
  23601.      Fetch a paired list of countries and their native language descriptions, 
  23602.      sorted by english description.  LCP: CountryEngNat 
  23603.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23604.  
  23605.      Fetch a paired list of native language country descriptions, and the 
  23606.      english name of the country. 
  23607.      bool retrieveFromNetCode() 
  23608.  
  23609.      Determine the country that uses the currently set NetCode.  Fills all the 
  23610.      other country attributes with values. LCP: CountryAttNetCode 
  23611.      bool retrieveFromDesc() 
  23612.  
  23613.      Determine the country that uses the currently set description.  Fills all 
  23614.      the other country attributes with values.  LCP: CountryAttribs 
  23615.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23616.  
  23617.      Determine the primary language of the current country.  "Desc" must be 
  23618.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23619.      CountryPrimLang 
  23620.      bool getAllLanguages(vecString &Languages) 
  23621.  
  23622.      Determine all the languages used by the current country.  "Desc" must be 
  23623.      already set.  The result is returned in priority order (highest priority 
  23624.      first) in vecString &Languages.  LCP: CountryLanguages 
  23625.      bool getLanguageList(vecString &Languages) 
  23626.  
  23627.      Get a list of all possible languages, in alphabetical order, returned in 
  23628.      vecString &Languages.  LCP: CountryLangList 
  23629.      bool getLanguageListEngNat(mapString &Languages) 
  23630.  
  23631.      Get a map of all possible languages, their native description in 
  23632.      alphabetical order by english description, returned in in vecString 
  23633.      &Languages.  LCP: CountryLangListEngNat 
  23634.  
  23635.   Delete a country 
  23636.      bool deleteFromDesc() 
  23637.  
  23638.      Delete the country that uses the currently set description.  LCP: 
  23639.      CountryDelete 
  23640.  
  23641.   Set data members 
  23642.      bool setAll(mapString &FieldValues) 
  23643.  
  23644.      Sets all the data members of a topic using the mapString which is passed 
  23645.      to it.  Only the fields present in the mapString are updated, the other 
  23646.      fields are untouched.  LCP: CountryUpdate 
  23647.      bool setDesc(const string &DescSetting) 
  23648.  
  23649.      Set the short description 
  23650.      bool setDescLong(const string &DescLongSetting) 
  23651.  
  23652.      Set the long description 
  23653.      bool setDescNative(const string &DescNativeSetting) 
  23654.  
  23655.      Set the native language description 
  23656.      bool setNetCode(const string &NetCodeSetting) 
  23657.  
  23658.      Set the internet code for this country 
  23659.      bool erase() 
  23660.  
  23661.      Sets all the data members to empty 
  23662.  
  23663.   Get data members 
  23664.      bool getAll(mapString &FieldValues) 
  23665.  
  23666.      Return a mapString of all the data members of this topic. The key is the 
  23667.      variable name.  LCP: CountryAttribs 
  23668.      string getDesc() 
  23669.  
  23670.      Get the short description 
  23671.      string getDescLong() 
  23672.  
  23673.      Get the long description 
  23674.      string getDescNative() 
  23675.  
  23676.      Get the native language description 
  23677.      string getNetCode() 
  23678.  
  23679.      Get the internet code for this country 
  23680.  
  23681.  
  23682. ΓòÉΓòÉΓòÉ <hidden> Γò¿ ΓòÉΓòÉΓòÉ
  23683.  
  23684.  
  23685. lyris_Country Class 
  23686.  
  23687.      class lyris_Country 
  23688.  
  23689.      For determining what countries exist, and what languages are spoken & 
  23690.      preferred in each country 
  23691.  
  23692.      Defined in: COUNTRY.H 
  23693.  
  23694.   Create a new country 
  23695.  
  23696.       bool createNew() 
  23697.  
  23698.      Creates a new country/language table row.  LCP: CountryCreate 
  23699.      bool updateDatabase() 
  23700.  
  23701.      Save the current country with the data members that have changed.  LCP: 
  23702.      CountryUpdate 
  23703.      bool VerifyFields() 
  23704.  
  23705.      Verify that all required fields are filled in. 
  23706.  
  23707.   Retrieve data from the database 
  23708.      bool fetchAllCountries(vecString &AllCountries) 
  23709.  
  23710.      Fetch a list of all countries.  LCP: CountryAll 
  23711.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23712.  
  23713.      Fetch a paired list of countries and their native language descriptions, 
  23714.      sorted by english description.  LCP: CountryEngNat 
  23715.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23716.  
  23717.      Fetch a paired list of native language country descriptions, and the 
  23718.      english name of the country. 
  23719.      bool retrieveFromNetCode() 
  23720.  
  23721.      Determine the country that uses the currently set NetCode.  Fills all the 
  23722.      other country attributes with values. LCP: CountryAttNetCode 
  23723.      bool retrieveFromDesc() 
  23724.  
  23725.      Determine the country that uses the currently set description.  Fills all 
  23726.      the other country attributes with values.  LCP: CountryAttribs 
  23727.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23728.  
  23729.      Determine the primary language of the current country.  "Desc" must be 
  23730.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23731.      CountryPrimLang 
  23732.      bool getAllLanguages(vecString &Languages) 
  23733.  
  23734.      Determine all the languages used by the current country.  "Desc" must be 
  23735.      already set.  The result is returned in priority order (highest priority 
  23736.      first) in vecString &Languages.  LCP: CountryLanguages 
  23737.      bool getLanguageList(vecString &Languages) 
  23738.  
  23739.      Get a list of all possible languages, in alphabetical order, returned in 
  23740.      vecString &Languages.  LCP: CountryLangList 
  23741.      bool getLanguageListEngNat(mapString &Languages) 
  23742.  
  23743.      Get a map of all possible languages, their native description in 
  23744.      alphabetical order by english description, returned in in vecString 
  23745.      &Languages.  LCP: CountryLangListEngNat 
  23746.  
  23747.   Delete a country 
  23748.      bool deleteFromDesc() 
  23749.  
  23750.      Delete the country that uses the currently set description.  LCP: 
  23751.      CountryDelete 
  23752.  
  23753.   Set data members 
  23754.      bool setAll(mapString &FieldValues) 
  23755.  
  23756.      Sets all the data members of a topic using the mapString which is passed 
  23757.      to it.  Only the fields present in the mapString are updated, the other 
  23758.      fields are untouched.  LCP: CountryUpdate 
  23759.      bool setDesc(const string &DescSetting) 
  23760.  
  23761.      Set the short description 
  23762.      bool setDescLong(const string &DescLongSetting) 
  23763.  
  23764.      Set the long description 
  23765.      bool setDescNative(const string &DescNativeSetting) 
  23766.  
  23767.      Set the native language description 
  23768.      bool setNetCode(const string &NetCodeSetting) 
  23769.  
  23770.      Set the internet code for this country 
  23771.      bool erase() 
  23772.  
  23773.      Sets all the data members to empty 
  23774.  
  23775.   Get data members 
  23776.      bool getAll(mapString &FieldValues) 
  23777.  
  23778.      Return a mapString of all the data members of this topic. The key is the 
  23779.      variable name.  LCP: CountryAttribs 
  23780.      string getDesc() 
  23781.  
  23782.      Get the short description 
  23783.      string getDescLong() 
  23784.  
  23785.      Get the long description 
  23786.      string getDescNative() 
  23787.  
  23788.      Get the native language description 
  23789.      string getNetCode() 
  23790.  
  23791.      Get the internet code for this country 
  23792.  
  23793.  
  23794. ΓòÉΓòÉΓòÉ <hidden> Γòñ ΓòÉΓòÉΓòÉ
  23795.  
  23796.  
  23797. lyris_Country Class 
  23798.  
  23799.      class lyris_Country 
  23800.  
  23801.      For determining what countries exist, and what languages are spoken & 
  23802.      preferred in each country 
  23803.  
  23804.      Defined in: COUNTRY.H 
  23805.  
  23806.   Create a new country 
  23807.  
  23808.       bool createNew() 
  23809.  
  23810.      Creates a new country/language table row.  LCP: CountryCreate 
  23811.      bool updateDatabase() 
  23812.  
  23813.      Save the current country with the data members that have changed.  LCP: 
  23814.      CountryUpdate 
  23815.      bool VerifyFields() 
  23816.  
  23817.      Verify that all required fields are filled in. 
  23818.  
  23819.   Retrieve data from the database 
  23820.      bool fetchAllCountries(vecString &AllCountries) 
  23821.  
  23822.      Fetch a list of all countries.  LCP: CountryAll 
  23823.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23824.  
  23825.      Fetch a paired list of countries and their native language descriptions, 
  23826.      sorted by english description.  LCP: CountryEngNat 
  23827.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23828.  
  23829.      Fetch a paired list of native language country descriptions, and the 
  23830.      english name of the country. 
  23831.      bool retrieveFromNetCode() 
  23832.  
  23833.      Determine the country that uses the currently set NetCode.  Fills all the 
  23834.      other country attributes with values. LCP: CountryAttNetCode 
  23835.      bool retrieveFromDesc() 
  23836.  
  23837.      Determine the country that uses the currently set description.  Fills all 
  23838.      the other country attributes with values.  LCP: CountryAttribs 
  23839.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23840.  
  23841.      Determine the primary language of the current country.  "Desc" must be 
  23842.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23843.      CountryPrimLang 
  23844.      bool getAllLanguages(vecString &Languages) 
  23845.  
  23846.      Determine all the languages used by the current country.  "Desc" must be 
  23847.      already set.  The result is returned in priority order (highest priority 
  23848.      first) in vecString &Languages.  LCP: CountryLanguages 
  23849.      bool getLanguageList(vecString &Languages) 
  23850.  
  23851.      Get a list of all possible languages, in alphabetical order, returned in 
  23852.      vecString &Languages.  LCP: CountryLangList 
  23853.      bool getLanguageListEngNat(mapString &Languages) 
  23854.  
  23855.      Get a map of all possible languages, their native description in 
  23856.      alphabetical order by english description, returned in in vecString 
  23857.      &Languages.  LCP: CountryLangListEngNat 
  23858.  
  23859.   Delete a country 
  23860.      bool deleteFromDesc() 
  23861.  
  23862.      Delete the country that uses the currently set description.  LCP: 
  23863.      CountryDelete 
  23864.  
  23865.   Set data members 
  23866.      bool setAll(mapString &FieldValues) 
  23867.  
  23868.      Sets all the data members of a topic using the mapString which is passed 
  23869.      to it.  Only the fields present in the mapString are updated, the other 
  23870.      fields are untouched.  LCP: CountryUpdate 
  23871.      bool setDesc(const string &DescSetting) 
  23872.  
  23873.      Set the short description 
  23874.      bool setDescLong(const string &DescLongSetting) 
  23875.  
  23876.      Set the long description 
  23877.      bool setDescNative(const string &DescNativeSetting) 
  23878.  
  23879.      Set the native language description 
  23880.      bool setNetCode(const string &NetCodeSetting) 
  23881.  
  23882.      Set the internet code for this country 
  23883.      bool erase() 
  23884.  
  23885.      Sets all the data members to empty 
  23886.  
  23887.   Get data members 
  23888.      bool getAll(mapString &FieldValues) 
  23889.  
  23890.      Return a mapString of all the data members of this topic. The key is the 
  23891.      variable name.  LCP: CountryAttribs 
  23892.      string getDesc() 
  23893.  
  23894.      Get the short description 
  23895.      string getDescLong() 
  23896.  
  23897.      Get the long description 
  23898.      string getDescNative() 
  23899.  
  23900.      Get the native language description 
  23901.      string getNetCode() 
  23902.  
  23903.      Get the internet code for this country 
  23904.  
  23905.  
  23906. ΓòÉΓòÉΓòÉ <hidden> ΓòÑ ΓòÉΓòÉΓòÉ
  23907.  
  23908.  
  23909. lyris_Country Class 
  23910.  
  23911.      class lyris_Country 
  23912.  
  23913.      For determining what countries exist, and what languages are spoken & 
  23914.      preferred in each country 
  23915.  
  23916.      Defined in: COUNTRY.H 
  23917.  
  23918.   Create a new country 
  23919.  
  23920.       bool createNew() 
  23921.  
  23922.      Creates a new country/language table row.  LCP: CountryCreate 
  23923.      bool updateDatabase() 
  23924.  
  23925.      Save the current country with the data members that have changed.  LCP: 
  23926.      CountryUpdate 
  23927.      bool VerifyFields() 
  23928.  
  23929.      Verify that all required fields are filled in. 
  23930.  
  23931.   Retrieve data from the database 
  23932.      bool fetchAllCountries(vecString &AllCountries) 
  23933.  
  23934.      Fetch a list of all countries.  LCP: CountryAll 
  23935.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  23936.  
  23937.      Fetch a paired list of countries and their native language descriptions, 
  23938.      sorted by english description.  LCP: CountryEngNat 
  23939.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  23940.  
  23941.      Fetch a paired list of native language country descriptions, and the 
  23942.      english name of the country. 
  23943.      bool retrieveFromNetCode() 
  23944.  
  23945.      Determine the country that uses the currently set NetCode.  Fills all the 
  23946.      other country attributes with values. LCP: CountryAttNetCode 
  23947.      bool retrieveFromDesc() 
  23948.  
  23949.      Determine the country that uses the currently set description.  Fills all 
  23950.      the other country attributes with values.  LCP: CountryAttribs 
  23951.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  23952.  
  23953.      Determine the primary language of the current country.  "Desc" must be 
  23954.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  23955.      CountryPrimLang 
  23956.      bool getAllLanguages(vecString &Languages) 
  23957.  
  23958.      Determine all the languages used by the current country.  "Desc" must be 
  23959.      already set.  The result is returned in priority order (highest priority 
  23960.      first) in vecString &Languages.  LCP: CountryLanguages 
  23961.      bool getLanguageList(vecString &Languages) 
  23962.  
  23963.      Get a list of all possible languages, in alphabetical order, returned in 
  23964.      vecString &Languages.  LCP: CountryLangList 
  23965.      bool getLanguageListEngNat(mapString &Languages) 
  23966.  
  23967.      Get a map of all possible languages, their native description in 
  23968.      alphabetical order by english description, returned in in vecString 
  23969.      &Languages.  LCP: CountryLangListEngNat 
  23970.  
  23971.   Delete a country 
  23972.      bool deleteFromDesc() 
  23973.  
  23974.      Delete the country that uses the currently set description.  LCP: 
  23975.      CountryDelete 
  23976.  
  23977.   Set data members 
  23978.      bool setAll(mapString &FieldValues) 
  23979.  
  23980.      Sets all the data members of a topic using the mapString which is passed 
  23981.      to it.  Only the fields present in the mapString are updated, the other 
  23982.      fields are untouched.  LCP: CountryUpdate 
  23983.      bool setDesc(const string &DescSetting) 
  23984.  
  23985.      Set the short description 
  23986.      bool setDescLong(const string &DescLongSetting) 
  23987.  
  23988.      Set the long description 
  23989.      bool setDescNative(const string &DescNativeSetting) 
  23990.  
  23991.      Set the native language description 
  23992.      bool setNetCode(const string &NetCodeSetting) 
  23993.  
  23994.      Set the internet code for this country 
  23995.      bool erase() 
  23996.  
  23997.      Sets all the data members to empty 
  23998.  
  23999.   Get data members 
  24000.      bool getAll(mapString &FieldValues) 
  24001.  
  24002.      Return a mapString of all the data members of this topic. The key is the 
  24003.      variable name.  LCP: CountryAttribs 
  24004.      string getDesc() 
  24005.  
  24006.      Get the short description 
  24007.      string getDescLong() 
  24008.  
  24009.      Get the long description 
  24010.      string getDescNative() 
  24011.  
  24012.      Get the native language description 
  24013.      string getNetCode() 
  24014.  
  24015.      Get the internet code for this country 
  24016.  
  24017.  
  24018. ΓòÉΓòÉΓòÉ <hidden> ΓòÖ ΓòÉΓòÉΓòÉ
  24019.  
  24020.  
  24021. lyris_Country Class 
  24022.  
  24023.      class lyris_Country 
  24024.  
  24025.      For determining what countries exist, and what languages are spoken & 
  24026.      preferred in each country 
  24027.  
  24028.      Defined in: COUNTRY.H 
  24029.  
  24030.   Create a new country 
  24031.  
  24032.       bool createNew() 
  24033.  
  24034.      Creates a new country/language table row.  LCP: CountryCreate 
  24035.      bool updateDatabase() 
  24036.  
  24037.      Save the current country with the data members that have changed.  LCP: 
  24038.      CountryUpdate 
  24039.      bool VerifyFields() 
  24040.  
  24041.      Verify that all required fields are filled in. 
  24042.  
  24043.   Retrieve data from the database 
  24044.      bool fetchAllCountries(vecString &AllCountries) 
  24045.  
  24046.      Fetch a list of all countries.  LCP: CountryAll 
  24047.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24048.  
  24049.      Fetch a paired list of countries and their native language descriptions, 
  24050.      sorted by english description.  LCP: CountryEngNat 
  24051.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24052.  
  24053.      Fetch a paired list of native language country descriptions, and the 
  24054.      english name of the country. 
  24055.      bool retrieveFromNetCode() 
  24056.  
  24057.      Determine the country that uses the currently set NetCode.  Fills all the 
  24058.      other country attributes with values. LCP: CountryAttNetCode 
  24059.      bool retrieveFromDesc() 
  24060.  
  24061.      Determine the country that uses the currently set description.  Fills all 
  24062.      the other country attributes with values.  LCP: CountryAttribs 
  24063.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24064.  
  24065.      Determine the primary language of the current country.  "Desc" must be 
  24066.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24067.      CountryPrimLang 
  24068.      bool getAllLanguages(vecString &Languages) 
  24069.  
  24070.      Determine all the languages used by the current country.  "Desc" must be 
  24071.      already set.  The result is returned in priority order (highest priority 
  24072.      first) in vecString &Languages.  LCP: CountryLanguages 
  24073.      bool getLanguageList(vecString &Languages) 
  24074.  
  24075.      Get a list of all possible languages, in alphabetical order, returned in 
  24076.      vecString &Languages.  LCP: CountryLangList 
  24077.      bool getLanguageListEngNat(mapString &Languages) 
  24078.  
  24079.      Get a map of all possible languages, their native description in 
  24080.      alphabetical order by english description, returned in in vecString 
  24081.      &Languages.  LCP: CountryLangListEngNat 
  24082.  
  24083.   Delete a country 
  24084.      bool deleteFromDesc() 
  24085.  
  24086.      Delete the country that uses the currently set description.  LCP: 
  24087.      CountryDelete 
  24088.  
  24089.   Set data members 
  24090.      bool setAll(mapString &FieldValues) 
  24091.  
  24092.      Sets all the data members of a topic using the mapString which is passed 
  24093.      to it.  Only the fields present in the mapString are updated, the other 
  24094.      fields are untouched.  LCP: CountryUpdate 
  24095.      bool setDesc(const string &DescSetting) 
  24096.  
  24097.      Set the short description 
  24098.      bool setDescLong(const string &DescLongSetting) 
  24099.  
  24100.      Set the long description 
  24101.      bool setDescNative(const string &DescNativeSetting) 
  24102.  
  24103.      Set the native language description 
  24104.      bool setNetCode(const string &NetCodeSetting) 
  24105.  
  24106.      Set the internet code for this country 
  24107.      bool erase() 
  24108.  
  24109.      Sets all the data members to empty 
  24110.  
  24111.   Get data members 
  24112.      bool getAll(mapString &FieldValues) 
  24113.  
  24114.      Return a mapString of all the data members of this topic. The key is the 
  24115.      variable name.  LCP: CountryAttribs 
  24116.      string getDesc() 
  24117.  
  24118.      Get the short description 
  24119.      string getDescLong() 
  24120.  
  24121.      Get the long description 
  24122.      string getDescNative() 
  24123.  
  24124.      Get the native language description 
  24125.      string getNetCode() 
  24126.  
  24127.      Get the internet code for this country 
  24128.  
  24129.  
  24130. ΓòÉΓòÉΓòÉ <hidden> Γòÿ ΓòÉΓòÉΓòÉ
  24131.  
  24132.  
  24133. lyris_Country Class 
  24134.  
  24135.      class lyris_Country 
  24136.  
  24137.      For determining what countries exist, and what languages are spoken & 
  24138.      preferred in each country 
  24139.  
  24140.      Defined in: COUNTRY.H 
  24141.  
  24142.   Create a new country 
  24143.  
  24144.       bool createNew() 
  24145.  
  24146.      Creates a new country/language table row.  LCP: CountryCreate 
  24147.      bool updateDatabase() 
  24148.  
  24149.      Save the current country with the data members that have changed.  LCP: 
  24150.      CountryUpdate 
  24151.      bool VerifyFields() 
  24152.  
  24153.      Verify that all required fields are filled in. 
  24154.  
  24155.   Retrieve data from the database 
  24156.      bool fetchAllCountries(vecString &AllCountries) 
  24157.  
  24158.      Fetch a list of all countries.  LCP: CountryAll 
  24159.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24160.  
  24161.      Fetch a paired list of countries and their native language descriptions, 
  24162.      sorted by english description.  LCP: CountryEngNat 
  24163.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24164.  
  24165.      Fetch a paired list of native language country descriptions, and the 
  24166.      english name of the country. 
  24167.      bool retrieveFromNetCode() 
  24168.  
  24169.      Determine the country that uses the currently set NetCode.  Fills all the 
  24170.      other country attributes with values. LCP: CountryAttNetCode 
  24171.      bool retrieveFromDesc() 
  24172.  
  24173.      Determine the country that uses the currently set description.  Fills all 
  24174.      the other country attributes with values.  LCP: CountryAttribs 
  24175.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24176.  
  24177.      Determine the primary language of the current country.  "Desc" must be 
  24178.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24179.      CountryPrimLang 
  24180.      bool getAllLanguages(vecString &Languages) 
  24181.  
  24182.      Determine all the languages used by the current country.  "Desc" must be 
  24183.      already set.  The result is returned in priority order (highest priority 
  24184.      first) in vecString &Languages.  LCP: CountryLanguages 
  24185.      bool getLanguageList(vecString &Languages) 
  24186.  
  24187.      Get a list of all possible languages, in alphabetical order, returned in 
  24188.      vecString &Languages.  LCP: CountryLangList 
  24189.      bool getLanguageListEngNat(mapString &Languages) 
  24190.  
  24191.      Get a map of all possible languages, their native description in 
  24192.      alphabetical order by english description, returned in in vecString 
  24193.      &Languages.  LCP: CountryLangListEngNat 
  24194.  
  24195.   Delete a country 
  24196.      bool deleteFromDesc() 
  24197.  
  24198.      Delete the country that uses the currently set description.  LCP: 
  24199.      CountryDelete 
  24200.  
  24201.   Set data members 
  24202.      bool setAll(mapString &FieldValues) 
  24203.  
  24204.      Sets all the data members of a topic using the mapString which is passed 
  24205.      to it.  Only the fields present in the mapString are updated, the other 
  24206.      fields are untouched.  LCP: CountryUpdate 
  24207.      bool setDesc(const string &DescSetting) 
  24208.  
  24209.      Set the short description 
  24210.      bool setDescLong(const string &DescLongSetting) 
  24211.  
  24212.      Set the long description 
  24213.      bool setDescNative(const string &DescNativeSetting) 
  24214.  
  24215.      Set the native language description 
  24216.      bool setNetCode(const string &NetCodeSetting) 
  24217.  
  24218.      Set the internet code for this country 
  24219.      bool erase() 
  24220.  
  24221.      Sets all the data members to empty 
  24222.  
  24223.   Get data members 
  24224.      bool getAll(mapString &FieldValues) 
  24225.  
  24226.      Return a mapString of all the data members of this topic. The key is the 
  24227.      variable name.  LCP: CountryAttribs 
  24228.      string getDesc() 
  24229.  
  24230.      Get the short description 
  24231.      string getDescLong() 
  24232.  
  24233.      Get the long description 
  24234.      string getDescNative() 
  24235.  
  24236.      Get the native language description 
  24237.      string getNetCode() 
  24238.  
  24239.      Get the internet code for this country 
  24240.  
  24241.  
  24242. ΓòÉΓòÉΓòÉ <hidden> ΓòÆ ΓòÉΓòÉΓòÉ
  24243.  
  24244.  
  24245. lyris_Country Class 
  24246.  
  24247.      class lyris_Country 
  24248.  
  24249.      For determining what countries exist, and what languages are spoken & 
  24250.      preferred in each country 
  24251.  
  24252.      Defined in: COUNTRY.H 
  24253.  
  24254.   Create a new country 
  24255.  
  24256.       bool createNew() 
  24257.  
  24258.      Creates a new country/language table row.  LCP: CountryCreate 
  24259.      bool updateDatabase() 
  24260.  
  24261.      Save the current country with the data members that have changed.  LCP: 
  24262.      CountryUpdate 
  24263.      bool VerifyFields() 
  24264.  
  24265.      Verify that all required fields are filled in. 
  24266.  
  24267.   Retrieve data from the database 
  24268.      bool fetchAllCountries(vecString &AllCountries) 
  24269.  
  24270.      Fetch a list of all countries.  LCP: CountryAll 
  24271.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24272.  
  24273.      Fetch a paired list of countries and their native language descriptions, 
  24274.      sorted by english description.  LCP: CountryEngNat 
  24275.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24276.  
  24277.      Fetch a paired list of native language country descriptions, and the 
  24278.      english name of the country. 
  24279.      bool retrieveFromNetCode() 
  24280.  
  24281.      Determine the country that uses the currently set NetCode.  Fills all the 
  24282.      other country attributes with values. LCP: CountryAttNetCode 
  24283.      bool retrieveFromDesc() 
  24284.  
  24285.      Determine the country that uses the currently set description.  Fills all 
  24286.      the other country attributes with values.  LCP: CountryAttribs 
  24287.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24288.  
  24289.      Determine the primary language of the current country.  "Desc" must be 
  24290.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24291.      CountryPrimLang 
  24292.      bool getAllLanguages(vecString &Languages) 
  24293.  
  24294.      Determine all the languages used by the current country.  "Desc" must be 
  24295.      already set.  The result is returned in priority order (highest priority 
  24296.      first) in vecString &Languages.  LCP: CountryLanguages 
  24297.      bool getLanguageList(vecString &Languages) 
  24298.  
  24299.      Get a list of all possible languages, in alphabetical order, returned in 
  24300.      vecString &Languages.  LCP: CountryLangList 
  24301.      bool getLanguageListEngNat(mapString &Languages) 
  24302.  
  24303.      Get a map of all possible languages, their native description in 
  24304.      alphabetical order by english description, returned in in vecString 
  24305.      &Languages.  LCP: CountryLangListEngNat 
  24306.  
  24307.   Delete a country 
  24308.      bool deleteFromDesc() 
  24309.  
  24310.      Delete the country that uses the currently set description.  LCP: 
  24311.      CountryDelete 
  24312.  
  24313.   Set data members 
  24314.      bool setAll(mapString &FieldValues) 
  24315.  
  24316.      Sets all the data members of a topic using the mapString which is passed 
  24317.      to it.  Only the fields present in the mapString are updated, the other 
  24318.      fields are untouched.  LCP: CountryUpdate 
  24319.      bool setDesc(const string &DescSetting) 
  24320.  
  24321.      Set the short description 
  24322.      bool setDescLong(const string &DescLongSetting) 
  24323.  
  24324.      Set the long description 
  24325.      bool setDescNative(const string &DescNativeSetting) 
  24326.  
  24327.      Set the native language description 
  24328.      bool setNetCode(const string &NetCodeSetting) 
  24329.  
  24330.      Set the internet code for this country 
  24331.      bool erase() 
  24332.  
  24333.      Sets all the data members to empty 
  24334.  
  24335.   Get data members 
  24336.      bool getAll(mapString &FieldValues) 
  24337.  
  24338.      Return a mapString of all the data members of this topic. The key is the 
  24339.      variable name.  LCP: CountryAttribs 
  24340.      string getDesc() 
  24341.  
  24342.      Get the short description 
  24343.      string getDescLong() 
  24344.  
  24345.      Get the long description 
  24346.      string getDescNative() 
  24347.  
  24348.      Get the native language description 
  24349.      string getNetCode() 
  24350.  
  24351.      Get the internet code for this country 
  24352.  
  24353.  
  24354. ΓòÉΓòÉΓòÉ <hidden> Γòô ΓòÉΓòÉΓòÉ
  24355.  
  24356.  
  24357. lyris_Country Class 
  24358.  
  24359.      class lyris_Country 
  24360.  
  24361.      For determining what countries exist, and what languages are spoken & 
  24362.      preferred in each country 
  24363.  
  24364.      Defined in: COUNTRY.H 
  24365.  
  24366.   Create a new country 
  24367.  
  24368.       bool createNew() 
  24369.  
  24370.      Creates a new country/language table row.  LCP: CountryCreate 
  24371.      bool updateDatabase() 
  24372.  
  24373.      Save the current country with the data members that have changed.  LCP: 
  24374.      CountryUpdate 
  24375.      bool VerifyFields() 
  24376.  
  24377.      Verify that all required fields are filled in. 
  24378.  
  24379.   Retrieve data from the database 
  24380.      bool fetchAllCountries(vecString &AllCountries) 
  24381.  
  24382.      Fetch a list of all countries.  LCP: CountryAll 
  24383.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24384.  
  24385.      Fetch a paired list of countries and their native language descriptions, 
  24386.      sorted by english description.  LCP: CountryEngNat 
  24387.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24388.  
  24389.      Fetch a paired list of native language country descriptions, and the 
  24390.      english name of the country. 
  24391.      bool retrieveFromNetCode() 
  24392.  
  24393.      Determine the country that uses the currently set NetCode.  Fills all the 
  24394.      other country attributes with values. LCP: CountryAttNetCode 
  24395.      bool retrieveFromDesc() 
  24396.  
  24397.      Determine the country that uses the currently set description.  Fills all 
  24398.      the other country attributes with values.  LCP: CountryAttribs 
  24399.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24400.  
  24401.      Determine the primary language of the current country.  "Desc" must be 
  24402.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24403.      CountryPrimLang 
  24404.      bool getAllLanguages(vecString &Languages) 
  24405.  
  24406.      Determine all the languages used by the current country.  "Desc" must be 
  24407.      already set.  The result is returned in priority order (highest priority 
  24408.      first) in vecString &Languages.  LCP: CountryLanguages 
  24409.      bool getLanguageList(vecString &Languages) 
  24410.  
  24411.      Get a list of all possible languages, in alphabetical order, returned in 
  24412.      vecString &Languages.  LCP: CountryLangList 
  24413.      bool getLanguageListEngNat(mapString &Languages) 
  24414.  
  24415.      Get a map of all possible languages, their native description in 
  24416.      alphabetical order by english description, returned in in vecString 
  24417.      &Languages.  LCP: CountryLangListEngNat 
  24418.  
  24419.   Delete a country 
  24420.      bool deleteFromDesc() 
  24421.  
  24422.      Delete the country that uses the currently set description.  LCP: 
  24423.      CountryDelete 
  24424.  
  24425.   Set data members 
  24426.      bool setAll(mapString &FieldValues) 
  24427.  
  24428.      Sets all the data members of a topic using the mapString which is passed 
  24429.      to it.  Only the fields present in the mapString are updated, the other 
  24430.      fields are untouched.  LCP: CountryUpdate 
  24431.      bool setDesc(const string &DescSetting) 
  24432.  
  24433.      Set the short description 
  24434.      bool setDescLong(const string &DescLongSetting) 
  24435.  
  24436.      Set the long description 
  24437.      bool setDescNative(const string &DescNativeSetting) 
  24438.  
  24439.      Set the native language description 
  24440.      bool setNetCode(const string &NetCodeSetting) 
  24441.  
  24442.      Set the internet code for this country 
  24443.      bool erase() 
  24444.  
  24445.      Sets all the data members to empty 
  24446.  
  24447.   Get data members 
  24448.      bool getAll(mapString &FieldValues) 
  24449.  
  24450.      Return a mapString of all the data members of this topic. The key is the 
  24451.      variable name.  LCP: CountryAttribs 
  24452.      string getDesc() 
  24453.  
  24454.      Get the short description 
  24455.      string getDescLong() 
  24456.  
  24457.      Get the long description 
  24458.      string getDescNative() 
  24459.  
  24460.      Get the native language description 
  24461.      string getNetCode() 
  24462.  
  24463.      Get the internet code for this country 
  24464.  
  24465.  
  24466. ΓòÉΓòÉΓòÉ <hidden> Γò½ ΓòÉΓòÉΓòÉ
  24467.  
  24468.  
  24469. lyris_Country Class 
  24470.  
  24471.      class lyris_Country 
  24472.  
  24473.      For determining what countries exist, and what languages are spoken & 
  24474.      preferred in each country 
  24475.  
  24476.      Defined in: COUNTRY.H 
  24477.  
  24478.   Create a new country 
  24479.  
  24480.       bool createNew() 
  24481.  
  24482.      Creates a new country/language table row.  LCP: CountryCreate 
  24483.      bool updateDatabase() 
  24484.  
  24485.      Save the current country with the data members that have changed.  LCP: 
  24486.      CountryUpdate 
  24487.      bool VerifyFields() 
  24488.  
  24489.      Verify that all required fields are filled in. 
  24490.  
  24491.   Retrieve data from the database 
  24492.      bool fetchAllCountries(vecString &AllCountries) 
  24493.  
  24494.      Fetch a list of all countries.  LCP: CountryAll 
  24495.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24496.  
  24497.      Fetch a paired list of countries and their native language descriptions, 
  24498.      sorted by english description.  LCP: CountryEngNat 
  24499.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24500.  
  24501.      Fetch a paired list of native language country descriptions, and the 
  24502.      english name of the country. 
  24503.      bool retrieveFromNetCode() 
  24504.  
  24505.      Determine the country that uses the currently set NetCode.  Fills all the 
  24506.      other country attributes with values. LCP: CountryAttNetCode 
  24507.      bool retrieveFromDesc() 
  24508.  
  24509.      Determine the country that uses the currently set description.  Fills all 
  24510.      the other country attributes with values.  LCP: CountryAttribs 
  24511.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24512.  
  24513.      Determine the primary language of the current country.  "Desc" must be 
  24514.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24515.      CountryPrimLang 
  24516.      bool getAllLanguages(vecString &Languages) 
  24517.  
  24518.      Determine all the languages used by the current country.  "Desc" must be 
  24519.      already set.  The result is returned in priority order (highest priority 
  24520.      first) in vecString &Languages.  LCP: CountryLanguages 
  24521.      bool getLanguageList(vecString &Languages) 
  24522.  
  24523.      Get a list of all possible languages, in alphabetical order, returned in 
  24524.      vecString &Languages.  LCP: CountryLangList 
  24525.      bool getLanguageListEngNat(mapString &Languages) 
  24526.  
  24527.      Get a map of all possible languages, their native description in 
  24528.      alphabetical order by english description, returned in in vecString 
  24529.      &Languages.  LCP: CountryLangListEngNat 
  24530.  
  24531.   Delete a country 
  24532.      bool deleteFromDesc() 
  24533.  
  24534.      Delete the country that uses the currently set description.  LCP: 
  24535.      CountryDelete 
  24536.  
  24537.   Set data members 
  24538.      bool setAll(mapString &FieldValues) 
  24539.  
  24540.      Sets all the data members of a topic using the mapString which is passed 
  24541.      to it.  Only the fields present in the mapString are updated, the other 
  24542.      fields are untouched.  LCP: CountryUpdate 
  24543.      bool setDesc(const string &DescSetting) 
  24544.  
  24545.      Set the short description 
  24546.      bool setDescLong(const string &DescLongSetting) 
  24547.  
  24548.      Set the long description 
  24549.      bool setDescNative(const string &DescNativeSetting) 
  24550.  
  24551.      Set the native language description 
  24552.      bool setNetCode(const string &NetCodeSetting) 
  24553.  
  24554.      Set the internet code for this country 
  24555.      bool erase() 
  24556.  
  24557.      Sets all the data members to empty 
  24558.  
  24559.   Get data members 
  24560.      bool getAll(mapString &FieldValues) 
  24561.  
  24562.      Return a mapString of all the data members of this topic. The key is the 
  24563.      variable name.  LCP: CountryAttribs 
  24564.      string getDesc() 
  24565.  
  24566.      Get the short description 
  24567.      string getDescLong() 
  24568.  
  24569.      Get the long description 
  24570.      string getDescNative() 
  24571.  
  24572.      Get the native language description 
  24573.      string getNetCode() 
  24574.  
  24575.      Get the internet code for this country 
  24576.  
  24577.  
  24578. ΓòÉΓòÉΓòÉ <hidden> Γò¬ ΓòÉΓòÉΓòÉ
  24579.  
  24580.  
  24581. lyris_Country Class 
  24582.  
  24583.      class lyris_Country 
  24584.  
  24585.      For determining what countries exist, and what languages are spoken & 
  24586.      preferred in each country 
  24587.  
  24588.      Defined in: COUNTRY.H 
  24589.  
  24590.   Create a new country 
  24591.  
  24592.       bool createNew() 
  24593.  
  24594.      Creates a new country/language table row.  LCP: CountryCreate 
  24595.      bool updateDatabase() 
  24596.  
  24597.      Save the current country with the data members that have changed.  LCP: 
  24598.      CountryUpdate 
  24599.      bool VerifyFields() 
  24600.  
  24601.      Verify that all required fields are filled in. 
  24602.  
  24603.   Retrieve data from the database 
  24604.      bool fetchAllCountries(vecString &AllCountries) 
  24605.  
  24606.      Fetch a list of all countries.  LCP: CountryAll 
  24607.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24608.  
  24609.      Fetch a paired list of countries and their native language descriptions, 
  24610.      sorted by english description.  LCP: CountryEngNat 
  24611.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24612.  
  24613.      Fetch a paired list of native language country descriptions, and the 
  24614.      english name of the country. 
  24615.      bool retrieveFromNetCode() 
  24616.  
  24617.      Determine the country that uses the currently set NetCode.  Fills all the 
  24618.      other country attributes with values. LCP: CountryAttNetCode 
  24619.      bool retrieveFromDesc() 
  24620.  
  24621.      Determine the country that uses the currently set description.  Fills all 
  24622.      the other country attributes with values.  LCP: CountryAttribs 
  24623.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24624.  
  24625.      Determine the primary language of the current country.  "Desc" must be 
  24626.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24627.      CountryPrimLang 
  24628.      bool getAllLanguages(vecString &Languages) 
  24629.  
  24630.      Determine all the languages used by the current country.  "Desc" must be 
  24631.      already set.  The result is returned in priority order (highest priority 
  24632.      first) in vecString &Languages.  LCP: CountryLanguages 
  24633.      bool getLanguageList(vecString &Languages) 
  24634.  
  24635.      Get a list of all possible languages, in alphabetical order, returned in 
  24636.      vecString &Languages.  LCP: CountryLangList 
  24637.      bool getLanguageListEngNat(mapString &Languages) 
  24638.  
  24639.      Get a map of all possible languages, their native description in 
  24640.      alphabetical order by english description, returned in in vecString 
  24641.      &Languages.  LCP: CountryLangListEngNat 
  24642.  
  24643.   Delete a country 
  24644.      bool deleteFromDesc() 
  24645.  
  24646.      Delete the country that uses the currently set description.  LCP: 
  24647.      CountryDelete 
  24648.  
  24649.   Set data members 
  24650.      bool setAll(mapString &FieldValues) 
  24651.  
  24652.      Sets all the data members of a topic using the mapString which is passed 
  24653.      to it.  Only the fields present in the mapString are updated, the other 
  24654.      fields are untouched.  LCP: CountryUpdate 
  24655.      bool setDesc(const string &DescSetting) 
  24656.  
  24657.      Set the short description 
  24658.      bool setDescLong(const string &DescLongSetting) 
  24659.  
  24660.      Set the long description 
  24661.      bool setDescNative(const string &DescNativeSetting) 
  24662.  
  24663.      Set the native language description 
  24664.      bool setNetCode(const string &NetCodeSetting) 
  24665.  
  24666.      Set the internet code for this country 
  24667.      bool erase() 
  24668.  
  24669.      Sets all the data members to empty 
  24670.  
  24671.   Get data members 
  24672.      bool getAll(mapString &FieldValues) 
  24673.  
  24674.      Return a mapString of all the data members of this topic. The key is the 
  24675.      variable name.  LCP: CountryAttribs 
  24676.      string getDesc() 
  24677.  
  24678.      Get the short description 
  24679.      string getDescLong() 
  24680.  
  24681.      Get the long description 
  24682.      string getDescNative() 
  24683.  
  24684.      Get the native language description 
  24685.      string getNetCode() 
  24686.  
  24687.      Get the internet code for this country 
  24688.  
  24689.  
  24690. ΓòÉΓòÉΓòÉ <hidden> Γöÿ ΓòÉΓòÉΓòÉ
  24691.  
  24692.  
  24693. lyris_Country Class 
  24694.  
  24695.      class lyris_Country 
  24696.  
  24697.      For determining what countries exist, and what languages are spoken & 
  24698.      preferred in each country 
  24699.  
  24700.      Defined in: COUNTRY.H 
  24701.  
  24702.   Create a new country 
  24703.  
  24704.       bool createNew() 
  24705.  
  24706.      Creates a new country/language table row.  LCP: CountryCreate 
  24707.      bool updateDatabase() 
  24708.  
  24709.      Save the current country with the data members that have changed.  LCP: 
  24710.      CountryUpdate 
  24711.      bool VerifyFields() 
  24712.  
  24713.      Verify that all required fields are filled in. 
  24714.  
  24715.   Retrieve data from the database 
  24716.      bool fetchAllCountries(vecString &AllCountries) 
  24717.  
  24718.      Fetch a list of all countries.  LCP: CountryAll 
  24719.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24720.  
  24721.      Fetch a paired list of countries and their native language descriptions, 
  24722.      sorted by english description.  LCP: CountryEngNat 
  24723.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24724.  
  24725.      Fetch a paired list of native language country descriptions, and the 
  24726.      english name of the country. 
  24727.      bool retrieveFromNetCode() 
  24728.  
  24729.      Determine the country that uses the currently set NetCode.  Fills all the 
  24730.      other country attributes with values. LCP: CountryAttNetCode 
  24731.      bool retrieveFromDesc() 
  24732.  
  24733.      Determine the country that uses the currently set description.  Fills all 
  24734.      the other country attributes with values.  LCP: CountryAttribs 
  24735.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24736.  
  24737.      Determine the primary language of the current country.  "Desc" must be 
  24738.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24739.      CountryPrimLang 
  24740.      bool getAllLanguages(vecString &Languages) 
  24741.  
  24742.      Determine all the languages used by the current country.  "Desc" must be 
  24743.      already set.  The result is returned in priority order (highest priority 
  24744.      first) in vecString &Languages.  LCP: CountryLanguages 
  24745.      bool getLanguageList(vecString &Languages) 
  24746.  
  24747.      Get a list of all possible languages, in alphabetical order, returned in 
  24748.      vecString &Languages.  LCP: CountryLangList 
  24749.      bool getLanguageListEngNat(mapString &Languages) 
  24750.  
  24751.      Get a map of all possible languages, their native description in 
  24752.      alphabetical order by english description, returned in in vecString 
  24753.      &Languages.  LCP: CountryLangListEngNat 
  24754.  
  24755.   Delete a country 
  24756.      bool deleteFromDesc() 
  24757.  
  24758.      Delete the country that uses the currently set description.  LCP: 
  24759.      CountryDelete 
  24760.  
  24761.   Set data members 
  24762.      bool setAll(mapString &FieldValues) 
  24763.  
  24764.      Sets all the data members of a topic using the mapString which is passed 
  24765.      to it.  Only the fields present in the mapString are updated, the other 
  24766.      fields are untouched.  LCP: CountryUpdate 
  24767.      bool setDesc(const string &DescSetting) 
  24768.  
  24769.      Set the short description 
  24770.      bool setDescLong(const string &DescLongSetting) 
  24771.  
  24772.      Set the long description 
  24773.      bool setDescNative(const string &DescNativeSetting) 
  24774.  
  24775.      Set the native language description 
  24776.      bool setNetCode(const string &NetCodeSetting) 
  24777.  
  24778.      Set the internet code for this country 
  24779.      bool erase() 
  24780.  
  24781.      Sets all the data members to empty 
  24782.  
  24783.   Get data members 
  24784.      bool getAll(mapString &FieldValues) 
  24785.  
  24786.      Return a mapString of all the data members of this topic. The key is the 
  24787.      variable name.  LCP: CountryAttribs 
  24788.      string getDesc() 
  24789.  
  24790.      Get the short description 
  24791.      string getDescLong() 
  24792.  
  24793.      Get the long description 
  24794.      string getDescNative() 
  24795.  
  24796.      Get the native language description 
  24797.      string getNetCode() 
  24798.  
  24799.      Get the internet code for this country 
  24800.  
  24801.  
  24802. ΓòÉΓòÉΓòÉ <hidden> Γöî ΓòÉΓòÉΓòÉ
  24803.  
  24804.  
  24805. lyris_Country Class 
  24806.  
  24807.      class lyris_Country 
  24808.  
  24809.      For determining what countries exist, and what languages are spoken & 
  24810.      preferred in each country 
  24811.  
  24812.      Defined in: COUNTRY.H 
  24813.  
  24814.   Create a new country 
  24815.  
  24816.       bool createNew() 
  24817.  
  24818.      Creates a new country/language table row.  LCP: CountryCreate 
  24819.      bool updateDatabase() 
  24820.  
  24821.      Save the current country with the data members that have changed.  LCP: 
  24822.      CountryUpdate 
  24823.      bool VerifyFields() 
  24824.  
  24825.      Verify that all required fields are filled in. 
  24826.  
  24827.   Retrieve data from the database 
  24828.      bool fetchAllCountries(vecString &AllCountries) 
  24829.  
  24830.      Fetch a list of all countries.  LCP: CountryAll 
  24831.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24832.  
  24833.      Fetch a paired list of countries and their native language descriptions, 
  24834.      sorted by english description.  LCP: CountryEngNat 
  24835.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24836.  
  24837.      Fetch a paired list of native language country descriptions, and the 
  24838.      english name of the country. 
  24839.      bool retrieveFromNetCode() 
  24840.  
  24841.      Determine the country that uses the currently set NetCode.  Fills all the 
  24842.      other country attributes with values. LCP: CountryAttNetCode 
  24843.      bool retrieveFromDesc() 
  24844.  
  24845.      Determine the country that uses the currently set description.  Fills all 
  24846.      the other country attributes with values.  LCP: CountryAttribs 
  24847.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24848.  
  24849.      Determine the primary language of the current country.  "Desc" must be 
  24850.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24851.      CountryPrimLang 
  24852.      bool getAllLanguages(vecString &Languages) 
  24853.  
  24854.      Determine all the languages used by the current country.  "Desc" must be 
  24855.      already set.  The result is returned in priority order (highest priority 
  24856.      first) in vecString &Languages.  LCP: CountryLanguages 
  24857.      bool getLanguageList(vecString &Languages) 
  24858.  
  24859.      Get a list of all possible languages, in alphabetical order, returned in 
  24860.      vecString &Languages.  LCP: CountryLangList 
  24861.      bool getLanguageListEngNat(mapString &Languages) 
  24862.  
  24863.      Get a map of all possible languages, their native description in 
  24864.      alphabetical order by english description, returned in in vecString 
  24865.      &Languages.  LCP: CountryLangListEngNat 
  24866.  
  24867.   Delete a country 
  24868.      bool deleteFromDesc() 
  24869.  
  24870.      Delete the country that uses the currently set description.  LCP: 
  24871.      CountryDelete 
  24872.  
  24873.   Set data members 
  24874.      bool setAll(mapString &FieldValues) 
  24875.  
  24876.      Sets all the data members of a topic using the mapString which is passed 
  24877.      to it.  Only the fields present in the mapString are updated, the other 
  24878.      fields are untouched.  LCP: CountryUpdate 
  24879.      bool setDesc(const string &DescSetting) 
  24880.  
  24881.      Set the short description 
  24882.      bool setDescLong(const string &DescLongSetting) 
  24883.  
  24884.      Set the long description 
  24885.      bool setDescNative(const string &DescNativeSetting) 
  24886.  
  24887.      Set the native language description 
  24888.      bool setNetCode(const string &NetCodeSetting) 
  24889.  
  24890.      Set the internet code for this country 
  24891.      bool erase() 
  24892.  
  24893.      Sets all the data members to empty 
  24894.  
  24895.   Get data members 
  24896.      bool getAll(mapString &FieldValues) 
  24897.  
  24898.      Return a mapString of all the data members of this topic. The key is the 
  24899.      variable name.  LCP: CountryAttribs 
  24900.      string getDesc() 
  24901.  
  24902.      Get the short description 
  24903.      string getDescLong() 
  24904.  
  24905.      Get the long description 
  24906.      string getDescNative() 
  24907.  
  24908.      Get the native language description 
  24909.      string getNetCode() 
  24910.  
  24911.      Get the internet code for this country 
  24912.  
  24913.  
  24914. ΓòÉΓòÉΓòÉ <hidden> Γûê ΓòÉΓòÉΓòÉ
  24915.  
  24916.  
  24917. lyris_Country Class 
  24918.  
  24919.      class lyris_Country 
  24920.  
  24921.      For determining what countries exist, and what languages are spoken & 
  24922.      preferred in each country 
  24923.  
  24924.      Defined in: COUNTRY.H 
  24925.  
  24926.   Create a new country 
  24927.  
  24928.       bool createNew() 
  24929.  
  24930.      Creates a new country/language table row.  LCP: CountryCreate 
  24931.      bool updateDatabase() 
  24932.  
  24933.      Save the current country with the data members that have changed.  LCP: 
  24934.      CountryUpdate 
  24935.      bool VerifyFields() 
  24936.  
  24937.      Verify that all required fields are filled in. 
  24938.  
  24939.   Retrieve data from the database 
  24940.      bool fetchAllCountries(vecString &AllCountries) 
  24941.  
  24942.      Fetch a list of all countries.  LCP: CountryAll 
  24943.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  24944.  
  24945.      Fetch a paired list of countries and their native language descriptions, 
  24946.      sorted by english description.  LCP: CountryEngNat 
  24947.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  24948.  
  24949.      Fetch a paired list of native language country descriptions, and the 
  24950.      english name of the country. 
  24951.      bool retrieveFromNetCode() 
  24952.  
  24953.      Determine the country that uses the currently set NetCode.  Fills all the 
  24954.      other country attributes with values. LCP: CountryAttNetCode 
  24955.      bool retrieveFromDesc() 
  24956.  
  24957.      Determine the country that uses the currently set description.  Fills all 
  24958.      the other country attributes with values.  LCP: CountryAttribs 
  24959.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  24960.  
  24961.      Determine the primary language of the current country.  "Desc" must be 
  24962.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  24963.      CountryPrimLang 
  24964.      bool getAllLanguages(vecString &Languages) 
  24965.  
  24966.      Determine all the languages used by the current country.  "Desc" must be 
  24967.      already set.  The result is returned in priority order (highest priority 
  24968.      first) in vecString &Languages.  LCP: CountryLanguages 
  24969.      bool getLanguageList(vecString &Languages) 
  24970.  
  24971.      Get a list of all possible languages, in alphabetical order, returned in 
  24972.      vecString &Languages.  LCP: CountryLangList 
  24973.      bool getLanguageListEngNat(mapString &Languages) 
  24974.  
  24975.      Get a map of all possible languages, their native description in 
  24976.      alphabetical order by english description, returned in in vecString 
  24977.      &Languages.  LCP: CountryLangListEngNat 
  24978.  
  24979.   Delete a country 
  24980.      bool deleteFromDesc() 
  24981.  
  24982.      Delete the country that uses the currently set description.  LCP: 
  24983.      CountryDelete 
  24984.  
  24985.   Set data members 
  24986.      bool setAll(mapString &FieldValues) 
  24987.  
  24988.      Sets all the data members of a topic using the mapString which is passed 
  24989.      to it.  Only the fields present in the mapString are updated, the other 
  24990.      fields are untouched.  LCP: CountryUpdate 
  24991.      bool setDesc(const string &DescSetting) 
  24992.  
  24993.      Set the short description 
  24994.      bool setDescLong(const string &DescLongSetting) 
  24995.  
  24996.      Set the long description 
  24997.      bool setDescNative(const string &DescNativeSetting) 
  24998.  
  24999.      Set the native language description 
  25000.      bool setNetCode(const string &NetCodeSetting) 
  25001.  
  25002.      Set the internet code for this country 
  25003.      bool erase() 
  25004.  
  25005.      Sets all the data members to empty 
  25006.  
  25007.   Get data members 
  25008.      bool getAll(mapString &FieldValues) 
  25009.  
  25010.      Return a mapString of all the data members of this topic. The key is the 
  25011.      variable name.  LCP: CountryAttribs 
  25012.      string getDesc() 
  25013.  
  25014.      Get the short description 
  25015.      string getDescLong() 
  25016.  
  25017.      Get the long description 
  25018.      string getDescNative() 
  25019.  
  25020.      Get the native language description 
  25021.      string getNetCode() 
  25022.  
  25023.      Get the internet code for this country 
  25024.  
  25025.  
  25026. ΓòÉΓòÉΓòÉ <hidden> Γûä ΓòÉΓòÉΓòÉ
  25027.  
  25028.  
  25029. lyris_Country Class 
  25030.  
  25031.      class lyris_Country 
  25032.  
  25033.      For determining what countries exist, and what languages are spoken & 
  25034.      preferred in each country 
  25035.  
  25036.      Defined in: COUNTRY.H 
  25037.  
  25038.   Create a new country 
  25039.  
  25040.       bool createNew() 
  25041.  
  25042.      Creates a new country/language table row.  LCP: CountryCreate 
  25043.      bool updateDatabase() 
  25044.  
  25045.      Save the current country with the data members that have changed.  LCP: 
  25046.      CountryUpdate 
  25047.      bool VerifyFields() 
  25048.  
  25049.      Verify that all required fields are filled in. 
  25050.  
  25051.   Retrieve data from the database 
  25052.      bool fetchAllCountries(vecString &AllCountries) 
  25053.  
  25054.      Fetch a list of all countries.  LCP: CountryAll 
  25055.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25056.  
  25057.      Fetch a paired list of countries and their native language descriptions, 
  25058.      sorted by english description.  LCP: CountryEngNat 
  25059.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25060.  
  25061.      Fetch a paired list of native language country descriptions, and the 
  25062.      english name of the country. 
  25063.      bool retrieveFromNetCode() 
  25064.  
  25065.      Determine the country that uses the currently set NetCode.  Fills all the 
  25066.      other country attributes with values. LCP: CountryAttNetCode 
  25067.      bool retrieveFromDesc() 
  25068.  
  25069.      Determine the country that uses the currently set description.  Fills all 
  25070.      the other country attributes with values.  LCP: CountryAttribs 
  25071.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25072.  
  25073.      Determine the primary language of the current country.  "Desc" must be 
  25074.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25075.      CountryPrimLang 
  25076.      bool getAllLanguages(vecString &Languages) 
  25077.  
  25078.      Determine all the languages used by the current country.  "Desc" must be 
  25079.      already set.  The result is returned in priority order (highest priority 
  25080.      first) in vecString &Languages.  LCP: CountryLanguages 
  25081.      bool getLanguageList(vecString &Languages) 
  25082.  
  25083.      Get a list of all possible languages, in alphabetical order, returned in 
  25084.      vecString &Languages.  LCP: CountryLangList 
  25085.      bool getLanguageListEngNat(mapString &Languages) 
  25086.  
  25087.      Get a map of all possible languages, their native description in 
  25088.      alphabetical order by english description, returned in in vecString 
  25089.      &Languages.  LCP: CountryLangListEngNat 
  25090.  
  25091.   Delete a country 
  25092.      bool deleteFromDesc() 
  25093.  
  25094.      Delete the country that uses the currently set description.  LCP: 
  25095.      CountryDelete 
  25096.  
  25097.   Set data members 
  25098.      bool setAll(mapString &FieldValues) 
  25099.  
  25100.      Sets all the data members of a topic using the mapString which is passed 
  25101.      to it.  Only the fields present in the mapString are updated, the other 
  25102.      fields are untouched.  LCP: CountryUpdate 
  25103.      bool setDesc(const string &DescSetting) 
  25104.  
  25105.      Set the short description 
  25106.      bool setDescLong(const string &DescLongSetting) 
  25107.  
  25108.      Set the long description 
  25109.      bool setDescNative(const string &DescNativeSetting) 
  25110.  
  25111.      Set the native language description 
  25112.      bool setNetCode(const string &NetCodeSetting) 
  25113.  
  25114.      Set the internet code for this country 
  25115.      bool erase() 
  25116.  
  25117.      Sets all the data members to empty 
  25118.  
  25119.   Get data members 
  25120.      bool getAll(mapString &FieldValues) 
  25121.  
  25122.      Return a mapString of all the data members of this topic. The key is the 
  25123.      variable name.  LCP: CountryAttribs 
  25124.      string getDesc() 
  25125.  
  25126.      Get the short description 
  25127.      string getDescLong() 
  25128.  
  25129.      Get the long description 
  25130.      string getDescNative() 
  25131.  
  25132.      Get the native language description 
  25133.      string getNetCode() 
  25134.  
  25135.      Get the internet code for this country 
  25136.  
  25137.  
  25138. ΓòÉΓòÉΓòÉ <hidden> Γûî ΓòÉΓòÉΓòÉ
  25139.  
  25140.  
  25141. lyris_Country Class 
  25142.  
  25143.      class lyris_Country 
  25144.  
  25145.      For determining what countries exist, and what languages are spoken & 
  25146.      preferred in each country 
  25147.  
  25148.      Defined in: COUNTRY.H 
  25149.  
  25150.   Create a new country 
  25151.  
  25152.       bool createNew() 
  25153.  
  25154.      Creates a new country/language table row.  LCP: CountryCreate 
  25155.      bool updateDatabase() 
  25156.  
  25157.      Save the current country with the data members that have changed.  LCP: 
  25158.      CountryUpdate 
  25159.      bool VerifyFields() 
  25160.  
  25161.      Verify that all required fields are filled in. 
  25162.  
  25163.   Retrieve data from the database 
  25164.      bool fetchAllCountries(vecString &AllCountries) 
  25165.  
  25166.      Fetch a list of all countries.  LCP: CountryAll 
  25167.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25168.  
  25169.      Fetch a paired list of countries and their native language descriptions, 
  25170.      sorted by english description.  LCP: CountryEngNat 
  25171.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25172.  
  25173.      Fetch a paired list of native language country descriptions, and the 
  25174.      english name of the country. 
  25175.      bool retrieveFromNetCode() 
  25176.  
  25177.      Determine the country that uses the currently set NetCode.  Fills all the 
  25178.      other country attributes with values. LCP: CountryAttNetCode 
  25179.      bool retrieveFromDesc() 
  25180.  
  25181.      Determine the country that uses the currently set description.  Fills all 
  25182.      the other country attributes with values.  LCP: CountryAttribs 
  25183.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25184.  
  25185.      Determine the primary language of the current country.  "Desc" must be 
  25186.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25187.      CountryPrimLang 
  25188.      bool getAllLanguages(vecString &Languages) 
  25189.  
  25190.      Determine all the languages used by the current country.  "Desc" must be 
  25191.      already set.  The result is returned in priority order (highest priority 
  25192.      first) in vecString &Languages.  LCP: CountryLanguages 
  25193.      bool getLanguageList(vecString &Languages) 
  25194.  
  25195.      Get a list of all possible languages, in alphabetical order, returned in 
  25196.      vecString &Languages.  LCP: CountryLangList 
  25197.      bool getLanguageListEngNat(mapString &Languages) 
  25198.  
  25199.      Get a map of all possible languages, their native description in 
  25200.      alphabetical order by english description, returned in in vecString 
  25201.      &Languages.  LCP: CountryLangListEngNat 
  25202.  
  25203.   Delete a country 
  25204.      bool deleteFromDesc() 
  25205.  
  25206.      Delete the country that uses the currently set description.  LCP: 
  25207.      CountryDelete 
  25208.  
  25209.   Set data members 
  25210.      bool setAll(mapString &FieldValues) 
  25211.  
  25212.      Sets all the data members of a topic using the mapString which is passed 
  25213.      to it.  Only the fields present in the mapString are updated, the other 
  25214.      fields are untouched.  LCP: CountryUpdate 
  25215.      bool setDesc(const string &DescSetting) 
  25216.  
  25217.      Set the short description 
  25218.      bool setDescLong(const string &DescLongSetting) 
  25219.  
  25220.      Set the long description 
  25221.      bool setDescNative(const string &DescNativeSetting) 
  25222.  
  25223.      Set the native language description 
  25224.      bool setNetCode(const string &NetCodeSetting) 
  25225.  
  25226.      Set the internet code for this country 
  25227.      bool erase() 
  25228.  
  25229.      Sets all the data members to empty 
  25230.  
  25231.   Get data members 
  25232.      bool getAll(mapString &FieldValues) 
  25233.  
  25234.      Return a mapString of all the data members of this topic. The key is the 
  25235.      variable name.  LCP: CountryAttribs 
  25236.      string getDesc() 
  25237.  
  25238.      Get the short description 
  25239.      string getDescLong() 
  25240.  
  25241.      Get the long description 
  25242.      string getDescNative() 
  25243.  
  25244.      Get the native language description 
  25245.      string getNetCode() 
  25246.  
  25247.      Get the internet code for this country 
  25248.  
  25249.  
  25250. ΓòÉΓòÉΓòÉ <hidden> ΓûÉ ΓòÉΓòÉΓòÉ
  25251.  
  25252.  
  25253. lyris_Country Class 
  25254.  
  25255.      class lyris_Country 
  25256.  
  25257.      For determining what countries exist, and what languages are spoken & 
  25258.      preferred in each country 
  25259.  
  25260.      Defined in: COUNTRY.H 
  25261.  
  25262.   Create a new country 
  25263.  
  25264.       bool createNew() 
  25265.  
  25266.      Creates a new country/language table row.  LCP: CountryCreate 
  25267.      bool updateDatabase() 
  25268.  
  25269.      Save the current country with the data members that have changed.  LCP: 
  25270.      CountryUpdate 
  25271.      bool VerifyFields() 
  25272.  
  25273.      Verify that all required fields are filled in. 
  25274.  
  25275.   Retrieve data from the database 
  25276.      bool fetchAllCountries(vecString &AllCountries) 
  25277.  
  25278.      Fetch a list of all countries.  LCP: CountryAll 
  25279.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25280.  
  25281.      Fetch a paired list of countries and their native language descriptions, 
  25282.      sorted by english description.  LCP: CountryEngNat 
  25283.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25284.  
  25285.      Fetch a paired list of native language country descriptions, and the 
  25286.      english name of the country. 
  25287.      bool retrieveFromNetCode() 
  25288.  
  25289.      Determine the country that uses the currently set NetCode.  Fills all the 
  25290.      other country attributes with values. LCP: CountryAttNetCode 
  25291.      bool retrieveFromDesc() 
  25292.  
  25293.      Determine the country that uses the currently set description.  Fills all 
  25294.      the other country attributes with values.  LCP: CountryAttribs 
  25295.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25296.  
  25297.      Determine the primary language of the current country.  "Desc" must be 
  25298.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25299.      CountryPrimLang 
  25300.      bool getAllLanguages(vecString &Languages) 
  25301.  
  25302.      Determine all the languages used by the current country.  "Desc" must be 
  25303.      already set.  The result is returned in priority order (highest priority 
  25304.      first) in vecString &Languages.  LCP: CountryLanguages 
  25305.      bool getLanguageList(vecString &Languages) 
  25306.  
  25307.      Get a list of all possible languages, in alphabetical order, returned in 
  25308.      vecString &Languages.  LCP: CountryLangList 
  25309.      bool getLanguageListEngNat(mapString &Languages) 
  25310.  
  25311.      Get a map of all possible languages, their native description in 
  25312.      alphabetical order by english description, returned in in vecString 
  25313.      &Languages.  LCP: CountryLangListEngNat 
  25314.  
  25315.   Delete a country 
  25316.      bool deleteFromDesc() 
  25317.  
  25318.      Delete the country that uses the currently set description.  LCP: 
  25319.      CountryDelete 
  25320.  
  25321.   Set data members 
  25322.      bool setAll(mapString &FieldValues) 
  25323.  
  25324.      Sets all the data members of a topic using the mapString which is passed 
  25325.      to it.  Only the fields present in the mapString are updated, the other 
  25326.      fields are untouched.  LCP: CountryUpdate 
  25327.      bool setDesc(const string &DescSetting) 
  25328.  
  25329.      Set the short description 
  25330.      bool setDescLong(const string &DescLongSetting) 
  25331.  
  25332.      Set the long description 
  25333.      bool setDescNative(const string &DescNativeSetting) 
  25334.  
  25335.      Set the native language description 
  25336.      bool setNetCode(const string &NetCodeSetting) 
  25337.  
  25338.      Set the internet code for this country 
  25339.      bool erase() 
  25340.  
  25341.      Sets all the data members to empty 
  25342.  
  25343.   Get data members 
  25344.      bool getAll(mapString &FieldValues) 
  25345.  
  25346.      Return a mapString of all the data members of this topic. The key is the 
  25347.      variable name.  LCP: CountryAttribs 
  25348.      string getDesc() 
  25349.  
  25350.      Get the short description 
  25351.      string getDescLong() 
  25352.  
  25353.      Get the long description 
  25354.      string getDescNative() 
  25355.  
  25356.      Get the native language description 
  25357.      string getNetCode() 
  25358.  
  25359.      Get the internet code for this country 
  25360.  
  25361.  
  25362. ΓòÉΓòÉΓòÉ <hidden> ΓûÇ ΓòÉΓòÉΓòÉ
  25363.  
  25364.  
  25365. lyris_Country Class 
  25366.  
  25367.      class lyris_Country 
  25368.  
  25369.      For determining what countries exist, and what languages are spoken & 
  25370.      preferred in each country 
  25371.  
  25372.      Defined in: COUNTRY.H 
  25373.  
  25374.   Create a new country 
  25375.  
  25376.       bool createNew() 
  25377.  
  25378.      Creates a new country/language table row.  LCP: CountryCreate 
  25379.      bool updateDatabase() 
  25380.  
  25381.      Save the current country with the data members that have changed.  LCP: 
  25382.      CountryUpdate 
  25383.      bool VerifyFields() 
  25384.  
  25385.      Verify that all required fields are filled in. 
  25386.  
  25387.   Retrieve data from the database 
  25388.      bool fetchAllCountries(vecString &AllCountries) 
  25389.  
  25390.      Fetch a list of all countries.  LCP: CountryAll 
  25391.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25392.  
  25393.      Fetch a paired list of countries and their native language descriptions, 
  25394.      sorted by english description.  LCP: CountryEngNat 
  25395.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25396.  
  25397.      Fetch a paired list of native language country descriptions, and the 
  25398.      english name of the country. 
  25399.      bool retrieveFromNetCode() 
  25400.  
  25401.      Determine the country that uses the currently set NetCode.  Fills all the 
  25402.      other country attributes with values. LCP: CountryAttNetCode 
  25403.      bool retrieveFromDesc() 
  25404.  
  25405.      Determine the country that uses the currently set description.  Fills all 
  25406.      the other country attributes with values.  LCP: CountryAttribs 
  25407.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25408.  
  25409.      Determine the primary language of the current country.  "Desc" must be 
  25410.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25411.      CountryPrimLang 
  25412.      bool getAllLanguages(vecString &Languages) 
  25413.  
  25414.      Determine all the languages used by the current country.  "Desc" must be 
  25415.      already set.  The result is returned in priority order (highest priority 
  25416.      first) in vecString &Languages.  LCP: CountryLanguages 
  25417.      bool getLanguageList(vecString &Languages) 
  25418.  
  25419.      Get a list of all possible languages, in alphabetical order, returned in 
  25420.      vecString &Languages.  LCP: CountryLangList 
  25421.      bool getLanguageListEngNat(mapString &Languages) 
  25422.  
  25423.      Get a map of all possible languages, their native description in 
  25424.      alphabetical order by english description, returned in in vecString 
  25425.      &Languages.  LCP: CountryLangListEngNat 
  25426.  
  25427.   Delete a country 
  25428.      bool deleteFromDesc() 
  25429.  
  25430.      Delete the country that uses the currently set description.  LCP: 
  25431.      CountryDelete 
  25432.  
  25433.   Set data members 
  25434.      bool setAll(mapString &FieldValues) 
  25435.  
  25436.      Sets all the data members of a topic using the mapString which is passed 
  25437.      to it.  Only the fields present in the mapString are updated, the other 
  25438.      fields are untouched.  LCP: CountryUpdate 
  25439.      bool setDesc(const string &DescSetting) 
  25440.  
  25441.      Set the short description 
  25442.      bool setDescLong(const string &DescLongSetting) 
  25443.  
  25444.      Set the long description 
  25445.      bool setDescNative(const string &DescNativeSetting) 
  25446.  
  25447.      Set the native language description 
  25448.      bool setNetCode(const string &NetCodeSetting) 
  25449.  
  25450.      Set the internet code for this country 
  25451.      bool erase() 
  25452.  
  25453.      Sets all the data members to empty 
  25454.  
  25455.   Get data members 
  25456.      bool getAll(mapString &FieldValues) 
  25457.  
  25458.      Return a mapString of all the data members of this topic. The key is the 
  25459.      variable name.  LCP: CountryAttribs 
  25460.      string getDesc() 
  25461.  
  25462.      Get the short description 
  25463.      string getDescLong() 
  25464.  
  25465.      Get the long description 
  25466.      string getDescNative() 
  25467.  
  25468.      Get the native language description 
  25469.      string getNetCode() 
  25470.  
  25471.      Get the internet code for this country 
  25472.  
  25473.  
  25474. ΓòÉΓòÉΓòÉ <hidden> ╤Ç ΓòÉΓòÉΓòÉ
  25475.  
  25476.  
  25477. lyris_Country Class 
  25478.  
  25479.      class lyris_Country 
  25480.  
  25481.      For determining what countries exist, and what languages are spoken & 
  25482.      preferred in each country 
  25483.  
  25484.      Defined in: COUNTRY.H 
  25485.  
  25486.   Create a new country 
  25487.  
  25488.       bool createNew() 
  25489.  
  25490.      Creates a new country/language table row.  LCP: CountryCreate 
  25491.      bool updateDatabase() 
  25492.  
  25493.      Save the current country with the data members that have changed.  LCP: 
  25494.      CountryUpdate 
  25495.      bool VerifyFields() 
  25496.  
  25497.      Verify that all required fields are filled in. 
  25498.  
  25499.   Retrieve data from the database 
  25500.      bool fetchAllCountries(vecString &AllCountries) 
  25501.  
  25502.      Fetch a list of all countries.  LCP: CountryAll 
  25503.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25504.  
  25505.      Fetch a paired list of countries and their native language descriptions, 
  25506.      sorted by english description.  LCP: CountryEngNat 
  25507.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25508.  
  25509.      Fetch a paired list of native language country descriptions, and the 
  25510.      english name of the country. 
  25511.      bool retrieveFromNetCode() 
  25512.  
  25513.      Determine the country that uses the currently set NetCode.  Fills all the 
  25514.      other country attributes with values. LCP: CountryAttNetCode 
  25515.      bool retrieveFromDesc() 
  25516.  
  25517.      Determine the country that uses the currently set description.  Fills all 
  25518.      the other country attributes with values.  LCP: CountryAttribs 
  25519.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25520.  
  25521.      Determine the primary language of the current country.  "Desc" must be 
  25522.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25523.      CountryPrimLang 
  25524.      bool getAllLanguages(vecString &Languages) 
  25525.  
  25526.      Determine all the languages used by the current country.  "Desc" must be 
  25527.      already set.  The result is returned in priority order (highest priority 
  25528.      first) in vecString &Languages.  LCP: CountryLanguages 
  25529.      bool getLanguageList(vecString &Languages) 
  25530.  
  25531.      Get a list of all possible languages, in alphabetical order, returned in 
  25532.      vecString &Languages.  LCP: CountryLangList 
  25533.      bool getLanguageListEngNat(mapString &Languages) 
  25534.  
  25535.      Get a map of all possible languages, their native description in 
  25536.      alphabetical order by english description, returned in in vecString 
  25537.      &Languages.  LCP: CountryLangListEngNat 
  25538.  
  25539.   Delete a country 
  25540.      bool deleteFromDesc() 
  25541.  
  25542.      Delete the country that uses the currently set description.  LCP: 
  25543.      CountryDelete 
  25544.  
  25545.   Set data members 
  25546.      bool setAll(mapString &FieldValues) 
  25547.  
  25548.      Sets all the data members of a topic using the mapString which is passed 
  25549.      to it.  Only the fields present in the mapString are updated, the other 
  25550.      fields are untouched.  LCP: CountryUpdate 
  25551.      bool setDesc(const string &DescSetting) 
  25552.  
  25553.      Set the short description 
  25554.      bool setDescLong(const string &DescLongSetting) 
  25555.  
  25556.      Set the long description 
  25557.      bool setDescNative(const string &DescNativeSetting) 
  25558.  
  25559.      Set the native language description 
  25560.      bool setNetCode(const string &NetCodeSetting) 
  25561.  
  25562.      Set the internet code for this country 
  25563.      bool erase() 
  25564.  
  25565.      Sets all the data members to empty 
  25566.  
  25567.   Get data members 
  25568.      bool getAll(mapString &FieldValues) 
  25569.  
  25570.      Return a mapString of all the data members of this topic. The key is the 
  25571.      variable name.  LCP: CountryAttribs 
  25572.      string getDesc() 
  25573.  
  25574.      Get the short description 
  25575.      string getDescLong() 
  25576.  
  25577.      Get the long description 
  25578.      string getDescNative() 
  25579.  
  25580.      Get the native language description 
  25581.      string getNetCode() 
  25582.  
  25583.      Get the internet code for this country 
  25584.  
  25585.  
  25586. ΓòÉΓòÉΓòÉ <hidden> ╤ü ΓòÉΓòÉΓòÉ
  25587.  
  25588.  
  25589. lyris_Country Class 
  25590.  
  25591.      class lyris_Country 
  25592.  
  25593.      For determining what countries exist, and what languages are spoken & 
  25594.      preferred in each country 
  25595.  
  25596.      Defined in: COUNTRY.H 
  25597.  
  25598.   Create a new country 
  25599.  
  25600.       bool createNew() 
  25601.  
  25602.      Creates a new country/language table row.  LCP: CountryCreate 
  25603.      bool updateDatabase() 
  25604.  
  25605.      Save the current country with the data members that have changed.  LCP: 
  25606.      CountryUpdate 
  25607.      bool VerifyFields() 
  25608.  
  25609.      Verify that all required fields are filled in. 
  25610.  
  25611.   Retrieve data from the database 
  25612.      bool fetchAllCountries(vecString &AllCountries) 
  25613.  
  25614.      Fetch a list of all countries.  LCP: CountryAll 
  25615.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25616.  
  25617.      Fetch a paired list of countries and their native language descriptions, 
  25618.      sorted by english description.  LCP: CountryEngNat 
  25619.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25620.  
  25621.      Fetch a paired list of native language country descriptions, and the 
  25622.      english name of the country. 
  25623.      bool retrieveFromNetCode() 
  25624.  
  25625.      Determine the country that uses the currently set NetCode.  Fills all the 
  25626.      other country attributes with values. LCP: CountryAttNetCode 
  25627.      bool retrieveFromDesc() 
  25628.  
  25629.      Determine the country that uses the currently set description.  Fills all 
  25630.      the other country attributes with values.  LCP: CountryAttribs 
  25631.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25632.  
  25633.      Determine the primary language of the current country.  "Desc" must be 
  25634.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25635.      CountryPrimLang 
  25636.      bool getAllLanguages(vecString &Languages) 
  25637.  
  25638.      Determine all the languages used by the current country.  "Desc" must be 
  25639.      already set.  The result is returned in priority order (highest priority 
  25640.      first) in vecString &Languages.  LCP: CountryLanguages 
  25641.      bool getLanguageList(vecString &Languages) 
  25642.  
  25643.      Get a list of all possible languages, in alphabetical order, returned in 
  25644.      vecString &Languages.  LCP: CountryLangList 
  25645.      bool getLanguageListEngNat(mapString &Languages) 
  25646.  
  25647.      Get a map of all possible languages, their native description in 
  25648.      alphabetical order by english description, returned in in vecString 
  25649.      &Languages.  LCP: CountryLangListEngNat 
  25650.  
  25651.   Delete a country 
  25652.      bool deleteFromDesc() 
  25653.  
  25654.      Delete the country that uses the currently set description.  LCP: 
  25655.      CountryDelete 
  25656.  
  25657.   Set data members 
  25658.      bool setAll(mapString &FieldValues) 
  25659.  
  25660.      Sets all the data members of a topic using the mapString which is passed 
  25661.      to it.  Only the fields present in the mapString are updated, the other 
  25662.      fields are untouched.  LCP: CountryUpdate 
  25663.      bool setDesc(const string &DescSetting) 
  25664.  
  25665.      Set the short description 
  25666.      bool setDescLong(const string &DescLongSetting) 
  25667.  
  25668.      Set the long description 
  25669.      bool setDescNative(const string &DescNativeSetting) 
  25670.  
  25671.      Set the native language description 
  25672.      bool setNetCode(const string &NetCodeSetting) 
  25673.  
  25674.      Set the internet code for this country 
  25675.      bool erase() 
  25676.  
  25677.      Sets all the data members to empty 
  25678.  
  25679.   Get data members 
  25680.      bool getAll(mapString &FieldValues) 
  25681.  
  25682.      Return a mapString of all the data members of this topic. The key is the 
  25683.      variable name.  LCP: CountryAttribs 
  25684.      string getDesc() 
  25685.  
  25686.      Get the short description 
  25687.      string getDescLong() 
  25688.  
  25689.      Get the long description 
  25690.      string getDescNative() 
  25691.  
  25692.      Get the native language description 
  25693.      string getNetCode() 
  25694.  
  25695.      Get the internet code for this country 
  25696.  
  25697.  
  25698. ΓòÉΓòÉΓòÉ <hidden> ╤é ΓòÉΓòÉΓòÉ
  25699.  
  25700.  
  25701. lyris_Country Class 
  25702.  
  25703.      class lyris_Country 
  25704.  
  25705.      For determining what countries exist, and what languages are spoken & 
  25706.      preferred in each country 
  25707.  
  25708.      Defined in: COUNTRY.H 
  25709.  
  25710.   Create a new country 
  25711.  
  25712.       bool createNew() 
  25713.  
  25714.      Creates a new country/language table row.  LCP: CountryCreate 
  25715.      bool updateDatabase() 
  25716.  
  25717.      Save the current country with the data members that have changed.  LCP: 
  25718.      CountryUpdate 
  25719.      bool VerifyFields() 
  25720.  
  25721.      Verify that all required fields are filled in. 
  25722.  
  25723.   Retrieve data from the database 
  25724.      bool fetchAllCountries(vecString &AllCountries) 
  25725.  
  25726.      Fetch a list of all countries.  LCP: CountryAll 
  25727.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25728.  
  25729.      Fetch a paired list of countries and their native language descriptions, 
  25730.      sorted by english description.  LCP: CountryEngNat 
  25731.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25732.  
  25733.      Fetch a paired list of native language country descriptions, and the 
  25734.      english name of the country. 
  25735.      bool retrieveFromNetCode() 
  25736.  
  25737.      Determine the country that uses the currently set NetCode.  Fills all the 
  25738.      other country attributes with values. LCP: CountryAttNetCode 
  25739.      bool retrieveFromDesc() 
  25740.  
  25741.      Determine the country that uses the currently set description.  Fills all 
  25742.      the other country attributes with values.  LCP: CountryAttribs 
  25743.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25744.  
  25745.      Determine the primary language of the current country.  "Desc" must be 
  25746.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25747.      CountryPrimLang 
  25748.      bool getAllLanguages(vecString &Languages) 
  25749.  
  25750.      Determine all the languages used by the current country.  "Desc" must be 
  25751.      already set.  The result is returned in priority order (highest priority 
  25752.      first) in vecString &Languages.  LCP: CountryLanguages 
  25753.      bool getLanguageList(vecString &Languages) 
  25754.  
  25755.      Get a list of all possible languages, in alphabetical order, returned in 
  25756.      vecString &Languages.  LCP: CountryLangList 
  25757.      bool getLanguageListEngNat(mapString &Languages) 
  25758.  
  25759.      Get a map of all possible languages, their native description in 
  25760.      alphabetical order by english description, returned in in vecString 
  25761.      &Languages.  LCP: CountryLangListEngNat 
  25762.  
  25763.   Delete a country 
  25764.      bool deleteFromDesc() 
  25765.  
  25766.      Delete the country that uses the currently set description.  LCP: 
  25767.      CountryDelete 
  25768.  
  25769.   Set data members 
  25770.      bool setAll(mapString &FieldValues) 
  25771.  
  25772.      Sets all the data members of a topic using the mapString which is passed 
  25773.      to it.  Only the fields present in the mapString are updated, the other 
  25774.      fields are untouched.  LCP: CountryUpdate 
  25775.      bool setDesc(const string &DescSetting) 
  25776.  
  25777.      Set the short description 
  25778.      bool setDescLong(const string &DescLongSetting) 
  25779.  
  25780.      Set the long description 
  25781.      bool setDescNative(const string &DescNativeSetting) 
  25782.  
  25783.      Set the native language description 
  25784.      bool setNetCode(const string &NetCodeSetting) 
  25785.  
  25786.      Set the internet code for this country 
  25787.      bool erase() 
  25788.  
  25789.      Sets all the data members to empty 
  25790.  
  25791.   Get data members 
  25792.      bool getAll(mapString &FieldValues) 
  25793.  
  25794.      Return a mapString of all the data members of this topic. The key is the 
  25795.      variable name.  LCP: CountryAttribs 
  25796.      string getDesc() 
  25797.  
  25798.      Get the short description 
  25799.      string getDescLong() 
  25800.  
  25801.      Get the long description 
  25802.      string getDescNative() 
  25803.  
  25804.      Get the native language description 
  25805.      string getNetCode() 
  25806.  
  25807.      Get the internet code for this country 
  25808.  
  25809.  
  25810. ΓòÉΓòÉΓòÉ <hidden> ╤â ΓòÉΓòÉΓòÉ
  25811.  
  25812.  
  25813. lyris_Country Class 
  25814.  
  25815.      class lyris_Country 
  25816.  
  25817.      For determining what countries exist, and what languages are spoken & 
  25818.      preferred in each country 
  25819.  
  25820.      Defined in: COUNTRY.H 
  25821.  
  25822.   Create a new country 
  25823.  
  25824.       bool createNew() 
  25825.  
  25826.      Creates a new country/language table row.  LCP: CountryCreate 
  25827.      bool updateDatabase() 
  25828.  
  25829.      Save the current country with the data members that have changed.  LCP: 
  25830.      CountryUpdate 
  25831.      bool VerifyFields() 
  25832.  
  25833.      Verify that all required fields are filled in. 
  25834.  
  25835.   Retrieve data from the database 
  25836.      bool fetchAllCountries(vecString &AllCountries) 
  25837.  
  25838.      Fetch a list of all countries.  LCP: CountryAll 
  25839.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25840.  
  25841.      Fetch a paired list of countries and their native language descriptions, 
  25842.      sorted by english description.  LCP: CountryEngNat 
  25843.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25844.  
  25845.      Fetch a paired list of native language country descriptions, and the 
  25846.      english name of the country. 
  25847.      bool retrieveFromNetCode() 
  25848.  
  25849.      Determine the country that uses the currently set NetCode.  Fills all the 
  25850.      other country attributes with values. LCP: CountryAttNetCode 
  25851.      bool retrieveFromDesc() 
  25852.  
  25853.      Determine the country that uses the currently set description.  Fills all 
  25854.      the other country attributes with values.  LCP: CountryAttribs 
  25855.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25856.  
  25857.      Determine the primary language of the current country.  "Desc" must be 
  25858.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25859.      CountryPrimLang 
  25860.      bool getAllLanguages(vecString &Languages) 
  25861.  
  25862.      Determine all the languages used by the current country.  "Desc" must be 
  25863.      already set.  The result is returned in priority order (highest priority 
  25864.      first) in vecString &Languages.  LCP: CountryLanguages 
  25865.      bool getLanguageList(vecString &Languages) 
  25866.  
  25867.      Get a list of all possible languages, in alphabetical order, returned in 
  25868.      vecString &Languages.  LCP: CountryLangList 
  25869.      bool getLanguageListEngNat(mapString &Languages) 
  25870.  
  25871.      Get a map of all possible languages, their native description in 
  25872.      alphabetical order by english description, returned in in vecString 
  25873.      &Languages.  LCP: CountryLangListEngNat 
  25874.  
  25875.   Delete a country 
  25876.      bool deleteFromDesc() 
  25877.  
  25878.      Delete the country that uses the currently set description.  LCP: 
  25879.      CountryDelete 
  25880.  
  25881.   Set data members 
  25882.      bool setAll(mapString &FieldValues) 
  25883.  
  25884.      Sets all the data members of a topic using the mapString which is passed 
  25885.      to it.  Only the fields present in the mapString are updated, the other 
  25886.      fields are untouched.  LCP: CountryUpdate 
  25887.      bool setDesc(const string &DescSetting) 
  25888.  
  25889.      Set the short description 
  25890.      bool setDescLong(const string &DescLongSetting) 
  25891.  
  25892.      Set the long description 
  25893.      bool setDescNative(const string &DescNativeSetting) 
  25894.  
  25895.      Set the native language description 
  25896.      bool setNetCode(const string &NetCodeSetting) 
  25897.  
  25898.      Set the internet code for this country 
  25899.      bool erase() 
  25900.  
  25901.      Sets all the data members to empty 
  25902.  
  25903.   Get data members 
  25904.      bool getAll(mapString &FieldValues) 
  25905.  
  25906.      Return a mapString of all the data members of this topic. The key is the 
  25907.      variable name.  LCP: CountryAttribs 
  25908.      string getDesc() 
  25909.  
  25910.      Get the short description 
  25911.      string getDescLong() 
  25912.  
  25913.      Get the long description 
  25914.      string getDescNative() 
  25915.  
  25916.      Get the native language description 
  25917.      string getNetCode() 
  25918.  
  25919.      Get the internet code for this country 
  25920.  
  25921.  
  25922. ΓòÉΓòÉΓòÉ <hidden> ╤ä ΓòÉΓòÉΓòÉ
  25923.  
  25924.  
  25925. lyris_Country Class 
  25926.  
  25927.      class lyris_Country 
  25928.  
  25929.      For determining what countries exist, and what languages are spoken & 
  25930.      preferred in each country 
  25931.  
  25932.      Defined in: COUNTRY.H 
  25933.  
  25934.   Create a new country 
  25935.  
  25936.       bool createNew() 
  25937.  
  25938.      Creates a new country/language table row.  LCP: CountryCreate 
  25939.      bool updateDatabase() 
  25940.  
  25941.      Save the current country with the data members that have changed.  LCP: 
  25942.      CountryUpdate 
  25943.      bool VerifyFields() 
  25944.  
  25945.      Verify that all required fields are filled in. 
  25946.  
  25947.   Retrieve data from the database 
  25948.      bool fetchAllCountries(vecString &AllCountries) 
  25949.  
  25950.      Fetch a list of all countries.  LCP: CountryAll 
  25951.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  25952.  
  25953.      Fetch a paired list of countries and their native language descriptions, 
  25954.      sorted by english description.  LCP: CountryEngNat 
  25955.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  25956.  
  25957.      Fetch a paired list of native language country descriptions, and the 
  25958.      english name of the country. 
  25959.      bool retrieveFromNetCode() 
  25960.  
  25961.      Determine the country that uses the currently set NetCode.  Fills all the 
  25962.      other country attributes with values. LCP: CountryAttNetCode 
  25963.      bool retrieveFromDesc() 
  25964.  
  25965.      Determine the country that uses the currently set description.  Fills all 
  25966.      the other country attributes with values.  LCP: CountryAttribs 
  25967.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  25968.  
  25969.      Determine the primary language of the current country.  "Desc" must be 
  25970.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  25971.      CountryPrimLang 
  25972.      bool getAllLanguages(vecString &Languages) 
  25973.  
  25974.      Determine all the languages used by the current country.  "Desc" must be 
  25975.      already set.  The result is returned in priority order (highest priority 
  25976.      first) in vecString &Languages.  LCP: CountryLanguages 
  25977.      bool getLanguageList(vecString &Languages) 
  25978.  
  25979.      Get a list of all possible languages, in alphabetical order, returned in 
  25980.      vecString &Languages.  LCP: CountryLangList 
  25981.      bool getLanguageListEngNat(mapString &Languages) 
  25982.  
  25983.      Get a map of all possible languages, their native description in 
  25984.      alphabetical order by english description, returned in in vecString 
  25985.      &Languages.  LCP: CountryLangListEngNat 
  25986.  
  25987.   Delete a country 
  25988.      bool deleteFromDesc() 
  25989.  
  25990.      Delete the country that uses the currently set description.  LCP: 
  25991.      CountryDelete 
  25992.  
  25993.   Set data members 
  25994.      bool setAll(mapString &FieldValues) 
  25995.  
  25996.      Sets all the data members of a topic using the mapString which is passed 
  25997.      to it.  Only the fields present in the mapString are updated, the other 
  25998.      fields are untouched.  LCP: CountryUpdate 
  25999.      bool setDesc(const string &DescSetting) 
  26000.  
  26001.      Set the short description 
  26002.      bool setDescLong(const string &DescLongSetting) 
  26003.  
  26004.      Set the long description 
  26005.      bool setDescNative(const string &DescNativeSetting) 
  26006.  
  26007.      Set the native language description 
  26008.      bool setNetCode(const string &NetCodeSetting) 
  26009.  
  26010.      Set the internet code for this country 
  26011.      bool erase() 
  26012.  
  26013.      Sets all the data members to empty 
  26014.  
  26015.   Get data members 
  26016.      bool getAll(mapString &FieldValues) 
  26017.  
  26018.      Return a mapString of all the data members of this topic. The key is the 
  26019.      variable name.  LCP: CountryAttribs 
  26020.      string getDesc() 
  26021.  
  26022.      Get the short description 
  26023.      string getDescLong() 
  26024.  
  26025.      Get the long description 
  26026.      string getDescNative() 
  26027.  
  26028.      Get the native language description 
  26029.      string getNetCode() 
  26030.  
  26031.      Get the internet code for this country 
  26032.  
  26033.  
  26034. ΓòÉΓòÉΓòÉ <hidden> ╤à ΓòÉΓòÉΓòÉ
  26035.  
  26036.  
  26037. lyris_Country Class 
  26038.  
  26039.      class lyris_Country 
  26040.  
  26041.      For determining what countries exist, and what languages are spoken & 
  26042.      preferred in each country 
  26043.  
  26044.      Defined in: COUNTRY.H 
  26045.  
  26046.   Create a new country 
  26047.  
  26048.       bool createNew() 
  26049.  
  26050.      Creates a new country/language table row.  LCP: CountryCreate 
  26051.      bool updateDatabase() 
  26052.  
  26053.      Save the current country with the data members that have changed.  LCP: 
  26054.      CountryUpdate 
  26055.      bool VerifyFields() 
  26056.  
  26057.      Verify that all required fields are filled in. 
  26058.  
  26059.   Retrieve data from the database 
  26060.      bool fetchAllCountries(vecString &AllCountries) 
  26061.  
  26062.      Fetch a list of all countries.  LCP: CountryAll 
  26063.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26064.  
  26065.      Fetch a paired list of countries and their native language descriptions, 
  26066.      sorted by english description.  LCP: CountryEngNat 
  26067.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26068.  
  26069.      Fetch a paired list of native language country descriptions, and the 
  26070.      english name of the country. 
  26071.      bool retrieveFromNetCode() 
  26072.  
  26073.      Determine the country that uses the currently set NetCode.  Fills all the 
  26074.      other country attributes with values. LCP: CountryAttNetCode 
  26075.      bool retrieveFromDesc() 
  26076.  
  26077.      Determine the country that uses the currently set description.  Fills all 
  26078.      the other country attributes with values.  LCP: CountryAttribs 
  26079.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26080.  
  26081.      Determine the primary language of the current country.  "Desc" must be 
  26082.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26083.      CountryPrimLang 
  26084.      bool getAllLanguages(vecString &Languages) 
  26085.  
  26086.      Determine all the languages used by the current country.  "Desc" must be 
  26087.      already set.  The result is returned in priority order (highest priority 
  26088.      first) in vecString &Languages.  LCP: CountryLanguages 
  26089.      bool getLanguageList(vecString &Languages) 
  26090.  
  26091.      Get a list of all possible languages, in alphabetical order, returned in 
  26092.      vecString &Languages.  LCP: CountryLangList 
  26093.      bool getLanguageListEngNat(mapString &Languages) 
  26094.  
  26095.      Get a map of all possible languages, their native description in 
  26096.      alphabetical order by english description, returned in in vecString 
  26097.      &Languages.  LCP: CountryLangListEngNat 
  26098.  
  26099.   Delete a country 
  26100.      bool deleteFromDesc() 
  26101.  
  26102.      Delete the country that uses the currently set description.  LCP: 
  26103.      CountryDelete 
  26104.  
  26105.   Set data members 
  26106.      bool setAll(mapString &FieldValues) 
  26107.  
  26108.      Sets all the data members of a topic using the mapString which is passed 
  26109.      to it.  Only the fields present in the mapString are updated, the other 
  26110.      fields are untouched.  LCP: CountryUpdate 
  26111.      bool setDesc(const string &DescSetting) 
  26112.  
  26113.      Set the short description 
  26114.      bool setDescLong(const string &DescLongSetting) 
  26115.  
  26116.      Set the long description 
  26117.      bool setDescNative(const string &DescNativeSetting) 
  26118.  
  26119.      Set the native language description 
  26120.      bool setNetCode(const string &NetCodeSetting) 
  26121.  
  26122.      Set the internet code for this country 
  26123.      bool erase() 
  26124.  
  26125.      Sets all the data members to empty 
  26126.  
  26127.   Get data members 
  26128.      bool getAll(mapString &FieldValues) 
  26129.  
  26130.      Return a mapString of all the data members of this topic. The key is the 
  26131.      variable name.  LCP: CountryAttribs 
  26132.      string getDesc() 
  26133.  
  26134.      Get the short description 
  26135.      string getDescLong() 
  26136.  
  26137.      Get the long description 
  26138.      string getDescNative() 
  26139.  
  26140.      Get the native language description 
  26141.      string getNetCode() 
  26142.  
  26143.      Get the internet code for this country 
  26144.  
  26145.  
  26146. ΓòÉΓòÉΓòÉ <hidden> ╤å ΓòÉΓòÉΓòÉ
  26147.  
  26148.  
  26149. lyris_Country Class 
  26150.  
  26151.      class lyris_Country 
  26152.  
  26153.      For determining what countries exist, and what languages are spoken & 
  26154.      preferred in each country 
  26155.  
  26156.      Defined in: COUNTRY.H 
  26157.  
  26158.   Create a new country 
  26159.  
  26160.       bool createNew() 
  26161.  
  26162.      Creates a new country/language table row.  LCP: CountryCreate 
  26163.      bool updateDatabase() 
  26164.  
  26165.      Save the current country with the data members that have changed.  LCP: 
  26166.      CountryUpdate 
  26167.      bool VerifyFields() 
  26168.  
  26169.      Verify that all required fields are filled in. 
  26170.  
  26171.   Retrieve data from the database 
  26172.      bool fetchAllCountries(vecString &AllCountries) 
  26173.  
  26174.      Fetch a list of all countries.  LCP: CountryAll 
  26175.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26176.  
  26177.      Fetch a paired list of countries and their native language descriptions, 
  26178.      sorted by english description.  LCP: CountryEngNat 
  26179.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26180.  
  26181.      Fetch a paired list of native language country descriptions, and the 
  26182.      english name of the country. 
  26183.      bool retrieveFromNetCode() 
  26184.  
  26185.      Determine the country that uses the currently set NetCode.  Fills all the 
  26186.      other country attributes with values. LCP: CountryAttNetCode 
  26187.      bool retrieveFromDesc() 
  26188.  
  26189.      Determine the country that uses the currently set description.  Fills all 
  26190.      the other country attributes with values.  LCP: CountryAttribs 
  26191.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26192.  
  26193.      Determine the primary language of the current country.  "Desc" must be 
  26194.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26195.      CountryPrimLang 
  26196.      bool getAllLanguages(vecString &Languages) 
  26197.  
  26198.      Determine all the languages used by the current country.  "Desc" must be 
  26199.      already set.  The result is returned in priority order (highest priority 
  26200.      first) in vecString &Languages.  LCP: CountryLanguages 
  26201.      bool getLanguageList(vecString &Languages) 
  26202.  
  26203.      Get a list of all possible languages, in alphabetical order, returned in 
  26204.      vecString &Languages.  LCP: CountryLangList 
  26205.      bool getLanguageListEngNat(mapString &Languages) 
  26206.  
  26207.      Get a map of all possible languages, their native description in 
  26208.      alphabetical order by english description, returned in in vecString 
  26209.      &Languages.  LCP: CountryLangListEngNat 
  26210.  
  26211.   Delete a country 
  26212.      bool deleteFromDesc() 
  26213.  
  26214.      Delete the country that uses the currently set description.  LCP: 
  26215.      CountryDelete 
  26216.  
  26217.   Set data members 
  26218.      bool setAll(mapString &FieldValues) 
  26219.  
  26220.      Sets all the data members of a topic using the mapString which is passed 
  26221.      to it.  Only the fields present in the mapString are updated, the other 
  26222.      fields are untouched.  LCP: CountryUpdate 
  26223.      bool setDesc(const string &DescSetting) 
  26224.  
  26225.      Set the short description 
  26226.      bool setDescLong(const string &DescLongSetting) 
  26227.  
  26228.      Set the long description 
  26229.      bool setDescNative(const string &DescNativeSetting) 
  26230.  
  26231.      Set the native language description 
  26232.      bool setNetCode(const string &NetCodeSetting) 
  26233.  
  26234.      Set the internet code for this country 
  26235.      bool erase() 
  26236.  
  26237.      Sets all the data members to empty 
  26238.  
  26239.   Get data members 
  26240.      bool getAll(mapString &FieldValues) 
  26241.  
  26242.      Return a mapString of all the data members of this topic. The key is the 
  26243.      variable name.  LCP: CountryAttribs 
  26244.      string getDesc() 
  26245.  
  26246.      Get the short description 
  26247.      string getDescLong() 
  26248.  
  26249.      Get the long description 
  26250.      string getDescNative() 
  26251.  
  26252.      Get the native language description 
  26253.      string getNetCode() 
  26254.  
  26255.      Get the internet code for this country 
  26256.  
  26257.  
  26258. ΓòÉΓòÉΓòÉ <hidden> ╤ç ΓòÉΓòÉΓòÉ
  26259.  
  26260.  
  26261. lyris_Country Class 
  26262.  
  26263.      class lyris_Country 
  26264.  
  26265.      For determining what countries exist, and what languages are spoken & 
  26266.      preferred in each country 
  26267.  
  26268.      Defined in: COUNTRY.H 
  26269.  
  26270.   Create a new country 
  26271.  
  26272.       bool createNew() 
  26273.  
  26274.      Creates a new country/language table row.  LCP: CountryCreate 
  26275.      bool updateDatabase() 
  26276.  
  26277.      Save the current country with the data members that have changed.  LCP: 
  26278.      CountryUpdate 
  26279.      bool VerifyFields() 
  26280.  
  26281.      Verify that all required fields are filled in. 
  26282.  
  26283.   Retrieve data from the database 
  26284.      bool fetchAllCountries(vecString &AllCountries) 
  26285.  
  26286.      Fetch a list of all countries.  LCP: CountryAll 
  26287.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26288.  
  26289.      Fetch a paired list of countries and their native language descriptions, 
  26290.      sorted by english description.  LCP: CountryEngNat 
  26291.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26292.  
  26293.      Fetch a paired list of native language country descriptions, and the 
  26294.      english name of the country. 
  26295.      bool retrieveFromNetCode() 
  26296.  
  26297.      Determine the country that uses the currently set NetCode.  Fills all the 
  26298.      other country attributes with values. LCP: CountryAttNetCode 
  26299.      bool retrieveFromDesc() 
  26300.  
  26301.      Determine the country that uses the currently set description.  Fills all 
  26302.      the other country attributes with values.  LCP: CountryAttribs 
  26303.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26304.  
  26305.      Determine the primary language of the current country.  "Desc" must be 
  26306.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26307.      CountryPrimLang 
  26308.      bool getAllLanguages(vecString &Languages) 
  26309.  
  26310.      Determine all the languages used by the current country.  "Desc" must be 
  26311.      already set.  The result is returned in priority order (highest priority 
  26312.      first) in vecString &Languages.  LCP: CountryLanguages 
  26313.      bool getLanguageList(vecString &Languages) 
  26314.  
  26315.      Get a list of all possible languages, in alphabetical order, returned in 
  26316.      vecString &Languages.  LCP: CountryLangList 
  26317.      bool getLanguageListEngNat(mapString &Languages) 
  26318.  
  26319.      Get a map of all possible languages, their native description in 
  26320.      alphabetical order by english description, returned in in vecString 
  26321.      &Languages.  LCP: CountryLangListEngNat 
  26322.  
  26323.   Delete a country 
  26324.      bool deleteFromDesc() 
  26325.  
  26326.      Delete the country that uses the currently set description.  LCP: 
  26327.      CountryDelete 
  26328.  
  26329.   Set data members 
  26330.      bool setAll(mapString &FieldValues) 
  26331.  
  26332.      Sets all the data members of a topic using the mapString which is passed 
  26333.      to it.  Only the fields present in the mapString are updated, the other 
  26334.      fields are untouched.  LCP: CountryUpdate 
  26335.      bool setDesc(const string &DescSetting) 
  26336.  
  26337.      Set the short description 
  26338.      bool setDescLong(const string &DescLongSetting) 
  26339.  
  26340.      Set the long description 
  26341.      bool setDescNative(const string &DescNativeSetting) 
  26342.  
  26343.      Set the native language description 
  26344.      bool setNetCode(const string &NetCodeSetting) 
  26345.  
  26346.      Set the internet code for this country 
  26347.      bool erase() 
  26348.  
  26349.      Sets all the data members to empty 
  26350.  
  26351.   Get data members 
  26352.      bool getAll(mapString &FieldValues) 
  26353.  
  26354.      Return a mapString of all the data members of this topic. The key is the 
  26355.      variable name.  LCP: CountryAttribs 
  26356.      string getDesc() 
  26357.  
  26358.      Get the short description 
  26359.      string getDescLong() 
  26360.  
  26361.      Get the long description 
  26362.      string getDescNative() 
  26363.  
  26364.      Get the native language description 
  26365.      string getNetCode() 
  26366.  
  26367.      Get the internet code for this country 
  26368.  
  26369.  
  26370. ΓòÉΓòÉΓòÉ <hidden> ╤ê ΓòÉΓòÉΓòÉ
  26371.  
  26372.  
  26373. lyris_Country Class 
  26374.  
  26375.      class lyris_Country 
  26376.  
  26377.      For determining what countries exist, and what languages are spoken & 
  26378.      preferred in each country 
  26379.  
  26380.      Defined in: COUNTRY.H 
  26381.  
  26382.   Create a new country 
  26383.  
  26384.       bool createNew() 
  26385.  
  26386.      Creates a new country/language table row.  LCP: CountryCreate 
  26387.      bool updateDatabase() 
  26388.  
  26389.      Save the current country with the data members that have changed.  LCP: 
  26390.      CountryUpdate 
  26391.      bool VerifyFields() 
  26392.  
  26393.      Verify that all required fields are filled in. 
  26394.  
  26395.   Retrieve data from the database 
  26396.      bool fetchAllCountries(vecString &AllCountries) 
  26397.  
  26398.      Fetch a list of all countries.  LCP: CountryAll 
  26399.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26400.  
  26401.      Fetch a paired list of countries and their native language descriptions, 
  26402.      sorted by english description.  LCP: CountryEngNat 
  26403.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26404.  
  26405.      Fetch a paired list of native language country descriptions, and the 
  26406.      english name of the country. 
  26407.      bool retrieveFromNetCode() 
  26408.  
  26409.      Determine the country that uses the currently set NetCode.  Fills all the 
  26410.      other country attributes with values. LCP: CountryAttNetCode 
  26411.      bool retrieveFromDesc() 
  26412.  
  26413.      Determine the country that uses the currently set description.  Fills all 
  26414.      the other country attributes with values.  LCP: CountryAttribs 
  26415.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26416.  
  26417.      Determine the primary language of the current country.  "Desc" must be 
  26418.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26419.      CountryPrimLang 
  26420.      bool getAllLanguages(vecString &Languages) 
  26421.  
  26422.      Determine all the languages used by the current country.  "Desc" must be 
  26423.      already set.  The result is returned in priority order (highest priority 
  26424.      first) in vecString &Languages.  LCP: CountryLanguages 
  26425.      bool getLanguageList(vecString &Languages) 
  26426.  
  26427.      Get a list of all possible languages, in alphabetical order, returned in 
  26428.      vecString &Languages.  LCP: CountryLangList 
  26429.      bool getLanguageListEngNat(mapString &Languages) 
  26430.  
  26431.      Get a map of all possible languages, their native description in 
  26432.      alphabetical order by english description, returned in in vecString 
  26433.      &Languages.  LCP: CountryLangListEngNat 
  26434.  
  26435.   Delete a country 
  26436.      bool deleteFromDesc() 
  26437.  
  26438.      Delete the country that uses the currently set description.  LCP: 
  26439.      CountryDelete 
  26440.  
  26441.   Set data members 
  26442.      bool setAll(mapString &FieldValues) 
  26443.  
  26444.      Sets all the data members of a topic using the mapString which is passed 
  26445.      to it.  Only the fields present in the mapString are updated, the other 
  26446.      fields are untouched.  LCP: CountryUpdate 
  26447.      bool setDesc(const string &DescSetting) 
  26448.  
  26449.      Set the short description 
  26450.      bool setDescLong(const string &DescLongSetting) 
  26451.  
  26452.      Set the long description 
  26453.      bool setDescNative(const string &DescNativeSetting) 
  26454.  
  26455.      Set the native language description 
  26456.      bool setNetCode(const string &NetCodeSetting) 
  26457.  
  26458.      Set the internet code for this country 
  26459.      bool erase() 
  26460.  
  26461.      Sets all the data members to empty 
  26462.  
  26463.   Get data members 
  26464.      bool getAll(mapString &FieldValues) 
  26465.  
  26466.      Return a mapString of all the data members of this topic. The key is the 
  26467.      variable name.  LCP: CountryAttribs 
  26468.      string getDesc() 
  26469.  
  26470.      Get the short description 
  26471.      string getDescLong() 
  26472.  
  26473.      Get the long description 
  26474.      string getDescNative() 
  26475.  
  26476.      Get the native language description 
  26477.      string getNetCode() 
  26478.  
  26479.      Get the internet code for this country 
  26480.  
  26481.  
  26482. ΓòÉΓòÉΓòÉ <hidden> ╤ë ΓòÉΓòÉΓòÉ
  26483.  
  26484.  
  26485. lyris_Country Class 
  26486.  
  26487.      class lyris_Country 
  26488.  
  26489.      For determining what countries exist, and what languages are spoken & 
  26490.      preferred in each country 
  26491.  
  26492.      Defined in: COUNTRY.H 
  26493.  
  26494.   Create a new country 
  26495.  
  26496.       bool createNew() 
  26497.  
  26498.      Creates a new country/language table row.  LCP: CountryCreate 
  26499.      bool updateDatabase() 
  26500.  
  26501.      Save the current country with the data members that have changed.  LCP: 
  26502.      CountryUpdate 
  26503.      bool VerifyFields() 
  26504.  
  26505.      Verify that all required fields are filled in. 
  26506.  
  26507.   Retrieve data from the database 
  26508.      bool fetchAllCountries(vecString &AllCountries) 
  26509.  
  26510.      Fetch a list of all countries.  LCP: CountryAll 
  26511.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26512.  
  26513.      Fetch a paired list of countries and their native language descriptions, 
  26514.      sorted by english description.  LCP: CountryEngNat 
  26515.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26516.  
  26517.      Fetch a paired list of native language country descriptions, and the 
  26518.      english name of the country. 
  26519.      bool retrieveFromNetCode() 
  26520.  
  26521.      Determine the country that uses the currently set NetCode.  Fills all the 
  26522.      other country attributes with values. LCP: CountryAttNetCode 
  26523.      bool retrieveFromDesc() 
  26524.  
  26525.      Determine the country that uses the currently set description.  Fills all 
  26526.      the other country attributes with values.  LCP: CountryAttribs 
  26527.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26528.  
  26529.      Determine the primary language of the current country.  "Desc" must be 
  26530.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26531.      CountryPrimLang 
  26532.      bool getAllLanguages(vecString &Languages) 
  26533.  
  26534.      Determine all the languages used by the current country.  "Desc" must be 
  26535.      already set.  The result is returned in priority order (highest priority 
  26536.      first) in vecString &Languages.  LCP: CountryLanguages 
  26537.      bool getLanguageList(vecString &Languages) 
  26538.  
  26539.      Get a list of all possible languages, in alphabetical order, returned in 
  26540.      vecString &Languages.  LCP: CountryLangList 
  26541.      bool getLanguageListEngNat(mapString &Languages) 
  26542.  
  26543.      Get a map of all possible languages, their native description in 
  26544.      alphabetical order by english description, returned in in vecString 
  26545.      &Languages.  LCP: CountryLangListEngNat 
  26546.  
  26547.   Delete a country 
  26548.      bool deleteFromDesc() 
  26549.  
  26550.      Delete the country that uses the currently set description.  LCP: 
  26551.      CountryDelete 
  26552.  
  26553.   Set data members 
  26554.      bool setAll(mapString &FieldValues) 
  26555.  
  26556.      Sets all the data members of a topic using the mapString which is passed 
  26557.      to it.  Only the fields present in the mapString are updated, the other 
  26558.      fields are untouched.  LCP: CountryUpdate 
  26559.      bool setDesc(const string &DescSetting) 
  26560.  
  26561.      Set the short description 
  26562.      bool setDescLong(const string &DescLongSetting) 
  26563.  
  26564.      Set the long description 
  26565.      bool setDescNative(const string &DescNativeSetting) 
  26566.  
  26567.      Set the native language description 
  26568.      bool setNetCode(const string &NetCodeSetting) 
  26569.  
  26570.      Set the internet code for this country 
  26571.      bool erase() 
  26572.  
  26573.      Sets all the data members to empty 
  26574.  
  26575.   Get data members 
  26576.      bool getAll(mapString &FieldValues) 
  26577.  
  26578.      Return a mapString of all the data members of this topic. The key is the 
  26579.      variable name.  LCP: CountryAttribs 
  26580.      string getDesc() 
  26581.  
  26582.      Get the short description 
  26583.      string getDescLong() 
  26584.  
  26585.      Get the long description 
  26586.      string getDescNative() 
  26587.  
  26588.      Get the native language description 
  26589.      string getNetCode() 
  26590.  
  26591.      Get the internet code for this country 
  26592.  
  26593.  
  26594. ΓòÉΓòÉΓòÉ <hidden> ╤è ΓòÉΓòÉΓòÉ
  26595.  
  26596.  
  26597. lyris_Country Class 
  26598.  
  26599.      class lyris_Country 
  26600.  
  26601.      For determining what countries exist, and what languages are spoken & 
  26602.      preferred in each country 
  26603.  
  26604.      Defined in: COUNTRY.H 
  26605.  
  26606.   Create a new country 
  26607.  
  26608.       bool createNew() 
  26609.  
  26610.      Creates a new country/language table row.  LCP: CountryCreate 
  26611.      bool updateDatabase() 
  26612.  
  26613.      Save the current country with the data members that have changed.  LCP: 
  26614.      CountryUpdate 
  26615.      bool VerifyFields() 
  26616.  
  26617.      Verify that all required fields are filled in. 
  26618.  
  26619.   Retrieve data from the database 
  26620.      bool fetchAllCountries(vecString &AllCountries) 
  26621.  
  26622.      Fetch a list of all countries.  LCP: CountryAll 
  26623.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26624.  
  26625.      Fetch a paired list of countries and their native language descriptions, 
  26626.      sorted by english description.  LCP: CountryEngNat 
  26627.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26628.  
  26629.      Fetch a paired list of native language country descriptions, and the 
  26630.      english name of the country. 
  26631.      bool retrieveFromNetCode() 
  26632.  
  26633.      Determine the country that uses the currently set NetCode.  Fills all the 
  26634.      other country attributes with values. LCP: CountryAttNetCode 
  26635.      bool retrieveFromDesc() 
  26636.  
  26637.      Determine the country that uses the currently set description.  Fills all 
  26638.      the other country attributes with values.  LCP: CountryAttribs 
  26639.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26640.  
  26641.      Determine the primary language of the current country.  "Desc" must be 
  26642.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26643.      CountryPrimLang 
  26644.      bool getAllLanguages(vecString &Languages) 
  26645.  
  26646.      Determine all the languages used by the current country.  "Desc" must be 
  26647.      already set.  The result is returned in priority order (highest priority 
  26648.      first) in vecString &Languages.  LCP: CountryLanguages 
  26649.      bool getLanguageList(vecString &Languages) 
  26650.  
  26651.      Get a list of all possible languages, in alphabetical order, returned in 
  26652.      vecString &Languages.  LCP: CountryLangList 
  26653.      bool getLanguageListEngNat(mapString &Languages) 
  26654.  
  26655.      Get a map of all possible languages, their native description in 
  26656.      alphabetical order by english description, returned in in vecString 
  26657.      &Languages.  LCP: CountryLangListEngNat 
  26658.  
  26659.   Delete a country 
  26660.      bool deleteFromDesc() 
  26661.  
  26662.      Delete the country that uses the currently set description.  LCP: 
  26663.      CountryDelete 
  26664.  
  26665.   Set data members 
  26666.      bool setAll(mapString &FieldValues) 
  26667.  
  26668.      Sets all the data members of a topic using the mapString which is passed 
  26669.      to it.  Only the fields present in the mapString are updated, the other 
  26670.      fields are untouched.  LCP: CountryUpdate 
  26671.      bool setDesc(const string &DescSetting) 
  26672.  
  26673.      Set the short description 
  26674.      bool setDescLong(const string &DescLongSetting) 
  26675.  
  26676.      Set the long description 
  26677.      bool setDescNative(const string &DescNativeSetting) 
  26678.  
  26679.      Set the native language description 
  26680.      bool setNetCode(const string &NetCodeSetting) 
  26681.  
  26682.      Set the internet code for this country 
  26683.      bool erase() 
  26684.  
  26685.      Sets all the data members to empty 
  26686.  
  26687.   Get data members 
  26688.      bool getAll(mapString &FieldValues) 
  26689.  
  26690.      Return a mapString of all the data members of this topic. The key is the 
  26691.      variable name.  LCP: CountryAttribs 
  26692.      string getDesc() 
  26693.  
  26694.      Get the short description 
  26695.      string getDescLong() 
  26696.  
  26697.      Get the long description 
  26698.      string getDescNative() 
  26699.  
  26700.      Get the native language description 
  26701.      string getNetCode() 
  26702.  
  26703.      Get the internet code for this country 
  26704.  
  26705.  
  26706. ΓòÉΓòÉΓòÉ <hidden> ╤ï ΓòÉΓòÉΓòÉ
  26707.  
  26708.  
  26709. lyris_Country Class 
  26710.  
  26711.      class lyris_Country 
  26712.  
  26713.      For determining what countries exist, and what languages are spoken & 
  26714.      preferred in each country 
  26715.  
  26716.      Defined in: COUNTRY.H 
  26717.  
  26718.   Create a new country 
  26719.  
  26720.       bool createNew() 
  26721.  
  26722.      Creates a new country/language table row.  LCP: CountryCreate 
  26723.      bool updateDatabase() 
  26724.  
  26725.      Save the current country with the data members that have changed.  LCP: 
  26726.      CountryUpdate 
  26727.      bool VerifyFields() 
  26728.  
  26729.      Verify that all required fields are filled in. 
  26730.  
  26731.   Retrieve data from the database 
  26732.      bool fetchAllCountries(vecString &AllCountries) 
  26733.  
  26734.      Fetch a list of all countries.  LCP: CountryAll 
  26735.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26736.  
  26737.      Fetch a paired list of countries and their native language descriptions, 
  26738.      sorted by english description.  LCP: CountryEngNat 
  26739.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26740.  
  26741.      Fetch a paired list of native language country descriptions, and the 
  26742.      english name of the country. 
  26743.      bool retrieveFromNetCode() 
  26744.  
  26745.      Determine the country that uses the currently set NetCode.  Fills all the 
  26746.      other country attributes with values. LCP: CountryAttNetCode 
  26747.      bool retrieveFromDesc() 
  26748.  
  26749.      Determine the country that uses the currently set description.  Fills all 
  26750.      the other country attributes with values.  LCP: CountryAttribs 
  26751.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26752.  
  26753.      Determine the primary language of the current country.  "Desc" must be 
  26754.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26755.      CountryPrimLang 
  26756.      bool getAllLanguages(vecString &Languages) 
  26757.  
  26758.      Determine all the languages used by the current country.  "Desc" must be 
  26759.      already set.  The result is returned in priority order (highest priority 
  26760.      first) in vecString &Languages.  LCP: CountryLanguages 
  26761.      bool getLanguageList(vecString &Languages) 
  26762.  
  26763.      Get a list of all possible languages, in alphabetical order, returned in 
  26764.      vecString &Languages.  LCP: CountryLangList 
  26765.      bool getLanguageListEngNat(mapString &Languages) 
  26766.  
  26767.      Get a map of all possible languages, their native description in 
  26768.      alphabetical order by english description, returned in in vecString 
  26769.      &Languages.  LCP: CountryLangListEngNat 
  26770.  
  26771.   Delete a country 
  26772.      bool deleteFromDesc() 
  26773.  
  26774.      Delete the country that uses the currently set description.  LCP: 
  26775.      CountryDelete 
  26776.  
  26777.   Set data members 
  26778.      bool setAll(mapString &FieldValues) 
  26779.  
  26780.      Sets all the data members of a topic using the mapString which is passed 
  26781.      to it.  Only the fields present in the mapString are updated, the other 
  26782.      fields are untouched.  LCP: CountryUpdate 
  26783.      bool setDesc(const string &DescSetting) 
  26784.  
  26785.      Set the short description 
  26786.      bool setDescLong(const string &DescLongSetting) 
  26787.  
  26788.      Set the long description 
  26789.      bool setDescNative(const string &DescNativeSetting) 
  26790.  
  26791.      Set the native language description 
  26792.      bool setNetCode(const string &NetCodeSetting) 
  26793.  
  26794.      Set the internet code for this country 
  26795.      bool erase() 
  26796.  
  26797.      Sets all the data members to empty 
  26798.  
  26799.   Get data members 
  26800.      bool getAll(mapString &FieldValues) 
  26801.  
  26802.      Return a mapString of all the data members of this topic. The key is the 
  26803.      variable name.  LCP: CountryAttribs 
  26804.      string getDesc() 
  26805.  
  26806.      Get the short description 
  26807.      string getDescLong() 
  26808.  
  26809.      Get the long description 
  26810.      string getDescNative() 
  26811.  
  26812.      Get the native language description 
  26813.      string getNetCode() 
  26814.  
  26815.      Get the internet code for this country 
  26816.  
  26817.  
  26818. ΓòÉΓòÉΓòÉ <hidden> ╤î ΓòÉΓòÉΓòÉ
  26819.  
  26820.  
  26821. lyris_Country Class 
  26822.  
  26823.      class lyris_Country 
  26824.  
  26825.      For determining what countries exist, and what languages are spoken & 
  26826.      preferred in each country 
  26827.  
  26828.      Defined in: COUNTRY.H 
  26829.  
  26830.   Create a new country 
  26831.  
  26832.       bool createNew() 
  26833.  
  26834.      Creates a new country/language table row.  LCP: CountryCreate 
  26835.      bool updateDatabase() 
  26836.  
  26837.      Save the current country with the data members that have changed.  LCP: 
  26838.      CountryUpdate 
  26839.      bool VerifyFields() 
  26840.  
  26841.      Verify that all required fields are filled in. 
  26842.  
  26843.   Retrieve data from the database 
  26844.      bool fetchAllCountries(vecString &AllCountries) 
  26845.  
  26846.      Fetch a list of all countries.  LCP: CountryAll 
  26847.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26848.  
  26849.      Fetch a paired list of countries and their native language descriptions, 
  26850.      sorted by english description.  LCP: CountryEngNat 
  26851.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26852.  
  26853.      Fetch a paired list of native language country descriptions, and the 
  26854.      english name of the country. 
  26855.      bool retrieveFromNetCode() 
  26856.  
  26857.      Determine the country that uses the currently set NetCode.  Fills all the 
  26858.      other country attributes with values. LCP: CountryAttNetCode 
  26859.      bool retrieveFromDesc() 
  26860.  
  26861.      Determine the country that uses the currently set description.  Fills all 
  26862.      the other country attributes with values.  LCP: CountryAttribs 
  26863.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26864.  
  26865.      Determine the primary language of the current country.  "Desc" must be 
  26866.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26867.      CountryPrimLang 
  26868.      bool getAllLanguages(vecString &Languages) 
  26869.  
  26870.      Determine all the languages used by the current country.  "Desc" must be 
  26871.      already set.  The result is returned in priority order (highest priority 
  26872.      first) in vecString &Languages.  LCP: CountryLanguages 
  26873.      bool getLanguageList(vecString &Languages) 
  26874.  
  26875.      Get a list of all possible languages, in alphabetical order, returned in 
  26876.      vecString &Languages.  LCP: CountryLangList 
  26877.      bool getLanguageListEngNat(mapString &Languages) 
  26878.  
  26879.      Get a map of all possible languages, their native description in 
  26880.      alphabetical order by english description, returned in in vecString 
  26881.      &Languages.  LCP: CountryLangListEngNat 
  26882.  
  26883.   Delete a country 
  26884.      bool deleteFromDesc() 
  26885.  
  26886.      Delete the country that uses the currently set description.  LCP: 
  26887.      CountryDelete 
  26888.  
  26889.   Set data members 
  26890.      bool setAll(mapString &FieldValues) 
  26891.  
  26892.      Sets all the data members of a topic using the mapString which is passed 
  26893.      to it.  Only the fields present in the mapString are updated, the other 
  26894.      fields are untouched.  LCP: CountryUpdate 
  26895.      bool setDesc(const string &DescSetting) 
  26896.  
  26897.      Set the short description 
  26898.      bool setDescLong(const string &DescLongSetting) 
  26899.  
  26900.      Set the long description 
  26901.      bool setDescNative(const string &DescNativeSetting) 
  26902.  
  26903.      Set the native language description 
  26904.      bool setNetCode(const string &NetCodeSetting) 
  26905.  
  26906.      Set the internet code for this country 
  26907.      bool erase() 
  26908.  
  26909.      Sets all the data members to empty 
  26910.  
  26911.   Get data members 
  26912.      bool getAll(mapString &FieldValues) 
  26913.  
  26914.      Return a mapString of all the data members of this topic. The key is the 
  26915.      variable name.  LCP: CountryAttribs 
  26916.      string getDesc() 
  26917.  
  26918.      Get the short description 
  26919.      string getDescLong() 
  26920.  
  26921.      Get the long description 
  26922.      string getDescNative() 
  26923.  
  26924.      Get the native language description 
  26925.      string getNetCode() 
  26926.  
  26927.      Get the internet code for this country 
  26928.  
  26929.  
  26930. ΓòÉΓòÉΓòÉ <hidden> ╤ì ΓòÉΓòÉΓòÉ
  26931.  
  26932.  
  26933. lyris_Country Class 
  26934.  
  26935.      class lyris_Country 
  26936.  
  26937.      For determining what countries exist, and what languages are spoken & 
  26938.      preferred in each country 
  26939.  
  26940.      Defined in: COUNTRY.H 
  26941.  
  26942.   Create a new country 
  26943.  
  26944.       bool createNew() 
  26945.  
  26946.      Creates a new country/language table row.  LCP: CountryCreate 
  26947.      bool updateDatabase() 
  26948.  
  26949.      Save the current country with the data members that have changed.  LCP: 
  26950.      CountryUpdate 
  26951.      bool VerifyFields() 
  26952.  
  26953.      Verify that all required fields are filled in. 
  26954.  
  26955.   Retrieve data from the database 
  26956.      bool fetchAllCountries(vecString &AllCountries) 
  26957.  
  26958.      Fetch a list of all countries.  LCP: CountryAll 
  26959.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  26960.  
  26961.      Fetch a paired list of countries and their native language descriptions, 
  26962.      sorted by english description.  LCP: CountryEngNat 
  26963.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  26964.  
  26965.      Fetch a paired list of native language country descriptions, and the 
  26966.      english name of the country. 
  26967.      bool retrieveFromNetCode() 
  26968.  
  26969.      Determine the country that uses the currently set NetCode.  Fills all the 
  26970.      other country attributes with values. LCP: CountryAttNetCode 
  26971.      bool retrieveFromDesc() 
  26972.  
  26973.      Determine the country that uses the currently set description.  Fills all 
  26974.      the other country attributes with values.  LCP: CountryAttribs 
  26975.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  26976.  
  26977.      Determine the primary language of the current country.  "Desc" must be 
  26978.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  26979.      CountryPrimLang 
  26980.      bool getAllLanguages(vecString &Languages) 
  26981.  
  26982.      Determine all the languages used by the current country.  "Desc" must be 
  26983.      already set.  The result is returned in priority order (highest priority 
  26984.      first) in vecString &Languages.  LCP: CountryLanguages 
  26985.      bool getLanguageList(vecString &Languages) 
  26986.  
  26987.      Get a list of all possible languages, in alphabetical order, returned in 
  26988.      vecString &Languages.  LCP: CountryLangList 
  26989.      bool getLanguageListEngNat(mapString &Languages) 
  26990.  
  26991.      Get a map of all possible languages, their native description in 
  26992.      alphabetical order by english description, returned in in vecString 
  26993.      &Languages.  LCP: CountryLangListEngNat 
  26994.  
  26995.   Delete a country 
  26996.      bool deleteFromDesc() 
  26997.  
  26998.      Delete the country that uses the currently set description.  LCP: 
  26999.      CountryDelete 
  27000.  
  27001.   Set data members 
  27002.      bool setAll(mapString &FieldValues) 
  27003.  
  27004.      Sets all the data members of a topic using the mapString which is passed 
  27005.      to it.  Only the fields present in the mapString are updated, the other 
  27006.      fields are untouched.  LCP: CountryUpdate 
  27007.      bool setDesc(const string &DescSetting) 
  27008.  
  27009.      Set the short description 
  27010.      bool setDescLong(const string &DescLongSetting) 
  27011.  
  27012.      Set the long description 
  27013.      bool setDescNative(const string &DescNativeSetting) 
  27014.  
  27015.      Set the native language description 
  27016.      bool setNetCode(const string &NetCodeSetting) 
  27017.  
  27018.      Set the internet code for this country 
  27019.      bool erase() 
  27020.  
  27021.      Sets all the data members to empty 
  27022.  
  27023.   Get data members 
  27024.      bool getAll(mapString &FieldValues) 
  27025.  
  27026.      Return a mapString of all the data members of this topic. The key is the 
  27027.      variable name.  LCP: CountryAttribs 
  27028.      string getDesc() 
  27029.  
  27030.      Get the short description 
  27031.      string getDescLong() 
  27032.  
  27033.      Get the long description 
  27034.      string getDescNative() 
  27035.  
  27036.      Get the native language description 
  27037.      string getNetCode() 
  27038.  
  27039.      Get the internet code for this country 
  27040.  
  27041.  
  27042. ΓòÉΓòÉΓòÉ <hidden> ╤Ä ΓòÉΓòÉΓòÉ
  27043.  
  27044.  
  27045. lyris_Country Class 
  27046.  
  27047.      class lyris_Country 
  27048.  
  27049.      For determining what countries exist, and what languages are spoken & 
  27050.      preferred in each country 
  27051.  
  27052.      Defined in: COUNTRY.H 
  27053.  
  27054.   Create a new country 
  27055.  
  27056.       bool createNew() 
  27057.  
  27058.      Creates a new country/language table row.  LCP: CountryCreate 
  27059.      bool updateDatabase() 
  27060.  
  27061.      Save the current country with the data members that have changed.  LCP: 
  27062.      CountryUpdate 
  27063.      bool VerifyFields() 
  27064.  
  27065.      Verify that all required fields are filled in. 
  27066.  
  27067.   Retrieve data from the database 
  27068.      bool fetchAllCountries(vecString &AllCountries) 
  27069.  
  27070.      Fetch a list of all countries.  LCP: CountryAll 
  27071.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27072.  
  27073.      Fetch a paired list of countries and their native language descriptions, 
  27074.      sorted by english description.  LCP: CountryEngNat 
  27075.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27076.  
  27077.      Fetch a paired list of native language country descriptions, and the 
  27078.      english name of the country. 
  27079.      bool retrieveFromNetCode() 
  27080.  
  27081.      Determine the country that uses the currently set NetCode.  Fills all the 
  27082.      other country attributes with values. LCP: CountryAttNetCode 
  27083.      bool retrieveFromDesc() 
  27084.  
  27085.      Determine the country that uses the currently set description.  Fills all 
  27086.      the other country attributes with values.  LCP: CountryAttribs 
  27087.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27088.  
  27089.      Determine the primary language of the current country.  "Desc" must be 
  27090.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27091.      CountryPrimLang 
  27092.      bool getAllLanguages(vecString &Languages) 
  27093.  
  27094.      Determine all the languages used by the current country.  "Desc" must be 
  27095.      already set.  The result is returned in priority order (highest priority 
  27096.      first) in vecString &Languages.  LCP: CountryLanguages 
  27097.      bool getLanguageList(vecString &Languages) 
  27098.  
  27099.      Get a list of all possible languages, in alphabetical order, returned in 
  27100.      vecString &Languages.  LCP: CountryLangList 
  27101.      bool getLanguageListEngNat(mapString &Languages) 
  27102.  
  27103.      Get a map of all possible languages, their native description in 
  27104.      alphabetical order by english description, returned in in vecString 
  27105.      &Languages.  LCP: CountryLangListEngNat 
  27106.  
  27107.   Delete a country 
  27108.      bool deleteFromDesc() 
  27109.  
  27110.      Delete the country that uses the currently set description.  LCP: 
  27111.      CountryDelete 
  27112.  
  27113.   Set data members 
  27114.      bool setAll(mapString &FieldValues) 
  27115.  
  27116.      Sets all the data members of a topic using the mapString which is passed 
  27117.      to it.  Only the fields present in the mapString are updated, the other 
  27118.      fields are untouched.  LCP: CountryUpdate 
  27119.      bool setDesc(const string &DescSetting) 
  27120.  
  27121.      Set the short description 
  27122.      bool setDescLong(const string &DescLongSetting) 
  27123.  
  27124.      Set the long description 
  27125.      bool setDescNative(const string &DescNativeSetting) 
  27126.  
  27127.      Set the native language description 
  27128.      bool setNetCode(const string &NetCodeSetting) 
  27129.  
  27130.      Set the internet code for this country 
  27131.      bool erase() 
  27132.  
  27133.      Sets all the data members to empty 
  27134.  
  27135.   Get data members 
  27136.      bool getAll(mapString &FieldValues) 
  27137.  
  27138.      Return a mapString of all the data members of this topic. The key is the 
  27139.      variable name.  LCP: CountryAttribs 
  27140.      string getDesc() 
  27141.  
  27142.      Get the short description 
  27143.      string getDescLong() 
  27144.  
  27145.      Get the long description 
  27146.      string getDescNative() 
  27147.  
  27148.      Get the native language description 
  27149.      string getNetCode() 
  27150.  
  27151.      Get the internet code for this country 
  27152.  
  27153.  
  27154. ΓòÉΓòÉΓòÉ <hidden> ╤Å ΓòÉΓòÉΓòÉ
  27155.  
  27156.  
  27157. lyris_Country Class 
  27158.  
  27159.      class lyris_Country 
  27160.  
  27161.      For determining what countries exist, and what languages are spoken & 
  27162.      preferred in each country 
  27163.  
  27164.      Defined in: COUNTRY.H 
  27165.  
  27166.   Create a new country 
  27167.  
  27168.       bool createNew() 
  27169.  
  27170.      Creates a new country/language table row.  LCP: CountryCreate 
  27171.      bool updateDatabase() 
  27172.  
  27173.      Save the current country with the data members that have changed.  LCP: 
  27174.      CountryUpdate 
  27175.      bool VerifyFields() 
  27176.  
  27177.      Verify that all required fields are filled in. 
  27178.  
  27179.   Retrieve data from the database 
  27180.      bool fetchAllCountries(vecString &AllCountries) 
  27181.  
  27182.      Fetch a list of all countries.  LCP: CountryAll 
  27183.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27184.  
  27185.      Fetch a paired list of countries and their native language descriptions, 
  27186.      sorted by english description.  LCP: CountryEngNat 
  27187.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27188.  
  27189.      Fetch a paired list of native language country descriptions, and the 
  27190.      english name of the country. 
  27191.      bool retrieveFromNetCode() 
  27192.  
  27193.      Determine the country that uses the currently set NetCode.  Fills all the 
  27194.      other country attributes with values. LCP: CountryAttNetCode 
  27195.      bool retrieveFromDesc() 
  27196.  
  27197.      Determine the country that uses the currently set description.  Fills all 
  27198.      the other country attributes with values.  LCP: CountryAttribs 
  27199.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27200.  
  27201.      Determine the primary language of the current country.  "Desc" must be 
  27202.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27203.      CountryPrimLang 
  27204.      bool getAllLanguages(vecString &Languages) 
  27205.  
  27206.      Determine all the languages used by the current country.  "Desc" must be 
  27207.      already set.  The result is returned in priority order (highest priority 
  27208.      first) in vecString &Languages.  LCP: CountryLanguages 
  27209.      bool getLanguageList(vecString &Languages) 
  27210.  
  27211.      Get a list of all possible languages, in alphabetical order, returned in 
  27212.      vecString &Languages.  LCP: CountryLangList 
  27213.      bool getLanguageListEngNat(mapString &Languages) 
  27214.  
  27215.      Get a map of all possible languages, their native description in 
  27216.      alphabetical order by english description, returned in in vecString 
  27217.      &Languages.  LCP: CountryLangListEngNat 
  27218.  
  27219.   Delete a country 
  27220.      bool deleteFromDesc() 
  27221.  
  27222.      Delete the country that uses the currently set description.  LCP: 
  27223.      CountryDelete 
  27224.  
  27225.   Set data members 
  27226.      bool setAll(mapString &FieldValues) 
  27227.  
  27228.      Sets all the data members of a topic using the mapString which is passed 
  27229.      to it.  Only the fields present in the mapString are updated, the other 
  27230.      fields are untouched.  LCP: CountryUpdate 
  27231.      bool setDesc(const string &DescSetting) 
  27232.  
  27233.      Set the short description 
  27234.      bool setDescLong(const string &DescLongSetting) 
  27235.  
  27236.      Set the long description 
  27237.      bool setDescNative(const string &DescNativeSetting) 
  27238.  
  27239.      Set the native language description 
  27240.      bool setNetCode(const string &NetCodeSetting) 
  27241.  
  27242.      Set the internet code for this country 
  27243.      bool erase() 
  27244.  
  27245.      Sets all the data members to empty 
  27246.  
  27247.   Get data members 
  27248.      bool getAll(mapString &FieldValues) 
  27249.  
  27250.      Return a mapString of all the data members of this topic. The key is the 
  27251.      variable name.  LCP: CountryAttribs 
  27252.      string getDesc() 
  27253.  
  27254.      Get the short description 
  27255.      string getDescLong() 
  27256.  
  27257.      Get the long description 
  27258.      string getDescNative() 
  27259.  
  27260.      Get the native language description 
  27261.      string getNetCode() 
  27262.  
  27263.      Get the internet code for this country 
  27264.  
  27265.  
  27266. ΓòÉΓòÉΓòÉ <hidden> ╨ü ΓòÉΓòÉΓòÉ
  27267.  
  27268.  
  27269. lyris_Country Class 
  27270.  
  27271.      class lyris_Country 
  27272.  
  27273.      For determining what countries exist, and what languages are spoken & 
  27274.      preferred in each country 
  27275.  
  27276.      Defined in: COUNTRY.H 
  27277.  
  27278.   Create a new country 
  27279.  
  27280.       bool createNew() 
  27281.  
  27282.      Creates a new country/language table row.  LCP: CountryCreate 
  27283.      bool updateDatabase() 
  27284.  
  27285.      Save the current country with the data members that have changed.  LCP: 
  27286.      CountryUpdate 
  27287.      bool VerifyFields() 
  27288.  
  27289.      Verify that all required fields are filled in. 
  27290.  
  27291.   Retrieve data from the database 
  27292.      bool fetchAllCountries(vecString &AllCountries) 
  27293.  
  27294.      Fetch a list of all countries.  LCP: CountryAll 
  27295.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27296.  
  27297.      Fetch a paired list of countries and their native language descriptions, 
  27298.      sorted by english description.  LCP: CountryEngNat 
  27299.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27300.  
  27301.      Fetch a paired list of native language country descriptions, and the 
  27302.      english name of the country. 
  27303.      bool retrieveFromNetCode() 
  27304.  
  27305.      Determine the country that uses the currently set NetCode.  Fills all the 
  27306.      other country attributes with values. LCP: CountryAttNetCode 
  27307.      bool retrieveFromDesc() 
  27308.  
  27309.      Determine the country that uses the currently set description.  Fills all 
  27310.      the other country attributes with values.  LCP: CountryAttribs 
  27311.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27312.  
  27313.      Determine the primary language of the current country.  "Desc" must be 
  27314.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27315.      CountryPrimLang 
  27316.      bool getAllLanguages(vecString &Languages) 
  27317.  
  27318.      Determine all the languages used by the current country.  "Desc" must be 
  27319.      already set.  The result is returned in priority order (highest priority 
  27320.      first) in vecString &Languages.  LCP: CountryLanguages 
  27321.      bool getLanguageList(vecString &Languages) 
  27322.  
  27323.      Get a list of all possible languages, in alphabetical order, returned in 
  27324.      vecString &Languages.  LCP: CountryLangList 
  27325.      bool getLanguageListEngNat(mapString &Languages) 
  27326.  
  27327.      Get a map of all possible languages, their native description in 
  27328.      alphabetical order by english description, returned in in vecString 
  27329.      &Languages.  LCP: CountryLangListEngNat 
  27330.  
  27331.   Delete a country 
  27332.      bool deleteFromDesc() 
  27333.  
  27334.      Delete the country that uses the currently set description.  LCP: 
  27335.      CountryDelete 
  27336.  
  27337.   Set data members 
  27338.      bool setAll(mapString &FieldValues) 
  27339.  
  27340.      Sets all the data members of a topic using the mapString which is passed 
  27341.      to it.  Only the fields present in the mapString are updated, the other 
  27342.      fields are untouched.  LCP: CountryUpdate 
  27343.      bool setDesc(const string &DescSetting) 
  27344.  
  27345.      Set the short description 
  27346.      bool setDescLong(const string &DescLongSetting) 
  27347.  
  27348.      Set the long description 
  27349.      bool setDescNative(const string &DescNativeSetting) 
  27350.  
  27351.      Set the native language description 
  27352.      bool setNetCode(const string &NetCodeSetting) 
  27353.  
  27354.      Set the internet code for this country 
  27355.      bool erase() 
  27356.  
  27357.      Sets all the data members to empty 
  27358.  
  27359.   Get data members 
  27360.      bool getAll(mapString &FieldValues) 
  27361.  
  27362.      Return a mapString of all the data members of this topic. The key is the 
  27363.      variable name.  LCP: CountryAttribs 
  27364.      string getDesc() 
  27365.  
  27366.      Get the short description 
  27367.      string getDescLong() 
  27368.  
  27369.      Get the long description 
  27370.      string getDescNative() 
  27371.  
  27372.      Get the native language description 
  27373.      string getNetCode() 
  27374.  
  27375.      Get the internet code for this country 
  27376.  
  27377.  
  27378. ΓòÉΓòÉΓòÉ <hidden> ╤æ ΓòÉΓòÉΓòÉ
  27379.  
  27380.  
  27381. lyris_Country Class 
  27382.  
  27383.      class lyris_Country 
  27384.  
  27385.      For determining what countries exist, and what languages are spoken & 
  27386.      preferred in each country 
  27387.  
  27388.      Defined in: COUNTRY.H 
  27389.  
  27390.   Create a new country 
  27391.  
  27392.       bool createNew() 
  27393.  
  27394.      Creates a new country/language table row.  LCP: CountryCreate 
  27395.      bool updateDatabase() 
  27396.  
  27397.      Save the current country with the data members that have changed.  LCP: 
  27398.      CountryUpdate 
  27399.      bool VerifyFields() 
  27400.  
  27401.      Verify that all required fields are filled in. 
  27402.  
  27403.   Retrieve data from the database 
  27404.      bool fetchAllCountries(vecString &AllCountries) 
  27405.  
  27406.      Fetch a list of all countries.  LCP: CountryAll 
  27407.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27408.  
  27409.      Fetch a paired list of countries and their native language descriptions, 
  27410.      sorted by english description.  LCP: CountryEngNat 
  27411.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27412.  
  27413.      Fetch a paired list of native language country descriptions, and the 
  27414.      english name of the country. 
  27415.      bool retrieveFromNetCode() 
  27416.  
  27417.      Determine the country that uses the currently set NetCode.  Fills all the 
  27418.      other country attributes with values. LCP: CountryAttNetCode 
  27419.      bool retrieveFromDesc() 
  27420.  
  27421.      Determine the country that uses the currently set description.  Fills all 
  27422.      the other country attributes with values.  LCP: CountryAttribs 
  27423.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27424.  
  27425.      Determine the primary language of the current country.  "Desc" must be 
  27426.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27427.      CountryPrimLang 
  27428.      bool getAllLanguages(vecString &Languages) 
  27429.  
  27430.      Determine all the languages used by the current country.  "Desc" must be 
  27431.      already set.  The result is returned in priority order (highest priority 
  27432.      first) in vecString &Languages.  LCP: CountryLanguages 
  27433.      bool getLanguageList(vecString &Languages) 
  27434.  
  27435.      Get a list of all possible languages, in alphabetical order, returned in 
  27436.      vecString &Languages.  LCP: CountryLangList 
  27437.      bool getLanguageListEngNat(mapString &Languages) 
  27438.  
  27439.      Get a map of all possible languages, their native description in 
  27440.      alphabetical order by english description, returned in in vecString 
  27441.      &Languages.  LCP: CountryLangListEngNat 
  27442.  
  27443.   Delete a country 
  27444.      bool deleteFromDesc() 
  27445.  
  27446.      Delete the country that uses the currently set description.  LCP: 
  27447.      CountryDelete 
  27448.  
  27449.   Set data members 
  27450.      bool setAll(mapString &FieldValues) 
  27451.  
  27452.      Sets all the data members of a topic using the mapString which is passed 
  27453.      to it.  Only the fields present in the mapString are updated, the other 
  27454.      fields are untouched.  LCP: CountryUpdate 
  27455.      bool setDesc(const string &DescSetting) 
  27456.  
  27457.      Set the short description 
  27458.      bool setDescLong(const string &DescLongSetting) 
  27459.  
  27460.      Set the long description 
  27461.      bool setDescNative(const string &DescNativeSetting) 
  27462.  
  27463.      Set the native language description 
  27464.      bool setNetCode(const string &NetCodeSetting) 
  27465.  
  27466.      Set the internet code for this country 
  27467.      bool erase() 
  27468.  
  27469.      Sets all the data members to empty 
  27470.  
  27471.   Get data members 
  27472.      bool getAll(mapString &FieldValues) 
  27473.  
  27474.      Return a mapString of all the data members of this topic. The key is the 
  27475.      variable name.  LCP: CountryAttribs 
  27476.      string getDesc() 
  27477.  
  27478.      Get the short description 
  27479.      string getDescLong() 
  27480.  
  27481.      Get the long description 
  27482.      string getDescNative() 
  27483.  
  27484.      Get the native language description 
  27485.      string getNetCode() 
  27486.  
  27487.      Get the internet code for this country 
  27488.  
  27489.  
  27490. ΓòÉΓòÉΓòÉ <hidden> ╨ä ΓòÉΓòÉΓòÉ
  27491.  
  27492.  
  27493. lyris_Country Class 
  27494.  
  27495.      class lyris_Country 
  27496.  
  27497.      For determining what countries exist, and what languages are spoken & 
  27498.      preferred in each country 
  27499.  
  27500.      Defined in: COUNTRY.H 
  27501.  
  27502.   Create a new country 
  27503.  
  27504.       bool createNew() 
  27505.  
  27506.      Creates a new country/language table row.  LCP: CountryCreate 
  27507.      bool updateDatabase() 
  27508.  
  27509.      Save the current country with the data members that have changed.  LCP: 
  27510.      CountryUpdate 
  27511.      bool VerifyFields() 
  27512.  
  27513.      Verify that all required fields are filled in. 
  27514.  
  27515.   Retrieve data from the database 
  27516.      bool fetchAllCountries(vecString &AllCountries) 
  27517.  
  27518.      Fetch a list of all countries.  LCP: CountryAll 
  27519.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27520.  
  27521.      Fetch a paired list of countries and their native language descriptions, 
  27522.      sorted by english description.  LCP: CountryEngNat 
  27523.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27524.  
  27525.      Fetch a paired list of native language country descriptions, and the 
  27526.      english name of the country. 
  27527.      bool retrieveFromNetCode() 
  27528.  
  27529.      Determine the country that uses the currently set NetCode.  Fills all the 
  27530.      other country attributes with values. LCP: CountryAttNetCode 
  27531.      bool retrieveFromDesc() 
  27532.  
  27533.      Determine the country that uses the currently set description.  Fills all 
  27534.      the other country attributes with values.  LCP: CountryAttribs 
  27535.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27536.  
  27537.      Determine the primary language of the current country.  "Desc" must be 
  27538.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27539.      CountryPrimLang 
  27540.      bool getAllLanguages(vecString &Languages) 
  27541.  
  27542.      Determine all the languages used by the current country.  "Desc" must be 
  27543.      already set.  The result is returned in priority order (highest priority 
  27544.      first) in vecString &Languages.  LCP: CountryLanguages 
  27545.      bool getLanguageList(vecString &Languages) 
  27546.  
  27547.      Get a list of all possible languages, in alphabetical order, returned in 
  27548.      vecString &Languages.  LCP: CountryLangList 
  27549.      bool getLanguageListEngNat(mapString &Languages) 
  27550.  
  27551.      Get a map of all possible languages, their native description in 
  27552.      alphabetical order by english description, returned in in vecString 
  27553.      &Languages.  LCP: CountryLangListEngNat 
  27554.  
  27555.   Delete a country 
  27556.      bool deleteFromDesc() 
  27557.  
  27558.      Delete the country that uses the currently set description.  LCP: 
  27559.      CountryDelete 
  27560.  
  27561.   Set data members 
  27562.      bool setAll(mapString &FieldValues) 
  27563.  
  27564.      Sets all the data members of a topic using the mapString which is passed 
  27565.      to it.  Only the fields present in the mapString are updated, the other 
  27566.      fields are untouched.  LCP: CountryUpdate 
  27567.      bool setDesc(const string &DescSetting) 
  27568.  
  27569.      Set the short description 
  27570.      bool setDescLong(const string &DescLongSetting) 
  27571.  
  27572.      Set the long description 
  27573.      bool setDescNative(const string &DescNativeSetting) 
  27574.  
  27575.      Set the native language description 
  27576.      bool setNetCode(const string &NetCodeSetting) 
  27577.  
  27578.      Set the internet code for this country 
  27579.      bool erase() 
  27580.  
  27581.      Sets all the data members to empty 
  27582.  
  27583.   Get data members 
  27584.      bool getAll(mapString &FieldValues) 
  27585.  
  27586.      Return a mapString of all the data members of this topic. The key is the 
  27587.      variable name.  LCP: CountryAttribs 
  27588.      string getDesc() 
  27589.  
  27590.      Get the short description 
  27591.      string getDescLong() 
  27592.  
  27593.      Get the long description 
  27594.      string getDescNative() 
  27595.  
  27596.      Get the native language description 
  27597.      string getNetCode() 
  27598.  
  27599.      Get the internet code for this country 
  27600.  
  27601.  
  27602. ΓòÉΓòÉΓòÉ <hidden> ╤ö ΓòÉΓòÉΓòÉ
  27603.  
  27604.  
  27605. lyris_Country Class 
  27606.  
  27607.      class lyris_Country 
  27608.  
  27609.      For determining what countries exist, and what languages are spoken & 
  27610.      preferred in each country 
  27611.  
  27612.      Defined in: COUNTRY.H 
  27613.  
  27614.   Create a new country 
  27615.  
  27616.       bool createNew() 
  27617.  
  27618.      Creates a new country/language table row.  LCP: CountryCreate 
  27619.      bool updateDatabase() 
  27620.  
  27621.      Save the current country with the data members that have changed.  LCP: 
  27622.      CountryUpdate 
  27623.      bool VerifyFields() 
  27624.  
  27625.      Verify that all required fields are filled in. 
  27626.  
  27627.   Retrieve data from the database 
  27628.      bool fetchAllCountries(vecString &AllCountries) 
  27629.  
  27630.      Fetch a list of all countries.  LCP: CountryAll 
  27631.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27632.  
  27633.      Fetch a paired list of countries and their native language descriptions, 
  27634.      sorted by english description.  LCP: CountryEngNat 
  27635.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27636.  
  27637.      Fetch a paired list of native language country descriptions, and the 
  27638.      english name of the country. 
  27639.      bool retrieveFromNetCode() 
  27640.  
  27641.      Determine the country that uses the currently set NetCode.  Fills all the 
  27642.      other country attributes with values. LCP: CountryAttNetCode 
  27643.      bool retrieveFromDesc() 
  27644.  
  27645.      Determine the country that uses the currently set description.  Fills all 
  27646.      the other country attributes with values.  LCP: CountryAttribs 
  27647.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27648.  
  27649.      Determine the primary language of the current country.  "Desc" must be 
  27650.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27651.      CountryPrimLang 
  27652.      bool getAllLanguages(vecString &Languages) 
  27653.  
  27654.      Determine all the languages used by the current country.  "Desc" must be 
  27655.      already set.  The result is returned in priority order (highest priority 
  27656.      first) in vecString &Languages.  LCP: CountryLanguages 
  27657.      bool getLanguageList(vecString &Languages) 
  27658.  
  27659.      Get a list of all possible languages, in alphabetical order, returned in 
  27660.      vecString &Languages.  LCP: CountryLangList 
  27661.      bool getLanguageListEngNat(mapString &Languages) 
  27662.  
  27663.      Get a map of all possible languages, their native description in 
  27664.      alphabetical order by english description, returned in in vecString 
  27665.      &Languages.  LCP: CountryLangListEngNat 
  27666.  
  27667.   Delete a country 
  27668.      bool deleteFromDesc() 
  27669.  
  27670.      Delete the country that uses the currently set description.  LCP: 
  27671.      CountryDelete 
  27672.  
  27673.   Set data members 
  27674.      bool setAll(mapString &FieldValues) 
  27675.  
  27676.      Sets all the data members of a topic using the mapString which is passed 
  27677.      to it.  Only the fields present in the mapString are updated, the other 
  27678.      fields are untouched.  LCP: CountryUpdate 
  27679.      bool setDesc(const string &DescSetting) 
  27680.  
  27681.      Set the short description 
  27682.      bool setDescLong(const string &DescLongSetting) 
  27683.  
  27684.      Set the long description 
  27685.      bool setDescNative(const string &DescNativeSetting) 
  27686.  
  27687.      Set the native language description 
  27688.      bool setNetCode(const string &NetCodeSetting) 
  27689.  
  27690.      Set the internet code for this country 
  27691.      bool erase() 
  27692.  
  27693.      Sets all the data members to empty 
  27694.  
  27695.   Get data members 
  27696.      bool getAll(mapString &FieldValues) 
  27697.  
  27698.      Return a mapString of all the data members of this topic. The key is the 
  27699.      variable name.  LCP: CountryAttribs 
  27700.      string getDesc() 
  27701.  
  27702.      Get the short description 
  27703.      string getDescLong() 
  27704.  
  27705.      Get the long description 
  27706.      string getDescNative() 
  27707.  
  27708.      Get the native language description 
  27709.      string getNetCode() 
  27710.  
  27711.      Get the internet code for this country 
  27712.  
  27713.  
  27714. ΓòÉΓòÉΓòÉ <hidden> ╨ç ΓòÉΓòÉΓòÉ
  27715.  
  27716.  
  27717. lyris_Country Class 
  27718.  
  27719.      class lyris_Country 
  27720.  
  27721.      For determining what countries exist, and what languages are spoken & 
  27722.      preferred in each country 
  27723.  
  27724.      Defined in: COUNTRY.H 
  27725.  
  27726.   Create a new country 
  27727.  
  27728.       bool createNew() 
  27729.  
  27730.      Creates a new country/language table row.  LCP: CountryCreate 
  27731.      bool updateDatabase() 
  27732.  
  27733.      Save the current country with the data members that have changed.  LCP: 
  27734.      CountryUpdate 
  27735.      bool VerifyFields() 
  27736.  
  27737.      Verify that all required fields are filled in. 
  27738.  
  27739.   Retrieve data from the database 
  27740.      bool fetchAllCountries(vecString &AllCountries) 
  27741.  
  27742.      Fetch a list of all countries.  LCP: CountryAll 
  27743.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27744.  
  27745.      Fetch a paired list of countries and their native language descriptions, 
  27746.      sorted by english description.  LCP: CountryEngNat 
  27747.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27748.  
  27749.      Fetch a paired list of native language country descriptions, and the 
  27750.      english name of the country. 
  27751.      bool retrieveFromNetCode() 
  27752.  
  27753.      Determine the country that uses the currently set NetCode.  Fills all the 
  27754.      other country attributes with values. LCP: CountryAttNetCode 
  27755.      bool retrieveFromDesc() 
  27756.  
  27757.      Determine the country that uses the currently set description.  Fills all 
  27758.      the other country attributes with values.  LCP: CountryAttribs 
  27759.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27760.  
  27761.      Determine the primary language of the current country.  "Desc" must be 
  27762.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27763.      CountryPrimLang 
  27764.      bool getAllLanguages(vecString &Languages) 
  27765.  
  27766.      Determine all the languages used by the current country.  "Desc" must be 
  27767.      already set.  The result is returned in priority order (highest priority 
  27768.      first) in vecString &Languages.  LCP: CountryLanguages 
  27769.      bool getLanguageList(vecString &Languages) 
  27770.  
  27771.      Get a list of all possible languages, in alphabetical order, returned in 
  27772.      vecString &Languages.  LCP: CountryLangList 
  27773.      bool getLanguageListEngNat(mapString &Languages) 
  27774.  
  27775.      Get a map of all possible languages, their native description in 
  27776.      alphabetical order by english description, returned in in vecString 
  27777.      &Languages.  LCP: CountryLangListEngNat 
  27778.  
  27779.   Delete a country 
  27780.      bool deleteFromDesc() 
  27781.  
  27782.      Delete the country that uses the currently set description.  LCP: 
  27783.      CountryDelete 
  27784.  
  27785.   Set data members 
  27786.      bool setAll(mapString &FieldValues) 
  27787.  
  27788.      Sets all the data members of a topic using the mapString which is passed 
  27789.      to it.  Only the fields present in the mapString are updated, the other 
  27790.      fields are untouched.  LCP: CountryUpdate 
  27791.      bool setDesc(const string &DescSetting) 
  27792.  
  27793.      Set the short description 
  27794.      bool setDescLong(const string &DescLongSetting) 
  27795.  
  27796.      Set the long description 
  27797.      bool setDescNative(const string &DescNativeSetting) 
  27798.  
  27799.      Set the native language description 
  27800.      bool setNetCode(const string &NetCodeSetting) 
  27801.  
  27802.      Set the internet code for this country 
  27803.      bool erase() 
  27804.  
  27805.      Sets all the data members to empty 
  27806.  
  27807.   Get data members 
  27808.      bool getAll(mapString &FieldValues) 
  27809.  
  27810.      Return a mapString of all the data members of this topic. The key is the 
  27811.      variable name.  LCP: CountryAttribs 
  27812.      string getDesc() 
  27813.  
  27814.      Get the short description 
  27815.      string getDescLong() 
  27816.  
  27817.      Get the long description 
  27818.      string getDescNative() 
  27819.  
  27820.      Get the native language description 
  27821.      string getNetCode() 
  27822.  
  27823.      Get the internet code for this country 
  27824.  
  27825.  
  27826. ΓòÉΓòÉΓòÉ <hidden> ╤ù ΓòÉΓòÉΓòÉ
  27827.  
  27828.  
  27829. lyris_Country Class 
  27830.  
  27831.      class lyris_Country 
  27832.  
  27833.      For determining what countries exist, and what languages are spoken & 
  27834.      preferred in each country 
  27835.  
  27836.      Defined in: COUNTRY.H 
  27837.  
  27838.   Create a new country 
  27839.  
  27840.       bool createNew() 
  27841.  
  27842.      Creates a new country/language table row.  LCP: CountryCreate 
  27843.      bool updateDatabase() 
  27844.  
  27845.      Save the current country with the data members that have changed.  LCP: 
  27846.      CountryUpdate 
  27847.      bool VerifyFields() 
  27848.  
  27849.      Verify that all required fields are filled in. 
  27850.  
  27851.   Retrieve data from the database 
  27852.      bool fetchAllCountries(vecString &AllCountries) 
  27853.  
  27854.      Fetch a list of all countries.  LCP: CountryAll 
  27855.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27856.  
  27857.      Fetch a paired list of countries and their native language descriptions, 
  27858.      sorted by english description.  LCP: CountryEngNat 
  27859.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27860.  
  27861.      Fetch a paired list of native language country descriptions, and the 
  27862.      english name of the country. 
  27863.      bool retrieveFromNetCode() 
  27864.  
  27865.      Determine the country that uses the currently set NetCode.  Fills all the 
  27866.      other country attributes with values. LCP: CountryAttNetCode 
  27867.      bool retrieveFromDesc() 
  27868.  
  27869.      Determine the country that uses the currently set description.  Fills all 
  27870.      the other country attributes with values.  LCP: CountryAttribs 
  27871.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27872.  
  27873.      Determine the primary language of the current country.  "Desc" must be 
  27874.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27875.      CountryPrimLang 
  27876.      bool getAllLanguages(vecString &Languages) 
  27877.  
  27878.      Determine all the languages used by the current country.  "Desc" must be 
  27879.      already set.  The result is returned in priority order (highest priority 
  27880.      first) in vecString &Languages.  LCP: CountryLanguages 
  27881.      bool getLanguageList(vecString &Languages) 
  27882.  
  27883.      Get a list of all possible languages, in alphabetical order, returned in 
  27884.      vecString &Languages.  LCP: CountryLangList 
  27885.      bool getLanguageListEngNat(mapString &Languages) 
  27886.  
  27887.      Get a map of all possible languages, their native description in 
  27888.      alphabetical order by english description, returned in in vecString 
  27889.      &Languages.  LCP: CountryLangListEngNat 
  27890.  
  27891.   Delete a country 
  27892.      bool deleteFromDesc() 
  27893.  
  27894.      Delete the country that uses the currently set description.  LCP: 
  27895.      CountryDelete 
  27896.  
  27897.   Set data members 
  27898.      bool setAll(mapString &FieldValues) 
  27899.  
  27900.      Sets all the data members of a topic using the mapString which is passed 
  27901.      to it.  Only the fields present in the mapString are updated, the other 
  27902.      fields are untouched.  LCP: CountryUpdate 
  27903.      bool setDesc(const string &DescSetting) 
  27904.  
  27905.      Set the short description 
  27906.      bool setDescLong(const string &DescLongSetting) 
  27907.  
  27908.      Set the long description 
  27909.      bool setDescNative(const string &DescNativeSetting) 
  27910.  
  27911.      Set the native language description 
  27912.      bool setNetCode(const string &NetCodeSetting) 
  27913.  
  27914.      Set the internet code for this country 
  27915.      bool erase() 
  27916.  
  27917.      Sets all the data members to empty 
  27918.  
  27919.   Get data members 
  27920.      bool getAll(mapString &FieldValues) 
  27921.  
  27922.      Return a mapString of all the data members of this topic. The key is the 
  27923.      variable name.  LCP: CountryAttribs 
  27924.      string getDesc() 
  27925.  
  27926.      Get the short description 
  27927.      string getDescLong() 
  27928.  
  27929.      Get the long description 
  27930.      string getDescNative() 
  27931.  
  27932.      Get the native language description 
  27933.      string getNetCode() 
  27934.  
  27935.      Get the internet code for this country 
  27936.  
  27937.  
  27938. ΓòÉΓòÉΓòÉ <hidden> ╨Ä ΓòÉΓòÉΓòÉ
  27939.  
  27940.  
  27941. lyris_Country Class 
  27942.  
  27943.      class lyris_Country 
  27944.  
  27945.      For determining what countries exist, and what languages are spoken & 
  27946.      preferred in each country 
  27947.  
  27948.      Defined in: COUNTRY.H 
  27949.  
  27950.   Create a new country 
  27951.  
  27952.       bool createNew() 
  27953.  
  27954.      Creates a new country/language table row.  LCP: CountryCreate 
  27955.      bool updateDatabase() 
  27956.  
  27957.      Save the current country with the data members that have changed.  LCP: 
  27958.      CountryUpdate 
  27959.      bool VerifyFields() 
  27960.  
  27961.      Verify that all required fields are filled in. 
  27962.  
  27963.   Retrieve data from the database 
  27964.      bool fetchAllCountries(vecString &AllCountries) 
  27965.  
  27966.      Fetch a list of all countries.  LCP: CountryAll 
  27967.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  27968.  
  27969.      Fetch a paired list of countries and their native language descriptions, 
  27970.      sorted by english description.  LCP: CountryEngNat 
  27971.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  27972.  
  27973.      Fetch a paired list of native language country descriptions, and the 
  27974.      english name of the country. 
  27975.      bool retrieveFromNetCode() 
  27976.  
  27977.      Determine the country that uses the currently set NetCode.  Fills all the 
  27978.      other country attributes with values. LCP: CountryAttNetCode 
  27979.      bool retrieveFromDesc() 
  27980.  
  27981.      Determine the country that uses the currently set description.  Fills all 
  27982.      the other country attributes with values.  LCP: CountryAttribs 
  27983.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  27984.  
  27985.      Determine the primary language of the current country.  "Desc" must be 
  27986.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  27987.      CountryPrimLang 
  27988.      bool getAllLanguages(vecString &Languages) 
  27989.  
  27990.      Determine all the languages used by the current country.  "Desc" must be 
  27991.      already set.  The result is returned in priority order (highest priority 
  27992.      first) in vecString &Languages.  LCP: CountryLanguages 
  27993.      bool getLanguageList(vecString &Languages) 
  27994.  
  27995.      Get a list of all possible languages, in alphabetical order, returned in 
  27996.      vecString &Languages.  LCP: CountryLangList 
  27997.      bool getLanguageListEngNat(mapString &Languages) 
  27998.  
  27999.      Get a map of all possible languages, their native description in 
  28000.      alphabetical order by english description, returned in in vecString 
  28001.      &Languages.  LCP: CountryLangListEngNat 
  28002.  
  28003.   Delete a country 
  28004.      bool deleteFromDesc() 
  28005.  
  28006.      Delete the country that uses the currently set description.  LCP: 
  28007.      CountryDelete 
  28008.  
  28009.   Set data members 
  28010.      bool setAll(mapString &FieldValues) 
  28011.  
  28012.      Sets all the data members of a topic using the mapString which is passed 
  28013.      to it.  Only the fields present in the mapString are updated, the other 
  28014.      fields are untouched.  LCP: CountryUpdate 
  28015.      bool setDesc(const string &DescSetting) 
  28016.  
  28017.      Set the short description 
  28018.      bool setDescLong(const string &DescLongSetting) 
  28019.  
  28020.      Set the long description 
  28021.      bool setDescNative(const string &DescNativeSetting) 
  28022.  
  28023.      Set the native language description 
  28024.      bool setNetCode(const string &NetCodeSetting) 
  28025.  
  28026.      Set the internet code for this country 
  28027.      bool erase() 
  28028.  
  28029.      Sets all the data members to empty 
  28030.  
  28031.   Get data members 
  28032.      bool getAll(mapString &FieldValues) 
  28033.  
  28034.      Return a mapString of all the data members of this topic. The key is the 
  28035.      variable name.  LCP: CountryAttribs 
  28036.      string getDesc() 
  28037.  
  28038.      Get the short description 
  28039.      string getDescLong() 
  28040.  
  28041.      Get the long description 
  28042.      string getDescNative() 
  28043.  
  28044.      Get the native language description 
  28045.      string getNetCode() 
  28046.  
  28047.      Get the internet code for this country 
  28048.  
  28049.  
  28050. ΓòÉΓòÉΓòÉ <hidden> ╤₧ ΓòÉΓòÉΓòÉ
  28051.  
  28052.  
  28053. lyris_Country Class 
  28054.  
  28055.      class lyris_Country 
  28056.  
  28057.      For determining what countries exist, and what languages are spoken & 
  28058.      preferred in each country 
  28059.  
  28060.      Defined in: COUNTRY.H 
  28061.  
  28062.   Create a new country 
  28063.  
  28064.       bool createNew() 
  28065.  
  28066.      Creates a new country/language table row.  LCP: CountryCreate 
  28067.      bool updateDatabase() 
  28068.  
  28069.      Save the current country with the data members that have changed.  LCP: 
  28070.      CountryUpdate 
  28071.      bool VerifyFields() 
  28072.  
  28073.      Verify that all required fields are filled in. 
  28074.  
  28075.   Retrieve data from the database 
  28076.      bool fetchAllCountries(vecString &AllCountries) 
  28077.  
  28078.      Fetch a list of all countries.  LCP: CountryAll 
  28079.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28080.  
  28081.      Fetch a paired list of countries and their native language descriptions, 
  28082.      sorted by english description.  LCP: CountryEngNat 
  28083.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28084.  
  28085.      Fetch a paired list of native language country descriptions, and the 
  28086.      english name of the country. 
  28087.      bool retrieveFromNetCode() 
  28088.  
  28089.      Determine the country that uses the currently set NetCode.  Fills all the 
  28090.      other country attributes with values. LCP: CountryAttNetCode 
  28091.      bool retrieveFromDesc() 
  28092.  
  28093.      Determine the country that uses the currently set description.  Fills all 
  28094.      the other country attributes with values.  LCP: CountryAttribs 
  28095.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28096.  
  28097.      Determine the primary language of the current country.  "Desc" must be 
  28098.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28099.      CountryPrimLang 
  28100.      bool getAllLanguages(vecString &Languages) 
  28101.  
  28102.      Determine all the languages used by the current country.  "Desc" must be 
  28103.      already set.  The result is returned in priority order (highest priority 
  28104.      first) in vecString &Languages.  LCP: CountryLanguages 
  28105.      bool getLanguageList(vecString &Languages) 
  28106.  
  28107.      Get a list of all possible languages, in alphabetical order, returned in 
  28108.      vecString &Languages.  LCP: CountryLangList 
  28109.      bool getLanguageListEngNat(mapString &Languages) 
  28110.  
  28111.      Get a map of all possible languages, their native description in 
  28112.      alphabetical order by english description, returned in in vecString 
  28113.      &Languages.  LCP: CountryLangListEngNat 
  28114.  
  28115.   Delete a country 
  28116.      bool deleteFromDesc() 
  28117.  
  28118.      Delete the country that uses the currently set description.  LCP: 
  28119.      CountryDelete 
  28120.  
  28121.   Set data members 
  28122.      bool setAll(mapString &FieldValues) 
  28123.  
  28124.      Sets all the data members of a topic using the mapString which is passed 
  28125.      to it.  Only the fields present in the mapString are updated, the other 
  28126.      fields are untouched.  LCP: CountryUpdate 
  28127.      bool setDesc(const string &DescSetting) 
  28128.  
  28129.      Set the short description 
  28130.      bool setDescLong(const string &DescLongSetting) 
  28131.  
  28132.      Set the long description 
  28133.      bool setDescNative(const string &DescNativeSetting) 
  28134.  
  28135.      Set the native language description 
  28136.      bool setNetCode(const string &NetCodeSetting) 
  28137.  
  28138.      Set the internet code for this country 
  28139.      bool erase() 
  28140.  
  28141.      Sets all the data members to empty 
  28142.  
  28143.   Get data members 
  28144.      bool getAll(mapString &FieldValues) 
  28145.  
  28146.      Return a mapString of all the data members of this topic. The key is the 
  28147.      variable name.  LCP: CountryAttribs 
  28148.      string getDesc() 
  28149.  
  28150.      Get the short description 
  28151.      string getDescLong() 
  28152.  
  28153.      Get the long description 
  28154.      string getDescNative() 
  28155.  
  28156.      Get the native language description 
  28157.      string getNetCode() 
  28158.  
  28159.      Get the internet code for this country 
  28160.  
  28161.  
  28162. ΓòÉΓòÉΓòÉ <hidden> ┬░ ΓòÉΓòÉΓòÉ
  28163.  
  28164.  
  28165. lyris_Country Class 
  28166.  
  28167.      class lyris_Country 
  28168.  
  28169.      For determining what countries exist, and what languages are spoken & 
  28170.      preferred in each country 
  28171.  
  28172.      Defined in: COUNTRY.H 
  28173.  
  28174.   Create a new country 
  28175.  
  28176.       bool createNew() 
  28177.  
  28178.      Creates a new country/language table row.  LCP: CountryCreate 
  28179.      bool updateDatabase() 
  28180.  
  28181.      Save the current country with the data members that have changed.  LCP: 
  28182.      CountryUpdate 
  28183.      bool VerifyFields() 
  28184.  
  28185.      Verify that all required fields are filled in. 
  28186.  
  28187.   Retrieve data from the database 
  28188.      bool fetchAllCountries(vecString &AllCountries) 
  28189.  
  28190.      Fetch a list of all countries.  LCP: CountryAll 
  28191.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28192.  
  28193.      Fetch a paired list of countries and their native language descriptions, 
  28194.      sorted by english description.  LCP: CountryEngNat 
  28195.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28196.  
  28197.      Fetch a paired list of native language country descriptions, and the 
  28198.      english name of the country. 
  28199.      bool retrieveFromNetCode() 
  28200.  
  28201.      Determine the country that uses the currently set NetCode.  Fills all the 
  28202.      other country attributes with values. LCP: CountryAttNetCode 
  28203.      bool retrieveFromDesc() 
  28204.  
  28205.      Determine the country that uses the currently set description.  Fills all 
  28206.      the other country attributes with values.  LCP: CountryAttribs 
  28207.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28208.  
  28209.      Determine the primary language of the current country.  "Desc" must be 
  28210.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28211.      CountryPrimLang 
  28212.      bool getAllLanguages(vecString &Languages) 
  28213.  
  28214.      Determine all the languages used by the current country.  "Desc" must be 
  28215.      already set.  The result is returned in priority order (highest priority 
  28216.      first) in vecString &Languages.  LCP: CountryLanguages 
  28217.      bool getLanguageList(vecString &Languages) 
  28218.  
  28219.      Get a list of all possible languages, in alphabetical order, returned in 
  28220.      vecString &Languages.  LCP: CountryLangList 
  28221.      bool getLanguageListEngNat(mapString &Languages) 
  28222.  
  28223.      Get a map of all possible languages, their native description in 
  28224.      alphabetical order by english description, returned in in vecString 
  28225.      &Languages.  LCP: CountryLangListEngNat 
  28226.  
  28227.   Delete a country 
  28228.      bool deleteFromDesc() 
  28229.  
  28230.      Delete the country that uses the currently set description.  LCP: 
  28231.      CountryDelete 
  28232.  
  28233.   Set data members 
  28234.      bool setAll(mapString &FieldValues) 
  28235.  
  28236.      Sets all the data members of a topic using the mapString which is passed 
  28237.      to it.  Only the fields present in the mapString are updated, the other 
  28238.      fields are untouched.  LCP: CountryUpdate 
  28239.      bool setDesc(const string &DescSetting) 
  28240.  
  28241.      Set the short description 
  28242.      bool setDescLong(const string &DescLongSetting) 
  28243.  
  28244.      Set the long description 
  28245.      bool setDescNative(const string &DescNativeSetting) 
  28246.  
  28247.      Set the native language description 
  28248.      bool setNetCode(const string &NetCodeSetting) 
  28249.  
  28250.      Set the internet code for this country 
  28251.      bool erase() 
  28252.  
  28253.      Sets all the data members to empty 
  28254.  
  28255.   Get data members 
  28256.      bool getAll(mapString &FieldValues) 
  28257.  
  28258.      Return a mapString of all the data members of this topic. The key is the 
  28259.      variable name.  LCP: CountryAttribs 
  28260.      string getDesc() 
  28261.  
  28262.      Get the short description 
  28263.      string getDescLong() 
  28264.  
  28265.      Get the long description 
  28266.      string getDescNative() 
  28267.  
  28268.      Get the native language description 
  28269.      string getNetCode() 
  28270.  
  28271.      Get the internet code for this country 
  28272.  
  28273.  
  28274. ΓòÉΓòÉΓòÉ <hidden> ΓêÖ ΓòÉΓòÉΓòÉ
  28275.  
  28276.  
  28277. lyris_Country Class 
  28278.  
  28279.      class lyris_Country 
  28280.  
  28281.      For determining what countries exist, and what languages are spoken & 
  28282.      preferred in each country 
  28283.  
  28284.      Defined in: COUNTRY.H 
  28285.  
  28286.   Create a new country 
  28287.  
  28288.       bool createNew() 
  28289.  
  28290.      Creates a new country/language table row.  LCP: CountryCreate 
  28291.      bool updateDatabase() 
  28292.  
  28293.      Save the current country with the data members that have changed.  LCP: 
  28294.      CountryUpdate 
  28295.      bool VerifyFields() 
  28296.  
  28297.      Verify that all required fields are filled in. 
  28298.  
  28299.   Retrieve data from the database 
  28300.      bool fetchAllCountries(vecString &AllCountries) 
  28301.  
  28302.      Fetch a list of all countries.  LCP: CountryAll 
  28303.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28304.  
  28305.      Fetch a paired list of countries and their native language descriptions, 
  28306.      sorted by english description.  LCP: CountryEngNat 
  28307.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28308.  
  28309.      Fetch a paired list of native language country descriptions, and the 
  28310.      english name of the country. 
  28311.      bool retrieveFromNetCode() 
  28312.  
  28313.      Determine the country that uses the currently set NetCode.  Fills all the 
  28314.      other country attributes with values. LCP: CountryAttNetCode 
  28315.      bool retrieveFromDesc() 
  28316.  
  28317.      Determine the country that uses the currently set description.  Fills all 
  28318.      the other country attributes with values.  LCP: CountryAttribs 
  28319.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28320.  
  28321.      Determine the primary language of the current country.  "Desc" must be 
  28322.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28323.      CountryPrimLang 
  28324.      bool getAllLanguages(vecString &Languages) 
  28325.  
  28326.      Determine all the languages used by the current country.  "Desc" must be 
  28327.      already set.  The result is returned in priority order (highest priority 
  28328.      first) in vecString &Languages.  LCP: CountryLanguages 
  28329.      bool getLanguageList(vecString &Languages) 
  28330.  
  28331.      Get a list of all possible languages, in alphabetical order, returned in 
  28332.      vecString &Languages.  LCP: CountryLangList 
  28333.      bool getLanguageListEngNat(mapString &Languages) 
  28334.  
  28335.      Get a map of all possible languages, their native description in 
  28336.      alphabetical order by english description, returned in in vecString 
  28337.      &Languages.  LCP: CountryLangListEngNat 
  28338.  
  28339.   Delete a country 
  28340.      bool deleteFromDesc() 
  28341.  
  28342.      Delete the country that uses the currently set description.  LCP: 
  28343.      CountryDelete 
  28344.  
  28345.   Set data members 
  28346.      bool setAll(mapString &FieldValues) 
  28347.  
  28348.      Sets all the data members of a topic using the mapString which is passed 
  28349.      to it.  Only the fields present in the mapString are updated, the other 
  28350.      fields are untouched.  LCP: CountryUpdate 
  28351.      bool setDesc(const string &DescSetting) 
  28352.  
  28353.      Set the short description 
  28354.      bool setDescLong(const string &DescLongSetting) 
  28355.  
  28356.      Set the long description 
  28357.      bool setDescNative(const string &DescNativeSetting) 
  28358.  
  28359.      Set the native language description 
  28360.      bool setNetCode(const string &NetCodeSetting) 
  28361.  
  28362.      Set the internet code for this country 
  28363.      bool erase() 
  28364.  
  28365.      Sets all the data members to empty 
  28366.  
  28367.   Get data members 
  28368.      bool getAll(mapString &FieldValues) 
  28369.  
  28370.      Return a mapString of all the data members of this topic. The key is the 
  28371.      variable name.  LCP: CountryAttribs 
  28372.      string getDesc() 
  28373.  
  28374.      Get the short description 
  28375.      string getDescLong() 
  28376.  
  28377.      Get the long description 
  28378.      string getDescNative() 
  28379.  
  28380.      Get the native language description 
  28381.      string getNetCode() 
  28382.  
  28383.      Get the internet code for this country 
  28384.  
  28385.  
  28386. ΓòÉΓòÉΓòÉ <hidden> ┬╖ ΓòÉΓòÉΓòÉ
  28387.  
  28388.  
  28389. lyris_Country Class 
  28390.  
  28391.      class lyris_Country 
  28392.  
  28393.      For determining what countries exist, and what languages are spoken & 
  28394.      preferred in each country 
  28395.  
  28396.      Defined in: COUNTRY.H 
  28397.  
  28398.   Create a new country 
  28399.  
  28400.       bool createNew() 
  28401.  
  28402.      Creates a new country/language table row.  LCP: CountryCreate 
  28403.      bool updateDatabase() 
  28404.  
  28405.      Save the current country with the data members that have changed.  LCP: 
  28406.      CountryUpdate 
  28407.      bool VerifyFields() 
  28408.  
  28409.      Verify that all required fields are filled in. 
  28410.  
  28411.   Retrieve data from the database 
  28412.      bool fetchAllCountries(vecString &AllCountries) 
  28413.  
  28414.      Fetch a list of all countries.  LCP: CountryAll 
  28415.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28416.  
  28417.      Fetch a paired list of countries and their native language descriptions, 
  28418.      sorted by english description.  LCP: CountryEngNat 
  28419.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28420.  
  28421.      Fetch a paired list of native language country descriptions, and the 
  28422.      english name of the country. 
  28423.      bool retrieveFromNetCode() 
  28424.  
  28425.      Determine the country that uses the currently set NetCode.  Fills all the 
  28426.      other country attributes with values. LCP: CountryAttNetCode 
  28427.      bool retrieveFromDesc() 
  28428.  
  28429.      Determine the country that uses the currently set description.  Fills all 
  28430.      the other country attributes with values.  LCP: CountryAttribs 
  28431.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28432.  
  28433.      Determine the primary language of the current country.  "Desc" must be 
  28434.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28435.      CountryPrimLang 
  28436.      bool getAllLanguages(vecString &Languages) 
  28437.  
  28438.      Determine all the languages used by the current country.  "Desc" must be 
  28439.      already set.  The result is returned in priority order (highest priority 
  28440.      first) in vecString &Languages.  LCP: CountryLanguages 
  28441.      bool getLanguageList(vecString &Languages) 
  28442.  
  28443.      Get a list of all possible languages, in alphabetical order, returned in 
  28444.      vecString &Languages.  LCP: CountryLangList 
  28445.      bool getLanguageListEngNat(mapString &Languages) 
  28446.  
  28447.      Get a map of all possible languages, their native description in 
  28448.      alphabetical order by english description, returned in in vecString 
  28449.      &Languages.  LCP: CountryLangListEngNat 
  28450.  
  28451.   Delete a country 
  28452.      bool deleteFromDesc() 
  28453.  
  28454.      Delete the country that uses the currently set description.  LCP: 
  28455.      CountryDelete 
  28456.  
  28457.   Set data members 
  28458.      bool setAll(mapString &FieldValues) 
  28459.  
  28460.      Sets all the data members of a topic using the mapString which is passed 
  28461.      to it.  Only the fields present in the mapString are updated, the other 
  28462.      fields are untouched.  LCP: CountryUpdate 
  28463.      bool setDesc(const string &DescSetting) 
  28464.  
  28465.      Set the short description 
  28466.      bool setDescLong(const string &DescLongSetting) 
  28467.  
  28468.      Set the long description 
  28469.      bool setDescNative(const string &DescNativeSetting) 
  28470.  
  28471.      Set the native language description 
  28472.      bool setNetCode(const string &NetCodeSetting) 
  28473.  
  28474.      Set the internet code for this country 
  28475.      bool erase() 
  28476.  
  28477.      Sets all the data members to empty 
  28478.  
  28479.   Get data members 
  28480.      bool getAll(mapString &FieldValues) 
  28481.  
  28482.      Return a mapString of all the data members of this topic. The key is the 
  28483.      variable name.  LCP: CountryAttribs 
  28484.      string getDesc() 
  28485.  
  28486.      Get the short description 
  28487.      string getDescLong() 
  28488.  
  28489.      Get the long description 
  28490.      string getDescNative() 
  28491.  
  28492.      Get the native language description 
  28493.      string getNetCode() 
  28494.  
  28495.      Get the internet code for this country 
  28496.  
  28497.  
  28498. ΓòÉΓòÉΓòÉ <hidden> ΓêÜ ΓòÉΓòÉΓòÉ
  28499.  
  28500.  
  28501. lyris_Country Class 
  28502.  
  28503.      class lyris_Country 
  28504.  
  28505.      For determining what countries exist, and what languages are spoken & 
  28506.      preferred in each country 
  28507.  
  28508.      Defined in: COUNTRY.H 
  28509.  
  28510.   Create a new country 
  28511.  
  28512.       bool createNew() 
  28513.  
  28514.      Creates a new country/language table row.  LCP: CountryCreate 
  28515.      bool updateDatabase() 
  28516.  
  28517.      Save the current country with the data members that have changed.  LCP: 
  28518.      CountryUpdate 
  28519.      bool VerifyFields() 
  28520.  
  28521.      Verify that all required fields are filled in. 
  28522.  
  28523.   Retrieve data from the database 
  28524.      bool fetchAllCountries(vecString &AllCountries) 
  28525.  
  28526.      Fetch a list of all countries.  LCP: CountryAll 
  28527.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28528.  
  28529.      Fetch a paired list of countries and their native language descriptions, 
  28530.      sorted by english description.  LCP: CountryEngNat 
  28531.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28532.  
  28533.      Fetch a paired list of native language country descriptions, and the 
  28534.      english name of the country. 
  28535.      bool retrieveFromNetCode() 
  28536.  
  28537.      Determine the country that uses the currently set NetCode.  Fills all the 
  28538.      other country attributes with values. LCP: CountryAttNetCode 
  28539.      bool retrieveFromDesc() 
  28540.  
  28541.      Determine the country that uses the currently set description.  Fills all 
  28542.      the other country attributes with values.  LCP: CountryAttribs 
  28543.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28544.  
  28545.      Determine the primary language of the current country.  "Desc" must be 
  28546.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28547.      CountryPrimLang 
  28548.      bool getAllLanguages(vecString &Languages) 
  28549.  
  28550.      Determine all the languages used by the current country.  "Desc" must be 
  28551.      already set.  The result is returned in priority order (highest priority 
  28552.      first) in vecString &Languages.  LCP: CountryLanguages 
  28553.      bool getLanguageList(vecString &Languages) 
  28554.  
  28555.      Get a list of all possible languages, in alphabetical order, returned in 
  28556.      vecString &Languages.  LCP: CountryLangList 
  28557.      bool getLanguageListEngNat(mapString &Languages) 
  28558.  
  28559.      Get a map of all possible languages, their native description in 
  28560.      alphabetical order by english description, returned in in vecString 
  28561.      &Languages.  LCP: CountryLangListEngNat 
  28562.  
  28563.   Delete a country 
  28564.      bool deleteFromDesc() 
  28565.  
  28566.      Delete the country that uses the currently set description.  LCP: 
  28567.      CountryDelete 
  28568.  
  28569.   Set data members 
  28570.      bool setAll(mapString &FieldValues) 
  28571.  
  28572.      Sets all the data members of a topic using the mapString which is passed 
  28573.      to it.  Only the fields present in the mapString are updated, the other 
  28574.      fields are untouched.  LCP: CountryUpdate 
  28575.      bool setDesc(const string &DescSetting) 
  28576.  
  28577.      Set the short description 
  28578.      bool setDescLong(const string &DescLongSetting) 
  28579.  
  28580.      Set the long description 
  28581.      bool setDescNative(const string &DescNativeSetting) 
  28582.  
  28583.      Set the native language description 
  28584.      bool setNetCode(const string &NetCodeSetting) 
  28585.  
  28586.      Set the internet code for this country 
  28587.      bool erase() 
  28588.  
  28589.      Sets all the data members to empty 
  28590.  
  28591.   Get data members 
  28592.      bool getAll(mapString &FieldValues) 
  28593.  
  28594.      Return a mapString of all the data members of this topic. The key is the 
  28595.      variable name.  LCP: CountryAttribs 
  28596.      string getDesc() 
  28597.  
  28598.      Get the short description 
  28599.      string getDescLong() 
  28600.  
  28601.      Get the long description 
  28602.      string getDescNative() 
  28603.  
  28604.      Get the native language description 
  28605.      string getNetCode() 
  28606.  
  28607.      Get the internet code for this country 
  28608.  
  28609.  
  28610. ΓòÉΓòÉΓòÉ <hidden> Γäû ΓòÉΓòÉΓòÉ
  28611.  
  28612.  
  28613. lyris_Country Class 
  28614.  
  28615.      class lyris_Country 
  28616.  
  28617.      For determining what countries exist, and what languages are spoken & 
  28618.      preferred in each country 
  28619.  
  28620.      Defined in: COUNTRY.H 
  28621.  
  28622.   Create a new country 
  28623.  
  28624.       bool createNew() 
  28625.  
  28626.      Creates a new country/language table row.  LCP: CountryCreate 
  28627.      bool updateDatabase() 
  28628.  
  28629.      Save the current country with the data members that have changed.  LCP: 
  28630.      CountryUpdate 
  28631.      bool VerifyFields() 
  28632.  
  28633.      Verify that all required fields are filled in. 
  28634.  
  28635.   Retrieve data from the database 
  28636.      bool fetchAllCountries(vecString &AllCountries) 
  28637.  
  28638.      Fetch a list of all countries.  LCP: CountryAll 
  28639.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28640.  
  28641.      Fetch a paired list of countries and their native language descriptions, 
  28642.      sorted by english description.  LCP: CountryEngNat 
  28643.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28644.  
  28645.      Fetch a paired list of native language country descriptions, and the 
  28646.      english name of the country. 
  28647.      bool retrieveFromNetCode() 
  28648.  
  28649.      Determine the country that uses the currently set NetCode.  Fills all the 
  28650.      other country attributes with values. LCP: CountryAttNetCode 
  28651.      bool retrieveFromDesc() 
  28652.  
  28653.      Determine the country that uses the currently set description.  Fills all 
  28654.      the other country attributes with values.  LCP: CountryAttribs 
  28655.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28656.  
  28657.      Determine the primary language of the current country.  "Desc" must be 
  28658.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28659.      CountryPrimLang 
  28660.      bool getAllLanguages(vecString &Languages) 
  28661.  
  28662.      Determine all the languages used by the current country.  "Desc" must be 
  28663.      already set.  The result is returned in priority order (highest priority 
  28664.      first) in vecString &Languages.  LCP: CountryLanguages 
  28665.      bool getLanguageList(vecString &Languages) 
  28666.  
  28667.      Get a list of all possible languages, in alphabetical order, returned in 
  28668.      vecString &Languages.  LCP: CountryLangList 
  28669.      bool getLanguageListEngNat(mapString &Languages) 
  28670.  
  28671.      Get a map of all possible languages, their native description in 
  28672.      alphabetical order by english description, returned in in vecString 
  28673.      &Languages.  LCP: CountryLangListEngNat 
  28674.  
  28675.   Delete a country 
  28676.      bool deleteFromDesc() 
  28677.  
  28678.      Delete the country that uses the currently set description.  LCP: 
  28679.      CountryDelete 
  28680.  
  28681.   Set data members 
  28682.      bool setAll(mapString &FieldValues) 
  28683.  
  28684.      Sets all the data members of a topic using the mapString which is passed 
  28685.      to it.  Only the fields present in the mapString are updated, the other 
  28686.      fields are untouched.  LCP: CountryUpdate 
  28687.      bool setDesc(const string &DescSetting) 
  28688.  
  28689.      Set the short description 
  28690.      bool setDescLong(const string &DescLongSetting) 
  28691.  
  28692.      Set the long description 
  28693.      bool setDescNative(const string &DescNativeSetting) 
  28694.  
  28695.      Set the native language description 
  28696.      bool setNetCode(const string &NetCodeSetting) 
  28697.  
  28698.      Set the internet code for this country 
  28699.      bool erase() 
  28700.  
  28701.      Sets all the data members to empty 
  28702.  
  28703.   Get data members 
  28704.      bool getAll(mapString &FieldValues) 
  28705.  
  28706.      Return a mapString of all the data members of this topic. The key is the 
  28707.      variable name.  LCP: CountryAttribs 
  28708.      string getDesc() 
  28709.  
  28710.      Get the short description 
  28711.      string getDescLong() 
  28712.  
  28713.      Get the long description 
  28714.      string getDescNative() 
  28715.  
  28716.      Get the native language description 
  28717.      string getNetCode() 
  28718.  
  28719.      Get the internet code for this country 
  28720.  
  28721.  
  28722. ΓòÉΓòÉΓòÉ <hidden> ┬ñ ΓòÉΓòÉΓòÉ
  28723.  
  28724.  
  28725. lyris_Country Class 
  28726.  
  28727.      class lyris_Country 
  28728.  
  28729.      For determining what countries exist, and what languages are spoken & 
  28730.      preferred in each country 
  28731.  
  28732.      Defined in: COUNTRY.H 
  28733.  
  28734.   Create a new country 
  28735.  
  28736.       bool createNew() 
  28737.  
  28738.      Creates a new country/language table row.  LCP: CountryCreate 
  28739.      bool updateDatabase() 
  28740.  
  28741.      Save the current country with the data members that have changed.  LCP: 
  28742.      CountryUpdate 
  28743.      bool VerifyFields() 
  28744.  
  28745.      Verify that all required fields are filled in. 
  28746.  
  28747.   Retrieve data from the database 
  28748.      bool fetchAllCountries(vecString &AllCountries) 
  28749.  
  28750.      Fetch a list of all countries.  LCP: CountryAll 
  28751.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28752.  
  28753.      Fetch a paired list of countries and their native language descriptions, 
  28754.      sorted by english description.  LCP: CountryEngNat 
  28755.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28756.  
  28757.      Fetch a paired list of native language country descriptions, and the 
  28758.      english name of the country. 
  28759.      bool retrieveFromNetCode() 
  28760.  
  28761.      Determine the country that uses the currently set NetCode.  Fills all the 
  28762.      other country attributes with values. LCP: CountryAttNetCode 
  28763.      bool retrieveFromDesc() 
  28764.  
  28765.      Determine the country that uses the currently set description.  Fills all 
  28766.      the other country attributes with values.  LCP: CountryAttribs 
  28767.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28768.  
  28769.      Determine the primary language of the current country.  "Desc" must be 
  28770.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28771.      CountryPrimLang 
  28772.      bool getAllLanguages(vecString &Languages) 
  28773.  
  28774.      Determine all the languages used by the current country.  "Desc" must be 
  28775.      already set.  The result is returned in priority order (highest priority 
  28776.      first) in vecString &Languages.  LCP: CountryLanguages 
  28777.      bool getLanguageList(vecString &Languages) 
  28778.  
  28779.      Get a list of all possible languages, in alphabetical order, returned in 
  28780.      vecString &Languages.  LCP: CountryLangList 
  28781.      bool getLanguageListEngNat(mapString &Languages) 
  28782.  
  28783.      Get a map of all possible languages, their native description in 
  28784.      alphabetical order by english description, returned in in vecString 
  28785.      &Languages.  LCP: CountryLangListEngNat 
  28786.  
  28787.   Delete a country 
  28788.      bool deleteFromDesc() 
  28789.  
  28790.      Delete the country that uses the currently set description.  LCP: 
  28791.      CountryDelete 
  28792.  
  28793.   Set data members 
  28794.      bool setAll(mapString &FieldValues) 
  28795.  
  28796.      Sets all the data members of a topic using the mapString which is passed 
  28797.      to it.  Only the fields present in the mapString are updated, the other 
  28798.      fields are untouched.  LCP: CountryUpdate 
  28799.      bool setDesc(const string &DescSetting) 
  28800.  
  28801.      Set the short description 
  28802.      bool setDescLong(const string &DescLongSetting) 
  28803.  
  28804.      Set the long description 
  28805.      bool setDescNative(const string &DescNativeSetting) 
  28806.  
  28807.      Set the native language description 
  28808.      bool setNetCode(const string &NetCodeSetting) 
  28809.  
  28810.      Set the internet code for this country 
  28811.      bool erase() 
  28812.  
  28813.      Sets all the data members to empty 
  28814.  
  28815.   Get data members 
  28816.      bool getAll(mapString &FieldValues) 
  28817.  
  28818.      Return a mapString of all the data members of this topic. The key is the 
  28819.      variable name.  LCP: CountryAttribs 
  28820.      string getDesc() 
  28821.  
  28822.      Get the short description 
  28823.      string getDescLong() 
  28824.  
  28825.      Get the long description 
  28826.      string getDescNative() 
  28827.  
  28828.      Get the native language description 
  28829.      string getNetCode() 
  28830.  
  28831.      Get the internet code for this country 
  28832.  
  28833.  
  28834. ΓòÉΓòÉΓòÉ <hidden> Γûá ΓòÉΓòÉΓòÉ
  28835.  
  28836.  
  28837. lyris_Country Class 
  28838.  
  28839.      class lyris_Country 
  28840.  
  28841.      For determining what countries exist, and what languages are spoken & 
  28842.      preferred in each country 
  28843.  
  28844.      Defined in: COUNTRY.H 
  28845.  
  28846.   Create a new country 
  28847.  
  28848.       bool createNew() 
  28849.  
  28850.      Creates a new country/language table row.  LCP: CountryCreate 
  28851.      bool updateDatabase() 
  28852.  
  28853.      Save the current country with the data members that have changed.  LCP: 
  28854.      CountryUpdate 
  28855.      bool VerifyFields() 
  28856.  
  28857.      Verify that all required fields are filled in. 
  28858.  
  28859.   Retrieve data from the database 
  28860.      bool fetchAllCountries(vecString &AllCountries) 
  28861.  
  28862.      Fetch a list of all countries.  LCP: CountryAll 
  28863.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28864.  
  28865.      Fetch a paired list of countries and their native language descriptions, 
  28866.      sorted by english description.  LCP: CountryEngNat 
  28867.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28868.  
  28869.      Fetch a paired list of native language country descriptions, and the 
  28870.      english name of the country. 
  28871.      bool retrieveFromNetCode() 
  28872.  
  28873.      Determine the country that uses the currently set NetCode.  Fills all the 
  28874.      other country attributes with values. LCP: CountryAttNetCode 
  28875.      bool retrieveFromDesc() 
  28876.  
  28877.      Determine the country that uses the currently set description.  Fills all 
  28878.      the other country attributes with values.  LCP: CountryAttribs 
  28879.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28880.  
  28881.      Determine the primary language of the current country.  "Desc" must be 
  28882.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28883.      CountryPrimLang 
  28884.      bool getAllLanguages(vecString &Languages) 
  28885.  
  28886.      Determine all the languages used by the current country.  "Desc" must be 
  28887.      already set.  The result is returned in priority order (highest priority 
  28888.      first) in vecString &Languages.  LCP: CountryLanguages 
  28889.      bool getLanguageList(vecString &Languages) 
  28890.  
  28891.      Get a list of all possible languages, in alphabetical order, returned in 
  28892.      vecString &Languages.  LCP: CountryLangList 
  28893.      bool getLanguageListEngNat(mapString &Languages) 
  28894.  
  28895.      Get a map of all possible languages, their native description in 
  28896.      alphabetical order by english description, returned in in vecString 
  28897.      &Languages.  LCP: CountryLangListEngNat 
  28898.  
  28899.   Delete a country 
  28900.      bool deleteFromDesc() 
  28901.  
  28902.      Delete the country that uses the currently set description.  LCP: 
  28903.      CountryDelete 
  28904.  
  28905.   Set data members 
  28906.      bool setAll(mapString &FieldValues) 
  28907.  
  28908.      Sets all the data members of a topic using the mapString which is passed 
  28909.      to it.  Only the fields present in the mapString are updated, the other 
  28910.      fields are untouched.  LCP: CountryUpdate 
  28911.      bool setDesc(const string &DescSetting) 
  28912.  
  28913.      Set the short description 
  28914.      bool setDescLong(const string &DescLongSetting) 
  28915.  
  28916.      Set the long description 
  28917.      bool setDescNative(const string &DescNativeSetting) 
  28918.  
  28919.      Set the native language description 
  28920.      bool setNetCode(const string &NetCodeSetting) 
  28921.  
  28922.      Set the internet code for this country 
  28923.      bool erase() 
  28924.  
  28925.      Sets all the data members to empty 
  28926.  
  28927.   Get data members 
  28928.      bool getAll(mapString &FieldValues) 
  28929.  
  28930.      Return a mapString of all the data members of this topic. The key is the 
  28931.      variable name.  LCP: CountryAttribs 
  28932.      string getDesc() 
  28933.  
  28934.      Get the short description 
  28935.      string getDescLong() 
  28936.  
  28937.      Get the long description 
  28938.      string getDescNative() 
  28939.  
  28940.      Get the native language description 
  28941.      string getNetCode() 
  28942.  
  28943.      Get the internet code for this country 
  28944.  
  28945.  
  28946. ΓòÉΓòÉΓòÉ <hidden> ┬á ΓòÉΓòÉΓòÉ
  28947.  
  28948.  
  28949. lyris_Country Class 
  28950.  
  28951.      class lyris_Country 
  28952.  
  28953.      For determining what countries exist, and what languages are spoken & 
  28954.      preferred in each country 
  28955.  
  28956.      Defined in: COUNTRY.H 
  28957.  
  28958.   Create a new country 
  28959.  
  28960.       bool createNew() 
  28961.  
  28962.      Creates a new country/language table row.  LCP: CountryCreate 
  28963.      bool updateDatabase() 
  28964.  
  28965.      Save the current country with the data members that have changed.  LCP: 
  28966.      CountryUpdate 
  28967.      bool VerifyFields() 
  28968.  
  28969.      Verify that all required fields are filled in. 
  28970.  
  28971.   Retrieve data from the database 
  28972.      bool fetchAllCountries(vecString &AllCountries) 
  28973.  
  28974.      Fetch a list of all countries.  LCP: CountryAll 
  28975.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  28976.  
  28977.      Fetch a paired list of countries and their native language descriptions, 
  28978.      sorted by english description.  LCP: CountryEngNat 
  28979.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  28980.  
  28981.      Fetch a paired list of native language country descriptions, and the 
  28982.      english name of the country. 
  28983.      bool retrieveFromNetCode() 
  28984.  
  28985.      Determine the country that uses the currently set NetCode.  Fills all the 
  28986.      other country attributes with values. LCP: CountryAttNetCode 
  28987.      bool retrieveFromDesc() 
  28988.  
  28989.      Determine the country that uses the currently set description.  Fills all 
  28990.      the other country attributes with values.  LCP: CountryAttribs 
  28991.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  28992.  
  28993.      Determine the primary language of the current country.  "Desc" must be 
  28994.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  28995.      CountryPrimLang 
  28996.      bool getAllLanguages(vecString &Languages) 
  28997.  
  28998.      Determine all the languages used by the current country.  "Desc" must be 
  28999.      already set.  The result is returned in priority order (highest priority 
  29000.      first) in vecString &Languages.  LCP: CountryLanguages 
  29001.      bool getLanguageList(vecString &Languages) 
  29002.  
  29003.      Get a list of all possible languages, in alphabetical order, returned in 
  29004.      vecString &Languages.  LCP: CountryLangList 
  29005.      bool getLanguageListEngNat(mapString &Languages) 
  29006.  
  29007.      Get a map of all possible languages, their native description in 
  29008.      alphabetical order by english description, returned in in vecString 
  29009.      &Languages.  LCP: CountryLangListEngNat 
  29010.  
  29011.   Delete a country 
  29012.      bool deleteFromDesc() 
  29013.  
  29014.      Delete the country that uses the currently set description.  LCP: 
  29015.      CountryDelete 
  29016.  
  29017.   Set data members 
  29018.      bool setAll(mapString &FieldValues) 
  29019.  
  29020.      Sets all the data members of a topic using the mapString which is passed 
  29021.      to it.  Only the fields present in the mapString are updated, the other 
  29022.      fields are untouched.  LCP: CountryUpdate 
  29023.      bool setDesc(const string &DescSetting) 
  29024.  
  29025.      Set the short description 
  29026.      bool setDescLong(const string &DescLongSetting) 
  29027.  
  29028.      Set the long description 
  29029.      bool setDescNative(const string &DescNativeSetting) 
  29030.  
  29031.      Set the native language description 
  29032.      bool setNetCode(const string &NetCodeSetting) 
  29033.  
  29034.      Set the internet code for this country 
  29035.      bool erase() 
  29036.  
  29037.      Sets all the data members to empty 
  29038.  
  29039.   Get data members 
  29040.      bool getAll(mapString &FieldValues) 
  29041.  
  29042.      Return a mapString of all the data members of this topic. The key is the 
  29043.      variable name.  LCP: CountryAttribs 
  29044.      string getDesc() 
  29045.  
  29046.      Get the short description 
  29047.      string getDescLong() 
  29048.  
  29049.      Get the long description 
  29050.      string getDescNative() 
  29051.  
  29052.      Get the native language description 
  29053.      string getNetCode() 
  29054.  
  29055.      Get the internet code for this country 
  29056.  
  29057.  
  29058. ΓòÉΓòÉΓòÉ <hidden>  ΓòÉΓòÉΓòÉ
  29059.  
  29060.  
  29061. lyris_Country Class 
  29062.  
  29063.      class lyris_Country 
  29064.  
  29065.      For determining what countries exist, and what languages are spoken & 
  29066.      preferred in each country 
  29067.  
  29068.      Defined in: COUNTRY.H 
  29069.  
  29070.   Create a new country 
  29071.  
  29072.       bool createNew() 
  29073.  
  29074.      Creates a new country/language table row.  LCP: CountryCreate 
  29075.      bool updateDatabase() 
  29076.  
  29077.      Save the current country with the data members that have changed.  LCP: 
  29078.      CountryUpdate 
  29079.      bool VerifyFields() 
  29080.  
  29081.      Verify that all required fields are filled in. 
  29082.  
  29083.   Retrieve data from the database 
  29084.      bool fetchAllCountries(vecString &AllCountries) 
  29085.  
  29086.      Fetch a list of all countries.  LCP: CountryAll 
  29087.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29088.  
  29089.      Fetch a paired list of countries and their native language descriptions, 
  29090.      sorted by english description.  LCP: CountryEngNat 
  29091.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29092.  
  29093.      Fetch a paired list of native language country descriptions, and the 
  29094.      english name of the country. 
  29095.      bool retrieveFromNetCode() 
  29096.  
  29097.      Determine the country that uses the currently set NetCode.  Fills all the 
  29098.      other country attributes with values. LCP: CountryAttNetCode 
  29099.      bool retrieveFromDesc() 
  29100.  
  29101.      Determine the country that uses the currently set description.  Fills all 
  29102.      the other country attributes with values.  LCP: CountryAttribs 
  29103.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29104.  
  29105.      Determine the primary language of the current country.  "Desc" must be 
  29106.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29107.      CountryPrimLang 
  29108.      bool getAllLanguages(vecString &Languages) 
  29109.  
  29110.      Determine all the languages used by the current country.  "Desc" must be 
  29111.      already set.  The result is returned in priority order (highest priority 
  29112.      first) in vecString &Languages.  LCP: CountryLanguages 
  29113.      bool getLanguageList(vecString &Languages) 
  29114.  
  29115.      Get a list of all possible languages, in alphabetical order, returned in 
  29116.      vecString &Languages.  LCP: CountryLangList 
  29117.      bool getLanguageListEngNat(mapString &Languages) 
  29118.  
  29119.      Get a map of all possible languages, their native description in 
  29120.      alphabetical order by english description, returned in in vecString 
  29121.      &Languages.  LCP: CountryLangListEngNat 
  29122.  
  29123.   Delete a country 
  29124.      bool deleteFromDesc() 
  29125.  
  29126.      Delete the country that uses the currently set description.  LCP: 
  29127.      CountryDelete 
  29128.  
  29129.   Set data members 
  29130.      bool setAll(mapString &FieldValues) 
  29131.  
  29132.      Sets all the data members of a topic using the mapString which is passed 
  29133.      to it.  Only the fields present in the mapString are updated, the other 
  29134.      fields are untouched.  LCP: CountryUpdate 
  29135.      bool setDesc(const string &DescSetting) 
  29136.  
  29137.      Set the short description 
  29138.      bool setDescLong(const string &DescLongSetting) 
  29139.  
  29140.      Set the long description 
  29141.      bool setDescNative(const string &DescNativeSetting) 
  29142.  
  29143.      Set the native language description 
  29144.      bool setNetCode(const string &NetCodeSetting) 
  29145.  
  29146.      Set the internet code for this country 
  29147.      bool erase() 
  29148.  
  29149.      Sets all the data members to empty 
  29150.  
  29151.   Get data members 
  29152.      bool getAll(mapString &FieldValues) 
  29153.  
  29154.      Return a mapString of all the data members of this topic. The key is the 
  29155.      variable name.  LCP: CountryAttribs 
  29156.      string getDesc() 
  29157.  
  29158.      Get the short description 
  29159.      string getDescLong() 
  29160.  
  29161.      Get the long description 
  29162.      string getDescNative() 
  29163.  
  29164.      Get the native language description 
  29165.      string getNetCode() 
  29166.  
  29167.      Get the internet code for this country 
  29168.  
  29169.  
  29170. ΓòÉΓòÉΓòÉ <hidden> System constants ΓòÉΓòÉΓòÉ
  29171.  
  29172.  
  29173. lyris_Country Class 
  29174.  
  29175.      class lyris_Country 
  29176.  
  29177.      For determining what countries exist, and what languages are spoken & 
  29178.      preferred in each country 
  29179.  
  29180.      Defined in: COUNTRY.H 
  29181.  
  29182.   Create a new country 
  29183.  
  29184.       bool createNew() 
  29185.  
  29186.      Creates a new country/language table row.  LCP: CountryCreate 
  29187.      bool updateDatabase() 
  29188.  
  29189.      Save the current country with the data members that have changed.  LCP: 
  29190.      CountryUpdate 
  29191.      bool VerifyFields() 
  29192.  
  29193.      Verify that all required fields are filled in. 
  29194.  
  29195.   Retrieve data from the database 
  29196.      bool fetchAllCountries(vecString &AllCountries) 
  29197.  
  29198.      Fetch a list of all countries.  LCP: CountryAll 
  29199.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29200.  
  29201.      Fetch a paired list of countries and their native language descriptions, 
  29202.      sorted by english description.  LCP: CountryEngNat 
  29203.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29204.  
  29205.      Fetch a paired list of native language country descriptions, and the 
  29206.      english name of the country. 
  29207.      bool retrieveFromNetCode() 
  29208.  
  29209.      Determine the country that uses the currently set NetCode.  Fills all the 
  29210.      other country attributes with values. LCP: CountryAttNetCode 
  29211.      bool retrieveFromDesc() 
  29212.  
  29213.      Determine the country that uses the currently set description.  Fills all 
  29214.      the other country attributes with values.  LCP: CountryAttribs 
  29215.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29216.  
  29217.      Determine the primary language of the current country.  "Desc" must be 
  29218.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29219.      CountryPrimLang 
  29220.      bool getAllLanguages(vecString &Languages) 
  29221.  
  29222.      Determine all the languages used by the current country.  "Desc" must be 
  29223.      already set.  The result is returned in priority order (highest priority 
  29224.      first) in vecString &Languages.  LCP: CountryLanguages 
  29225.      bool getLanguageList(vecString &Languages) 
  29226.  
  29227.      Get a list of all possible languages, in alphabetical order, returned in 
  29228.      vecString &Languages.  LCP: CountryLangList 
  29229.      bool getLanguageListEngNat(mapString &Languages) 
  29230.  
  29231.      Get a map of all possible languages, their native description in 
  29232.      alphabetical order by english description, returned in in vecString 
  29233.      &Languages.  LCP: CountryLangListEngNat 
  29234.  
  29235.   Delete a country 
  29236.      bool deleteFromDesc() 
  29237.  
  29238.      Delete the country that uses the currently set description.  LCP: 
  29239.      CountryDelete 
  29240.  
  29241.   Set data members 
  29242.      bool setAll(mapString &FieldValues) 
  29243.  
  29244.      Sets all the data members of a topic using the mapString which is passed 
  29245.      to it.  Only the fields present in the mapString are updated, the other 
  29246.      fields are untouched.  LCP: CountryUpdate 
  29247.      bool setDesc(const string &DescSetting) 
  29248.  
  29249.      Set the short description 
  29250.      bool setDescLong(const string &DescLongSetting) 
  29251.  
  29252.      Set the long description 
  29253.      bool setDescNative(const string &DescNativeSetting) 
  29254.  
  29255.      Set the native language description 
  29256.      bool setNetCode(const string &NetCodeSetting) 
  29257.  
  29258.      Set the internet code for this country 
  29259.      bool erase() 
  29260.  
  29261.      Sets all the data members to empty 
  29262.  
  29263.   Get data members 
  29264.      bool getAll(mapString &FieldValues) 
  29265.  
  29266.      Return a mapString of all the data members of this topic. The key is the 
  29267.      variable name.  LCP: CountryAttribs 
  29268.      string getDesc() 
  29269.  
  29270.      Get the short description 
  29271.      string getDescLong() 
  29272.  
  29273.      Get the long description 
  29274.      string getDescNative() 
  29275.  
  29276.      Get the native language description 
  29277.      string getNetCode() 
  29278.  
  29279.      Get the internet code for this country 
  29280.  
  29281.  
  29282. ΓòÉΓòÉΓòÉ <hidden> TopicAllLogo ΓòÉΓòÉΓòÉ
  29283.  
  29284.  
  29285. lyris_Country Class 
  29286.  
  29287.      class lyris_Country 
  29288.  
  29289.      For determining what countries exist, and what languages are spoken & 
  29290.      preferred in each country 
  29291.  
  29292.      Defined in: COUNTRY.H 
  29293.  
  29294.   Create a new country 
  29295.  
  29296.       bool createNew() 
  29297.  
  29298.      Creates a new country/language table row.  LCP: CountryCreate 
  29299.      bool updateDatabase() 
  29300.  
  29301.      Save the current country with the data members that have changed.  LCP: 
  29302.      CountryUpdate 
  29303.      bool VerifyFields() 
  29304.  
  29305.      Verify that all required fields are filled in. 
  29306.  
  29307.   Retrieve data from the database 
  29308.      bool fetchAllCountries(vecString &AllCountries) 
  29309.  
  29310.      Fetch a list of all countries.  LCP: CountryAll 
  29311.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29312.  
  29313.      Fetch a paired list of countries and their native language descriptions, 
  29314.      sorted by english description.  LCP: CountryEngNat 
  29315.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29316.  
  29317.      Fetch a paired list of native language country descriptions, and the 
  29318.      english name of the country. 
  29319.      bool retrieveFromNetCode() 
  29320.  
  29321.      Determine the country that uses the currently set NetCode.  Fills all the 
  29322.      other country attributes with values. LCP: CountryAttNetCode 
  29323.      bool retrieveFromDesc() 
  29324.  
  29325.      Determine the country that uses the currently set description.  Fills all 
  29326.      the other country attributes with values.  LCP: CountryAttribs 
  29327.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29328.  
  29329.      Determine the primary language of the current country.  "Desc" must be 
  29330.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29331.      CountryPrimLang 
  29332.      bool getAllLanguages(vecString &Languages) 
  29333.  
  29334.      Determine all the languages used by the current country.  "Desc" must be 
  29335.      already set.  The result is returned in priority order (highest priority 
  29336.      first) in vecString &Languages.  LCP: CountryLanguages 
  29337.      bool getLanguageList(vecString &Languages) 
  29338.  
  29339.      Get a list of all possible languages, in alphabetical order, returned in 
  29340.      vecString &Languages.  LCP: CountryLangList 
  29341.      bool getLanguageListEngNat(mapString &Languages) 
  29342.  
  29343.      Get a map of all possible languages, their native description in 
  29344.      alphabetical order by english description, returned in in vecString 
  29345.      &Languages.  LCP: CountryLangListEngNat 
  29346.  
  29347.   Delete a country 
  29348.      bool deleteFromDesc() 
  29349.  
  29350.      Delete the country that uses the currently set description.  LCP: 
  29351.      CountryDelete 
  29352.  
  29353.   Set data members 
  29354.      bool setAll(mapString &FieldValues) 
  29355.  
  29356.      Sets all the data members of a topic using the mapString which is passed 
  29357.      to it.  Only the fields present in the mapString are updated, the other 
  29358.      fields are untouched.  LCP: CountryUpdate 
  29359.      bool setDesc(const string &DescSetting) 
  29360.  
  29361.      Set the short description 
  29362.      bool setDescLong(const string &DescLongSetting) 
  29363.  
  29364.      Set the long description 
  29365.      bool setDescNative(const string &DescNativeSetting) 
  29366.  
  29367.      Set the native language description 
  29368.      bool setNetCode(const string &NetCodeSetting) 
  29369.  
  29370.      Set the internet code for this country 
  29371.      bool erase() 
  29372.  
  29373.      Sets all the data members to empty 
  29374.  
  29375.   Get data members 
  29376.      bool getAll(mapString &FieldValues) 
  29377.  
  29378.      Return a mapString of all the data members of this topic. The key is the 
  29379.      variable name.  LCP: CountryAttribs 
  29380.      string getDesc() 
  29381.  
  29382.      Get the short description 
  29383.      string getDescLong() 
  29384.  
  29385.      Get the long description 
  29386.      string getDescNative() 
  29387.  
  29388.      Get the native language description 
  29389.      string getNetCode() 
  29390.  
  29391.      Get the internet code for this country 
  29392.  
  29393.  
  29394. ΓòÉΓòÉΓòÉ <hidden> TopicCreate ΓòÉΓòÉΓòÉ
  29395.  
  29396.  
  29397. lyris_Country Class 
  29398.  
  29399.      class lyris_Country 
  29400.  
  29401.      For determining what countries exist, and what languages are spoken & 
  29402.      preferred in each country 
  29403.  
  29404.      Defined in: COUNTRY.H 
  29405.  
  29406.   Create a new country 
  29407.  
  29408.       bool createNew() 
  29409.  
  29410.      Creates a new country/language table row.  LCP: CountryCreate 
  29411.      bool updateDatabase() 
  29412.  
  29413.      Save the current country with the data members that have changed.  LCP: 
  29414.      CountryUpdate 
  29415.      bool VerifyFields() 
  29416.  
  29417.      Verify that all required fields are filled in. 
  29418.  
  29419.   Retrieve data from the database 
  29420.      bool fetchAllCountries(vecString &AllCountries) 
  29421.  
  29422.      Fetch a list of all countries.  LCP: CountryAll 
  29423.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29424.  
  29425.      Fetch a paired list of countries and their native language descriptions, 
  29426.      sorted by english description.  LCP: CountryEngNat 
  29427.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29428.  
  29429.      Fetch a paired list of native language country descriptions, and the 
  29430.      english name of the country. 
  29431.      bool retrieveFromNetCode() 
  29432.  
  29433.      Determine the country that uses the currently set NetCode.  Fills all the 
  29434.      other country attributes with values. LCP: CountryAttNetCode 
  29435.      bool retrieveFromDesc() 
  29436.  
  29437.      Determine the country that uses the currently set description.  Fills all 
  29438.      the other country attributes with values.  LCP: CountryAttribs 
  29439.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29440.  
  29441.      Determine the primary language of the current country.  "Desc" must be 
  29442.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29443.      CountryPrimLang 
  29444.      bool getAllLanguages(vecString &Languages) 
  29445.  
  29446.      Determine all the languages used by the current country.  "Desc" must be 
  29447.      already set.  The result is returned in priority order (highest priority 
  29448.      first) in vecString &Languages.  LCP: CountryLanguages 
  29449.      bool getLanguageList(vecString &Languages) 
  29450.  
  29451.      Get a list of all possible languages, in alphabetical order, returned in 
  29452.      vecString &Languages.  LCP: CountryLangList 
  29453.      bool getLanguageListEngNat(mapString &Languages) 
  29454.  
  29455.      Get a map of all possible languages, their native description in 
  29456.      alphabetical order by english description, returned in in vecString 
  29457.      &Languages.  LCP: CountryLangListEngNat 
  29458.  
  29459.   Delete a country 
  29460.      bool deleteFromDesc() 
  29461.  
  29462.      Delete the country that uses the currently set description.  LCP: 
  29463.      CountryDelete 
  29464.  
  29465.   Set data members 
  29466.      bool setAll(mapString &FieldValues) 
  29467.  
  29468.      Sets all the data members of a topic using the mapString which is passed 
  29469.      to it.  Only the fields present in the mapString are updated, the other 
  29470.      fields are untouched.  LCP: CountryUpdate 
  29471.      bool setDesc(const string &DescSetting) 
  29472.  
  29473.      Set the short description 
  29474.      bool setDescLong(const string &DescLongSetting) 
  29475.  
  29476.      Set the long description 
  29477.      bool setDescNative(const string &DescNativeSetting) 
  29478.  
  29479.      Set the native language description 
  29480.      bool setNetCode(const string &NetCodeSetting) 
  29481.  
  29482.      Set the internet code for this country 
  29483.      bool erase() 
  29484.  
  29485.      Sets all the data members to empty 
  29486.  
  29487.   Get data members 
  29488.      bool getAll(mapString &FieldValues) 
  29489.  
  29490.      Return a mapString of all the data members of this topic. The key is the 
  29491.      variable name.  LCP: CountryAttribs 
  29492.      string getDesc() 
  29493.  
  29494.      Get the short description 
  29495.      string getDescLong() 
  29496.  
  29497.      Get the long description 
  29498.      string getDescNative() 
  29499.  
  29500.      Get the native language description 
  29501.      string getNetCode() 
  29502.  
  29503.      Get the internet code for this country 
  29504.  
  29505.  
  29506. ΓòÉΓòÉΓòÉ <hidden> Topics ΓòÉΓòÉΓòÉ
  29507.  
  29508.  
  29509. lyris_Country Class 
  29510.  
  29511.      class lyris_Country 
  29512.  
  29513.      For determining what countries exist, and what languages are spoken & 
  29514.      preferred in each country 
  29515.  
  29516.      Defined in: COUNTRY.H 
  29517.  
  29518.   Create a new country 
  29519.  
  29520.       bool createNew() 
  29521.  
  29522.      Creates a new country/language table row.  LCP: CountryCreate 
  29523.      bool updateDatabase() 
  29524.  
  29525.      Save the current country with the data members that have changed.  LCP: 
  29526.      CountryUpdate 
  29527.      bool VerifyFields() 
  29528.  
  29529.      Verify that all required fields are filled in. 
  29530.  
  29531.   Retrieve data from the database 
  29532.      bool fetchAllCountries(vecString &AllCountries) 
  29533.  
  29534.      Fetch a list of all countries.  LCP: CountryAll 
  29535.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29536.  
  29537.      Fetch a paired list of countries and their native language descriptions, 
  29538.      sorted by english description.  LCP: CountryEngNat 
  29539.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29540.  
  29541.      Fetch a paired list of native language country descriptions, and the 
  29542.      english name of the country. 
  29543.      bool retrieveFromNetCode() 
  29544.  
  29545.      Determine the country that uses the currently set NetCode.  Fills all the 
  29546.      other country attributes with values. LCP: CountryAttNetCode 
  29547.      bool retrieveFromDesc() 
  29548.  
  29549.      Determine the country that uses the currently set description.  Fills all 
  29550.      the other country attributes with values.  LCP: CountryAttribs 
  29551.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29552.  
  29553.      Determine the primary language of the current country.  "Desc" must be 
  29554.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29555.      CountryPrimLang 
  29556.      bool getAllLanguages(vecString &Languages) 
  29557.  
  29558.      Determine all the languages used by the current country.  "Desc" must be 
  29559.      already set.  The result is returned in priority order (highest priority 
  29560.      first) in vecString &Languages.  LCP: CountryLanguages 
  29561.      bool getLanguageList(vecString &Languages) 
  29562.  
  29563.      Get a list of all possible languages, in alphabetical order, returned in 
  29564.      vecString &Languages.  LCP: CountryLangList 
  29565.      bool getLanguageListEngNat(mapString &Languages) 
  29566.  
  29567.      Get a map of all possible languages, their native description in 
  29568.      alphabetical order by english description, returned in in vecString 
  29569.      &Languages.  LCP: CountryLangListEngNat 
  29570.  
  29571.   Delete a country 
  29572.      bool deleteFromDesc() 
  29573.  
  29574.      Delete the country that uses the currently set description.  LCP: 
  29575.      CountryDelete 
  29576.  
  29577.   Set data members 
  29578.      bool setAll(mapString &FieldValues) 
  29579.  
  29580.      Sets all the data members of a topic using the mapString which is passed 
  29581.      to it.  Only the fields present in the mapString are updated, the other 
  29582.      fields are untouched.  LCP: CountryUpdate 
  29583.      bool setDesc(const string &DescSetting) 
  29584.  
  29585.      Set the short description 
  29586.      bool setDescLong(const string &DescLongSetting) 
  29587.  
  29588.      Set the long description 
  29589.      bool setDescNative(const string &DescNativeSetting) 
  29590.  
  29591.      Set the native language description 
  29592.      bool setNetCode(const string &NetCodeSetting) 
  29593.  
  29594.      Set the internet code for this country 
  29595.      bool erase() 
  29596.  
  29597.      Sets all the data members to empty 
  29598.  
  29599.   Get data members 
  29600.      bool getAll(mapString &FieldValues) 
  29601.  
  29602.      Return a mapString of all the data members of this topic. The key is the 
  29603.      variable name.  LCP: CountryAttribs 
  29604.      string getDesc() 
  29605.  
  29606.      Get the short description 
  29607.      string getDescLong() 
  29608.  
  29609.      Get the long description 
  29610.      string getDescNative() 
  29611.  
  29612.      Get the native language description 
  29613.      string getNetCode() 
  29614.  
  29615.      Get the internet code for this country 
  29616.  
  29617.  
  29618. ΓòÉΓòÉΓòÉ <hidden> TopicUpdate ΓòÉΓòÉΓòÉ
  29619.  
  29620.  
  29621. lyris_Country Class 
  29622.  
  29623.      class lyris_Country 
  29624.  
  29625.      For determining what countries exist, and what languages are spoken & 
  29626.      preferred in each country 
  29627.  
  29628.      Defined in: COUNTRY.H 
  29629.  
  29630.   Create a new country 
  29631.  
  29632.       bool createNew() 
  29633.  
  29634.      Creates a new country/language table row.  LCP: CountryCreate 
  29635.      bool updateDatabase() 
  29636.  
  29637.      Save the current country with the data members that have changed.  LCP: 
  29638.      CountryUpdate 
  29639.      bool VerifyFields() 
  29640.  
  29641.      Verify that all required fields are filled in. 
  29642.  
  29643.   Retrieve data from the database 
  29644.      bool fetchAllCountries(vecString &AllCountries) 
  29645.  
  29646.      Fetch a list of all countries.  LCP: CountryAll 
  29647.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29648.  
  29649.      Fetch a paired list of countries and their native language descriptions, 
  29650.      sorted by english description.  LCP: CountryEngNat 
  29651.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29652.  
  29653.      Fetch a paired list of native language country descriptions, and the 
  29654.      english name of the country. 
  29655.      bool retrieveFromNetCode() 
  29656.  
  29657.      Determine the country that uses the currently set NetCode.  Fills all the 
  29658.      other country attributes with values. LCP: CountryAttNetCode 
  29659.      bool retrieveFromDesc() 
  29660.  
  29661.      Determine the country that uses the currently set description.  Fills all 
  29662.      the other country attributes with values.  LCP: CountryAttribs 
  29663.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29664.  
  29665.      Determine the primary language of the current country.  "Desc" must be 
  29666.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29667.      CountryPrimLang 
  29668.      bool getAllLanguages(vecString &Languages) 
  29669.  
  29670.      Determine all the languages used by the current country.  "Desc" must be 
  29671.      already set.  The result is returned in priority order (highest priority 
  29672.      first) in vecString &Languages.  LCP: CountryLanguages 
  29673.      bool getLanguageList(vecString &Languages) 
  29674.  
  29675.      Get a list of all possible languages, in alphabetical order, returned in 
  29676.      vecString &Languages.  LCP: CountryLangList 
  29677.      bool getLanguageListEngNat(mapString &Languages) 
  29678.  
  29679.      Get a map of all possible languages, their native description in 
  29680.      alphabetical order by english description, returned in in vecString 
  29681.      &Languages.  LCP: CountryLangListEngNat 
  29682.  
  29683.   Delete a country 
  29684.      bool deleteFromDesc() 
  29685.  
  29686.      Delete the country that uses the currently set description.  LCP: 
  29687.      CountryDelete 
  29688.  
  29689.   Set data members 
  29690.      bool setAll(mapString &FieldValues) 
  29691.  
  29692.      Sets all the data members of a topic using the mapString which is passed 
  29693.      to it.  Only the fields present in the mapString are updated, the other 
  29694.      fields are untouched.  LCP: CountryUpdate 
  29695.      bool setDesc(const string &DescSetting) 
  29696.  
  29697.      Set the short description 
  29698.      bool setDescLong(const string &DescLongSetting) 
  29699.  
  29700.      Set the long description 
  29701.      bool setDescNative(const string &DescNativeSetting) 
  29702.  
  29703.      Set the native language description 
  29704.      bool setNetCode(const string &NetCodeSetting) 
  29705.  
  29706.      Set the internet code for this country 
  29707.      bool erase() 
  29708.  
  29709.      Sets all the data members to empty 
  29710.  
  29711.   Get data members 
  29712.      bool getAll(mapString &FieldValues) 
  29713.  
  29714.      Return a mapString of all the data members of this topic. The key is the 
  29715.      variable name.  LCP: CountryAttribs 
  29716.      string getDesc() 
  29717.  
  29718.      Get the short description 
  29719.      string getDescLong() 
  29720.  
  29721.      Get the long description 
  29722.      string getDescNative() 
  29723.  
  29724.      Get the native language description 
  29725.      string getNetCode() 
  29726.  
  29727.      Get the internet code for this country 
  29728.  
  29729.  
  29730. ΓòÉΓòÉΓòÉ <hidden> undef ΓòÉΓòÉΓòÉ
  29731.  
  29732.  
  29733. lyris_Country Class 
  29734.  
  29735.      class lyris_Country 
  29736.  
  29737.      For determining what countries exist, and what languages are spoken & 
  29738.      preferred in each country 
  29739.  
  29740.      Defined in: COUNTRY.H 
  29741.  
  29742.   Create a new country 
  29743.  
  29744.       bool createNew() 
  29745.  
  29746.      Creates a new country/language table row.  LCP: CountryCreate 
  29747.      bool updateDatabase() 
  29748.  
  29749.      Save the current country with the data members that have changed.  LCP: 
  29750.      CountryUpdate 
  29751.      bool VerifyFields() 
  29752.  
  29753.      Verify that all required fields are filled in. 
  29754.  
  29755.   Retrieve data from the database 
  29756.      bool fetchAllCountries(vecString &AllCountries) 
  29757.  
  29758.      Fetch a list of all countries.  LCP: CountryAll 
  29759.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29760.  
  29761.      Fetch a paired list of countries and their native language descriptions, 
  29762.      sorted by english description.  LCP: CountryEngNat 
  29763.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29764.  
  29765.      Fetch a paired list of native language country descriptions, and the 
  29766.      english name of the country. 
  29767.      bool retrieveFromNetCode() 
  29768.  
  29769.      Determine the country that uses the currently set NetCode.  Fills all the 
  29770.      other country attributes with values. LCP: CountryAttNetCode 
  29771.      bool retrieveFromDesc() 
  29772.  
  29773.      Determine the country that uses the currently set description.  Fills all 
  29774.      the other country attributes with values.  LCP: CountryAttribs 
  29775.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29776.  
  29777.      Determine the primary language of the current country.  "Desc" must be 
  29778.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29779.      CountryPrimLang 
  29780.      bool getAllLanguages(vecString &Languages) 
  29781.  
  29782.      Determine all the languages used by the current country.  "Desc" must be 
  29783.      already set.  The result is returned in priority order (highest priority 
  29784.      first) in vecString &Languages.  LCP: CountryLanguages 
  29785.      bool getLanguageList(vecString &Languages) 
  29786.  
  29787.      Get a list of all possible languages, in alphabetical order, returned in 
  29788.      vecString &Languages.  LCP: CountryLangList 
  29789.      bool getLanguageListEngNat(mapString &Languages) 
  29790.  
  29791.      Get a map of all possible languages, their native description in 
  29792.      alphabetical order by english description, returned in in vecString 
  29793.      &Languages.  LCP: CountryLangListEngNat 
  29794.  
  29795.   Delete a country 
  29796.      bool deleteFromDesc() 
  29797.  
  29798.      Delete the country that uses the currently set description.  LCP: 
  29799.      CountryDelete 
  29800.  
  29801.   Set data members 
  29802.      bool setAll(mapString &FieldValues) 
  29803.  
  29804.      Sets all the data members of a topic using the mapString which is passed 
  29805.      to it.  Only the fields present in the mapString are updated, the other 
  29806.      fields are untouched.  LCP: CountryUpdate 
  29807.      bool setDesc(const string &DescSetting) 
  29808.  
  29809.      Set the short description 
  29810.      bool setDescLong(const string &DescLongSetting) 
  29811.  
  29812.      Set the long description 
  29813.      bool setDescNative(const string &DescNativeSetting) 
  29814.  
  29815.      Set the native language description 
  29816.      bool setNetCode(const string &NetCodeSetting) 
  29817.  
  29818.      Set the internet code for this country 
  29819.      bool erase() 
  29820.  
  29821.      Sets all the data members to empty 
  29822.  
  29823.   Get data members 
  29824.      bool getAll(mapString &FieldValues) 
  29825.  
  29826.      Return a mapString of all the data members of this topic. The key is the 
  29827.      variable name.  LCP: CountryAttribs 
  29828.      string getDesc() 
  29829.  
  29830.      Get the short description 
  29831.      string getDescLong() 
  29832.  
  29833.      Get the long description 
  29834.      string getDescNative() 
  29835.  
  29836.      Get the native language description 
  29837.      string getNetCode() 
  29838.  
  29839.      Get the internet code for this country 
  29840.  
  29841.  
  29842. ΓòÉΓòÉΓòÉ <hidden> Variable manipulation ΓòÉΓòÉΓòÉ
  29843.  
  29844.  
  29845. lyris_Country Class 
  29846.  
  29847.      class lyris_Country 
  29848.  
  29849.      For determining what countries exist, and what languages are spoken & 
  29850.      preferred in each country 
  29851.  
  29852.      Defined in: COUNTRY.H 
  29853.  
  29854.   Create a new country 
  29855.  
  29856.       bool createNew() 
  29857.  
  29858.      Creates a new country/language table row.  LCP: CountryCreate 
  29859.      bool updateDatabase() 
  29860.  
  29861.      Save the current country with the data members that have changed.  LCP: 
  29862.      CountryUpdate 
  29863.      bool VerifyFields() 
  29864.  
  29865.      Verify that all required fields are filled in. 
  29866.  
  29867.   Retrieve data from the database 
  29868.      bool fetchAllCountries(vecString &AllCountries) 
  29869.  
  29870.      Fetch a list of all countries.  LCP: CountryAll 
  29871.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29872.  
  29873.      Fetch a paired list of countries and their native language descriptions, 
  29874.      sorted by english description.  LCP: CountryEngNat 
  29875.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29876.  
  29877.      Fetch a paired list of native language country descriptions, and the 
  29878.      english name of the country. 
  29879.      bool retrieveFromNetCode() 
  29880.  
  29881.      Determine the country that uses the currently set NetCode.  Fills all the 
  29882.      other country attributes with values. LCP: CountryAttNetCode 
  29883.      bool retrieveFromDesc() 
  29884.  
  29885.      Determine the country that uses the currently set description.  Fills all 
  29886.      the other country attributes with values.  LCP: CountryAttribs 
  29887.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  29888.  
  29889.      Determine the primary language of the current country.  "Desc" must be 
  29890.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  29891.      CountryPrimLang 
  29892.      bool getAllLanguages(vecString &Languages) 
  29893.  
  29894.      Determine all the languages used by the current country.  "Desc" must be 
  29895.      already set.  The result is returned in priority order (highest priority 
  29896.      first) in vecString &Languages.  LCP: CountryLanguages 
  29897.      bool getLanguageList(vecString &Languages) 
  29898.  
  29899.      Get a list of all possible languages, in alphabetical order, returned in 
  29900.      vecString &Languages.  LCP: CountryLangList 
  29901.      bool getLanguageListEngNat(mapString &Languages) 
  29902.  
  29903.      Get a map of all possible languages, their native description in 
  29904.      alphabetical order by english description, returned in in vecString 
  29905.      &Languages.  LCP: CountryLangListEngNat 
  29906.  
  29907.   Delete a country 
  29908.      bool deleteFromDesc() 
  29909.  
  29910.      Delete the country that uses the currently set description.  LCP: 
  29911.      CountryDelete 
  29912.  
  29913.   Set data members 
  29914.      bool setAll(mapString &FieldValues) 
  29915.  
  29916.      Sets all the data members of a topic using the mapString which is passed 
  29917.      to it.  Only the fields present in the mapString are updated, the other 
  29918.      fields are untouched.  LCP: CountryUpdate 
  29919.      bool setDesc(const string &DescSetting) 
  29920.  
  29921.      Set the short description 
  29922.      bool setDescLong(const string &DescLongSetting) 
  29923.  
  29924.      Set the long description 
  29925.      bool setDescNative(const string &DescNativeSetting) 
  29926.  
  29927.      Set the native language description 
  29928.      bool setNetCode(const string &NetCodeSetting) 
  29929.  
  29930.      Set the internet code for this country 
  29931.      bool erase() 
  29932.  
  29933.      Sets all the data members to empty 
  29934.  
  29935.   Get data members 
  29936.      bool getAll(mapString &FieldValues) 
  29937.  
  29938.      Return a mapString of all the data members of this topic. The key is the 
  29939.      variable name.  LCP: CountryAttribs 
  29940.      string getDesc() 
  29941.  
  29942.      Get the short description 
  29943.      string getDescLong() 
  29944.  
  29945.      Get the long description 
  29946.      string getDescNative() 
  29947.  
  29948.      Get the native language description 
  29949.      string getNetCode() 
  29950.  
  29951.      Get the internet code for this country 
  29952.  
  29953.  
  29954. ΓòÉΓòÉΓòÉ <hidden> Variable substitution ΓòÉΓòÉΓòÉ
  29955.  
  29956.  
  29957. lyris_Country Class 
  29958.  
  29959.      class lyris_Country 
  29960.  
  29961.      For determining what countries exist, and what languages are spoken & 
  29962.      preferred in each country 
  29963.  
  29964.      Defined in: COUNTRY.H 
  29965.  
  29966.   Create a new country 
  29967.  
  29968.       bool createNew() 
  29969.  
  29970.      Creates a new country/language table row.  LCP: CountryCreate 
  29971.      bool updateDatabase() 
  29972.  
  29973.      Save the current country with the data members that have changed.  LCP: 
  29974.      CountryUpdate 
  29975.      bool VerifyFields() 
  29976.  
  29977.      Verify that all required fields are filled in. 
  29978.  
  29979.   Retrieve data from the database 
  29980.      bool fetchAllCountries(vecString &AllCountries) 
  29981.  
  29982.      Fetch a list of all countries.  LCP: CountryAll 
  29983.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  29984.  
  29985.      Fetch a paired list of countries and their native language descriptions, 
  29986.      sorted by english description.  LCP: CountryEngNat 
  29987.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  29988.  
  29989.      Fetch a paired list of native language country descriptions, and the 
  29990.      english name of the country. 
  29991.      bool retrieveFromNetCode() 
  29992.  
  29993.      Determine the country that uses the currently set NetCode.  Fills all the 
  29994.      other country attributes with values. LCP: CountryAttNetCode 
  29995.      bool retrieveFromDesc() 
  29996.  
  29997.      Determine the country that uses the currently set description.  Fills all 
  29998.      the other country attributes with values.  LCP: CountryAttribs 
  29999.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30000.  
  30001.      Determine the primary language of the current country.  "Desc" must be 
  30002.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30003.      CountryPrimLang 
  30004.      bool getAllLanguages(vecString &Languages) 
  30005.  
  30006.      Determine all the languages used by the current country.  "Desc" must be 
  30007.      already set.  The result is returned in priority order (highest priority 
  30008.      first) in vecString &Languages.  LCP: CountryLanguages 
  30009.      bool getLanguageList(vecString &Languages) 
  30010.  
  30011.      Get a list of all possible languages, in alphabetical order, returned in 
  30012.      vecString &Languages.  LCP: CountryLangList 
  30013.      bool getLanguageListEngNat(mapString &Languages) 
  30014.  
  30015.      Get a map of all possible languages, their native description in 
  30016.      alphabetical order by english description, returned in in vecString 
  30017.      &Languages.  LCP: CountryLangListEngNat 
  30018.  
  30019.   Delete a country 
  30020.      bool deleteFromDesc() 
  30021.  
  30022.      Delete the country that uses the currently set description.  LCP: 
  30023.      CountryDelete 
  30024.  
  30025.   Set data members 
  30026.      bool setAll(mapString &FieldValues) 
  30027.  
  30028.      Sets all the data members of a topic using the mapString which is passed 
  30029.      to it.  Only the fields present in the mapString are updated, the other 
  30030.      fields are untouched.  LCP: CountryUpdate 
  30031.      bool setDesc(const string &DescSetting) 
  30032.  
  30033.      Set the short description 
  30034.      bool setDescLong(const string &DescLongSetting) 
  30035.  
  30036.      Set the long description 
  30037.      bool setDescNative(const string &DescNativeSetting) 
  30038.  
  30039.      Set the native language description 
  30040.      bool setNetCode(const string &NetCodeSetting) 
  30041.  
  30042.      Set the internet code for this country 
  30043.      bool erase() 
  30044.  
  30045.      Sets all the data members to empty 
  30046.  
  30047.   Get data members 
  30048.      bool getAll(mapString &FieldValues) 
  30049.  
  30050.      Return a mapString of all the data members of this topic. The key is the 
  30051.      variable name.  LCP: CountryAttribs 
  30052.      string getDesc() 
  30053.  
  30054.      Get the short description 
  30055.      string getDescLong() 
  30056.  
  30057.      Get the long description 
  30058.      string getDescNative() 
  30059.  
  30060.      Get the native language description 
  30061.      string getNetCode() 
  30062.  
  30063.      Get the internet code for this country 
  30064.  
  30065.  
  30066. ΓòÉΓòÉΓòÉ <hidden>     bools.h ΓòÉΓòÉΓòÉ
  30067.  
  30068.  
  30069. lyris_Country Class 
  30070.  
  30071.      class lyris_Country 
  30072.  
  30073.      For determining what countries exist, and what languages are spoken & 
  30074.      preferred in each country 
  30075.  
  30076.      Defined in: COUNTRY.H 
  30077.  
  30078.   Create a new country 
  30079.  
  30080.       bool createNew() 
  30081.  
  30082.      Creates a new country/language table row.  LCP: CountryCreate 
  30083.      bool updateDatabase() 
  30084.  
  30085.      Save the current country with the data members that have changed.  LCP: 
  30086.      CountryUpdate 
  30087.      bool VerifyFields() 
  30088.  
  30089.      Verify that all required fields are filled in. 
  30090.  
  30091.   Retrieve data from the database 
  30092.      bool fetchAllCountries(vecString &AllCountries) 
  30093.  
  30094.      Fetch a list of all countries.  LCP: CountryAll 
  30095.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30096.  
  30097.      Fetch a paired list of countries and their native language descriptions, 
  30098.      sorted by english description.  LCP: CountryEngNat 
  30099.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30100.  
  30101.      Fetch a paired list of native language country descriptions, and the 
  30102.      english name of the country. 
  30103.      bool retrieveFromNetCode() 
  30104.  
  30105.      Determine the country that uses the currently set NetCode.  Fills all the 
  30106.      other country attributes with values. LCP: CountryAttNetCode 
  30107.      bool retrieveFromDesc() 
  30108.  
  30109.      Determine the country that uses the currently set description.  Fills all 
  30110.      the other country attributes with values.  LCP: CountryAttribs 
  30111.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30112.  
  30113.      Determine the primary language of the current country.  "Desc" must be 
  30114.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30115.      CountryPrimLang 
  30116.      bool getAllLanguages(vecString &Languages) 
  30117.  
  30118.      Determine all the languages used by the current country.  "Desc" must be 
  30119.      already set.  The result is returned in priority order (highest priority 
  30120.      first) in vecString &Languages.  LCP: CountryLanguages 
  30121.      bool getLanguageList(vecString &Languages) 
  30122.  
  30123.      Get a list of all possible languages, in alphabetical order, returned in 
  30124.      vecString &Languages.  LCP: CountryLangList 
  30125.      bool getLanguageListEngNat(mapString &Languages) 
  30126.  
  30127.      Get a map of all possible languages, their native description in 
  30128.      alphabetical order by english description, returned in in vecString 
  30129.      &Languages.  LCP: CountryLangListEngNat 
  30130.  
  30131.   Delete a country 
  30132.      bool deleteFromDesc() 
  30133.  
  30134.      Delete the country that uses the currently set description.  LCP: 
  30135.      CountryDelete 
  30136.  
  30137.   Set data members 
  30138.      bool setAll(mapString &FieldValues) 
  30139.  
  30140.      Sets all the data members of a topic using the mapString which is passed 
  30141.      to it.  Only the fields present in the mapString are updated, the other 
  30142.      fields are untouched.  LCP: CountryUpdate 
  30143.      bool setDesc(const string &DescSetting) 
  30144.  
  30145.      Set the short description 
  30146.      bool setDescLong(const string &DescLongSetting) 
  30147.  
  30148.      Set the long description 
  30149.      bool setDescNative(const string &DescNativeSetting) 
  30150.  
  30151.      Set the native language description 
  30152.      bool setNetCode(const string &NetCodeSetting) 
  30153.  
  30154.      Set the internet code for this country 
  30155.      bool erase() 
  30156.  
  30157.      Sets all the data members to empty 
  30158.  
  30159.   Get data members 
  30160.      bool getAll(mapString &FieldValues) 
  30161.  
  30162.      Return a mapString of all the data members of this topic. The key is the 
  30163.      variable name.  LCP: CountryAttribs 
  30164.      string getDesc() 
  30165.  
  30166.      Get the short description 
  30167.      string getDescLong() 
  30168.  
  30169.      Get the long description 
  30170.      string getDescNative() 
  30171.  
  30172.      Get the native language description 
  30173.      string getNetCode() 
  30174.  
  30175.      Get the internet code for this country 
  30176.  
  30177.  
  30178. ΓòÉΓòÉΓòÉ <hidden> 
  30179. config.h ΓòÉΓòÉΓòÉ
  30180.  
  30181.  
  30182. lyris_Country Class 
  30183.  
  30184.      class lyris_Country 
  30185.  
  30186.      For determining what countries exist, and what languages are spoken & 
  30187.      preferred in each country 
  30188.  
  30189.      Defined in: COUNTRY.H 
  30190.  
  30191.   Create a new country 
  30192.  
  30193.       bool createNew() 
  30194.  
  30195.      Creates a new country/language table row.  LCP: CountryCreate 
  30196.      bool updateDatabase() 
  30197.  
  30198.      Save the current country with the data members that have changed.  LCP: 
  30199.      CountryUpdate 
  30200.      bool VerifyFields() 
  30201.  
  30202.      Verify that all required fields are filled in. 
  30203.  
  30204.   Retrieve data from the database 
  30205.      bool fetchAllCountries(vecString &AllCountries) 
  30206.  
  30207.      Fetch a list of all countries.  LCP: CountryAll 
  30208.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30209.  
  30210.      Fetch a paired list of countries and their native language descriptions, 
  30211.      sorted by english description.  LCP: CountryEngNat 
  30212.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30213.  
  30214.      Fetch a paired list of native language country descriptions, and the 
  30215.      english name of the country. 
  30216.      bool retrieveFromNetCode() 
  30217.  
  30218.      Determine the country that uses the currently set NetCode.  Fills all the 
  30219.      other country attributes with values. LCP: CountryAttNetCode 
  30220.      bool retrieveFromDesc() 
  30221.  
  30222.      Determine the country that uses the currently set description.  Fills all 
  30223.      the other country attributes with values.  LCP: CountryAttribs 
  30224.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30225.  
  30226.      Determine the primary language of the current country.  "Desc" must be 
  30227.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30228.      CountryPrimLang 
  30229.      bool getAllLanguages(vecString &Languages) 
  30230.  
  30231.      Determine all the languages used by the current country.  "Desc" must be 
  30232.      already set.  The result is returned in priority order (highest priority 
  30233.      first) in vecString &Languages.  LCP: CountryLanguages 
  30234.      bool getLanguageList(vecString &Languages) 
  30235.  
  30236.      Get a list of all possible languages, in alphabetical order, returned in 
  30237.      vecString &Languages.  LCP: CountryLangList 
  30238.      bool getLanguageListEngNat(mapString &Languages) 
  30239.  
  30240.      Get a map of all possible languages, their native description in 
  30241.      alphabetical order by english description, returned in in vecString 
  30242.      &Languages.  LCP: CountryLangListEngNat 
  30243.  
  30244.   Delete a country 
  30245.      bool deleteFromDesc() 
  30246.  
  30247.      Delete the country that uses the currently set description.  LCP: 
  30248.      CountryDelete 
  30249.  
  30250.   Set data members 
  30251.      bool setAll(mapString &FieldValues) 
  30252.  
  30253.      Sets all the data members of a topic using the mapString which is passed 
  30254.      to it.  Only the fields present in the mapString are updated, the other 
  30255.      fields are untouched.  LCP: CountryUpdate 
  30256.      bool setDesc(const string &DescSetting) 
  30257.  
  30258.      Set the short description 
  30259.      bool setDescLong(const string &DescLongSetting) 
  30260.  
  30261.      Set the long description 
  30262.      bool setDescNative(const string &DescNativeSetting) 
  30263.  
  30264.      Set the native language description 
  30265.      bool setNetCode(const string &NetCodeSetting) 
  30266.  
  30267.      Set the internet code for this country 
  30268.      bool erase() 
  30269.  
  30270.      Sets all the data members to empty 
  30271.  
  30272.   Get data members 
  30273.      bool getAll(mapString &FieldValues) 
  30274.  
  30275.      Return a mapString of all the data members of this topic. The key is the 
  30276.      variable name.  LCP: CountryAttribs 
  30277.      string getDesc() 
  30278.  
  30279.      Get the short description 
  30280.      string getDescLong() 
  30281.  
  30282.      Get the long description 
  30283.      string getDescNative() 
  30284.  
  30285.      Get the native language description 
  30286.      string getNetCode() 
  30287.  
  30288.      Get the internet code for this country 
  30289.  
  30290.  
  30291. ΓòÉΓòÉΓòÉ <hidden>  ctable.h ΓòÉΓòÉΓòÉ
  30292.  
  30293.  
  30294. lyris_Country Class 
  30295.  
  30296.      class lyris_Country 
  30297.  
  30298.      For determining what countries exist, and what languages are spoken & 
  30299.      preferred in each country 
  30300.  
  30301.      Defined in: COUNTRY.H 
  30302.  
  30303.   Create a new country 
  30304.  
  30305.       bool createNew() 
  30306.  
  30307.      Creates a new country/language table row.  LCP: CountryCreate 
  30308.      bool updateDatabase() 
  30309.  
  30310.      Save the current country with the data members that have changed.  LCP: 
  30311.      CountryUpdate 
  30312.      bool VerifyFields() 
  30313.  
  30314.      Verify that all required fields are filled in. 
  30315.  
  30316.   Retrieve data from the database 
  30317.      bool fetchAllCountries(vecString &AllCountries) 
  30318.  
  30319.      Fetch a list of all countries.  LCP: CountryAll 
  30320.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30321.  
  30322.      Fetch a paired list of countries and their native language descriptions, 
  30323.      sorted by english description.  LCP: CountryEngNat 
  30324.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30325.  
  30326.      Fetch a paired list of native language country descriptions, and the 
  30327.      english name of the country. 
  30328.      bool retrieveFromNetCode() 
  30329.  
  30330.      Determine the country that uses the currently set NetCode.  Fills all the 
  30331.      other country attributes with values. LCP: CountryAttNetCode 
  30332.      bool retrieveFromDesc() 
  30333.  
  30334.      Determine the country that uses the currently set description.  Fills all 
  30335.      the other country attributes with values.  LCP: CountryAttribs 
  30336.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30337.  
  30338.      Determine the primary language of the current country.  "Desc" must be 
  30339.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30340.      CountryPrimLang 
  30341.      bool getAllLanguages(vecString &Languages) 
  30342.  
  30343.      Determine all the languages used by the current country.  "Desc" must be 
  30344.      already set.  The result is returned in priority order (highest priority 
  30345.      first) in vecString &Languages.  LCP: CountryLanguages 
  30346.      bool getLanguageList(vecString &Languages) 
  30347.  
  30348.      Get a list of all possible languages, in alphabetical order, returned in 
  30349.      vecString &Languages.  LCP: CountryLangList 
  30350.      bool getLanguageListEngNat(mapString &Languages) 
  30351.  
  30352.      Get a map of all possible languages, their native description in 
  30353.      alphabetical order by english description, returned in in vecString 
  30354.      &Languages.  LCP: CountryLangListEngNat 
  30355.  
  30356.   Delete a country 
  30357.      bool deleteFromDesc() 
  30358.  
  30359.      Delete the country that uses the currently set description.  LCP: 
  30360.      CountryDelete 
  30361.  
  30362.   Set data members 
  30363.      bool setAll(mapString &FieldValues) 
  30364.  
  30365.      Sets all the data members of a topic using the mapString which is passed 
  30366.      to it.  Only the fields present in the mapString are updated, the other 
  30367.      fields are untouched.  LCP: CountryUpdate 
  30368.      bool setDesc(const string &DescSetting) 
  30369.  
  30370.      Set the short description 
  30371.      bool setDescLong(const string &DescLongSetting) 
  30372.  
  30373.      Set the long description 
  30374.      bool setDescNative(const string &DescNativeSetting) 
  30375.  
  30376.      Set the native language description 
  30377.      bool setNetCode(const string &NetCodeSetting) 
  30378.  
  30379.      Set the internet code for this country 
  30380.      bool erase() 
  30381.  
  30382.      Sets all the data members to empty 
  30383.  
  30384.   Get data members 
  30385.      bool getAll(mapString &FieldValues) 
  30386.  
  30387.      Return a mapString of all the data members of this topic. The key is the 
  30388.      variable name.  LCP: CountryAttribs 
  30389.      string getDesc() 
  30390.  
  30391.      Get the short description 
  30392.      string getDescLong() 
  30393.  
  30394.      Get the long description 
  30395.      string getDescNative() 
  30396.  
  30397.      Get the native language description 
  30398.      string getNetCode() 
  30399.  
  30400.      Get the internet code for this country 
  30401.  
  30402.  
  30403. ΓòÉΓòÉΓòÉ <hidden>  data_dep.h ΓòÉΓòÉΓòÉ
  30404.  
  30405.  
  30406. lyris_Country Class 
  30407.  
  30408.      class lyris_Country 
  30409.  
  30410.      For determining what countries exist, and what languages are spoken & 
  30411.      preferred in each country 
  30412.  
  30413.      Defined in: COUNTRY.H 
  30414.  
  30415.   Create a new country 
  30416.  
  30417.       bool createNew() 
  30418.  
  30419.      Creates a new country/language table row.  LCP: CountryCreate 
  30420.      bool updateDatabase() 
  30421.  
  30422.      Save the current country with the data members that have changed.  LCP: 
  30423.      CountryUpdate 
  30424.      bool VerifyFields() 
  30425.  
  30426.      Verify that all required fields are filled in. 
  30427.  
  30428.   Retrieve data from the database 
  30429.      bool fetchAllCountries(vecString &AllCountries) 
  30430.  
  30431.      Fetch a list of all countries.  LCP: CountryAll 
  30432.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30433.  
  30434.      Fetch a paired list of countries and their native language descriptions, 
  30435.      sorted by english description.  LCP: CountryEngNat 
  30436.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30437.  
  30438.      Fetch a paired list of native language country descriptions, and the 
  30439.      english name of the country. 
  30440.      bool retrieveFromNetCode() 
  30441.  
  30442.      Determine the country that uses the currently set NetCode.  Fills all the 
  30443.      other country attributes with values. LCP: CountryAttNetCode 
  30444.      bool retrieveFromDesc() 
  30445.  
  30446.      Determine the country that uses the currently set description.  Fills all 
  30447.      the other country attributes with values.  LCP: CountryAttribs 
  30448.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30449.  
  30450.      Determine the primary language of the current country.  "Desc" must be 
  30451.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30452.      CountryPrimLang 
  30453.      bool getAllLanguages(vecString &Languages) 
  30454.  
  30455.      Determine all the languages used by the current country.  "Desc" must be 
  30456.      already set.  The result is returned in priority order (highest priority 
  30457.      first) in vecString &Languages.  LCP: CountryLanguages 
  30458.      bool getLanguageList(vecString &Languages) 
  30459.  
  30460.      Get a list of all possible languages, in alphabetical order, returned in 
  30461.      vecString &Languages.  LCP: CountryLangList 
  30462.      bool getLanguageListEngNat(mapString &Languages) 
  30463.  
  30464.      Get a map of all possible languages, their native description in 
  30465.      alphabetical order by english description, returned in in vecString 
  30466.      &Languages.  LCP: CountryLangListEngNat 
  30467.  
  30468.   Delete a country 
  30469.      bool deleteFromDesc() 
  30470.  
  30471.      Delete the country that uses the currently set description.  LCP: 
  30472.      CountryDelete 
  30473.  
  30474.   Set data members 
  30475.      bool setAll(mapString &FieldValues) 
  30476.  
  30477.      Sets all the data members of a topic using the mapString which is passed 
  30478.      to it.  Only the fields present in the mapString are updated, the other 
  30479.      fields are untouched.  LCP: CountryUpdate 
  30480.      bool setDesc(const string &DescSetting) 
  30481.  
  30482.      Set the short description 
  30483.      bool setDescLong(const string &DescLongSetting) 
  30484.  
  30485.      Set the long description 
  30486.      bool setDescNative(const string &DescNativeSetting) 
  30487.  
  30488.      Set the native language description 
  30489.      bool setNetCode(const string &NetCodeSetting) 
  30490.  
  30491.      Set the internet code for this country 
  30492.      bool erase() 
  30493.  
  30494.      Sets all the data members to empty 
  30495.  
  30496.   Get data members 
  30497.      bool getAll(mapString &FieldValues) 
  30498.  
  30499.      Return a mapString of all the data members of this topic. The key is the 
  30500.      variable name.  LCP: CountryAttribs 
  30501.      string getDesc() 
  30502.  
  30503.      Get the short description 
  30504.      string getDescLong() 
  30505.  
  30506.      Get the long description 
  30507.      string getDescNative() 
  30508.  
  30509.      Get the native language description 
  30510.      string getNetCode() 
  30511.  
  30512.      Get the internet code for this country 
  30513.  
  30514.  
  30515. ΓòÉΓòÉΓòÉ <hidden> doctypes.h ΓòÉΓòÉΓòÉ
  30516.  
  30517.  
  30518. lyris_Country Class 
  30519.  
  30520.      class lyris_Country 
  30521.  
  30522.      For determining what countries exist, and what languages are spoken & 
  30523.      preferred in each country 
  30524.  
  30525.      Defined in: COUNTRY.H 
  30526.  
  30527.   Create a new country 
  30528.  
  30529.       bool createNew() 
  30530.  
  30531.      Creates a new country/language table row.  LCP: CountryCreate 
  30532.      bool updateDatabase() 
  30533.  
  30534.      Save the current country with the data members that have changed.  LCP: 
  30535.      CountryUpdate 
  30536.      bool VerifyFields() 
  30537.  
  30538.      Verify that all required fields are filled in. 
  30539.  
  30540.   Retrieve data from the database 
  30541.      bool fetchAllCountries(vecString &AllCountries) 
  30542.  
  30543.      Fetch a list of all countries.  LCP: CountryAll 
  30544.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30545.  
  30546.      Fetch a paired list of countries and their native language descriptions, 
  30547.      sorted by english description.  LCP: CountryEngNat 
  30548.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30549.  
  30550.      Fetch a paired list of native language country descriptions, and the 
  30551.      english name of the country. 
  30552.      bool retrieveFromNetCode() 
  30553.  
  30554.      Determine the country that uses the currently set NetCode.  Fills all the 
  30555.      other country attributes with values. LCP: CountryAttNetCode 
  30556.      bool retrieveFromDesc() 
  30557.  
  30558.      Determine the country that uses the currently set description.  Fills all 
  30559.      the other country attributes with values.  LCP: CountryAttribs 
  30560.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30561.  
  30562.      Determine the primary language of the current country.  "Desc" must be 
  30563.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30564.      CountryPrimLang 
  30565.      bool getAllLanguages(vecString &Languages) 
  30566.  
  30567.      Determine all the languages used by the current country.  "Desc" must be 
  30568.      already set.  The result is returned in priority order (highest priority 
  30569.      first) in vecString &Languages.  LCP: CountryLanguages 
  30570.      bool getLanguageList(vecString &Languages) 
  30571.  
  30572.      Get a list of all possible languages, in alphabetical order, returned in 
  30573.      vecString &Languages.  LCP: CountryLangList 
  30574.      bool getLanguageListEngNat(mapString &Languages) 
  30575.  
  30576.      Get a map of all possible languages, their native description in 
  30577.      alphabetical order by english description, returned in in vecString 
  30578.      &Languages.  LCP: CountryLangListEngNat 
  30579.  
  30580.   Delete a country 
  30581.      bool deleteFromDesc() 
  30582.  
  30583.      Delete the country that uses the currently set description.  LCP: 
  30584.      CountryDelete 
  30585.  
  30586.   Set data members 
  30587.      bool setAll(mapString &FieldValues) 
  30588.  
  30589.      Sets all the data members of a topic using the mapString which is passed 
  30590.      to it.  Only the fields present in the mapString are updated, the other 
  30591.      fields are untouched.  LCP: CountryUpdate 
  30592.      bool setDesc(const string &DescSetting) 
  30593.  
  30594.      Set the short description 
  30595.      bool setDescLong(const string &DescLongSetting) 
  30596.  
  30597.      Set the long description 
  30598.      bool setDescNative(const string &DescNativeSetting) 
  30599.  
  30600.      Set the native language description 
  30601.      bool setNetCode(const string &NetCodeSetting) 
  30602.  
  30603.      Set the internet code for this country 
  30604.      bool erase() 
  30605.  
  30606.      Sets all the data members to empty 
  30607.  
  30608.   Get data members 
  30609.      bool getAll(mapString &FieldValues) 
  30610.  
  30611.      Return a mapString of all the data members of this topic. The key is the 
  30612.      variable name.  LCP: CountryAttribs 
  30613.      string getDesc() 
  30614.  
  30615.      Get the short description 
  30616.      string getDescLong() 
  30617.  
  30618.      Get the long description 
  30619.      string getDescNative() 
  30620.  
  30621.      Get the native language description 
  30622.      string getNetCode() 
  30623.  
  30624.      Get the internet code for this country 
  30625.  
  30626.  
  30627. ΓòÉΓòÉΓòÉ <hidden> filetype.h ΓòÉΓòÉΓòÉ
  30628.  
  30629.  
  30630. lyris_Country Class 
  30631.  
  30632.      class lyris_Country 
  30633.  
  30634.      For determining what countries exist, and what languages are spoken & 
  30635.      preferred in each country 
  30636.  
  30637.      Defined in: COUNTRY.H 
  30638.  
  30639.   Create a new country 
  30640.  
  30641.       bool createNew() 
  30642.  
  30643.      Creates a new country/language table row.  LCP: CountryCreate 
  30644.      bool updateDatabase() 
  30645.  
  30646.      Save the current country with the data members that have changed.  LCP: 
  30647.      CountryUpdate 
  30648.      bool VerifyFields() 
  30649.  
  30650.      Verify that all required fields are filled in. 
  30651.  
  30652.   Retrieve data from the database 
  30653.      bool fetchAllCountries(vecString &AllCountries) 
  30654.  
  30655.      Fetch a list of all countries.  LCP: CountryAll 
  30656.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30657.  
  30658.      Fetch a paired list of countries and their native language descriptions, 
  30659.      sorted by english description.  LCP: CountryEngNat 
  30660.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30661.  
  30662.      Fetch a paired list of native language country descriptions, and the 
  30663.      english name of the country. 
  30664.      bool retrieveFromNetCode() 
  30665.  
  30666.      Determine the country that uses the currently set NetCode.  Fills all the 
  30667.      other country attributes with values. LCP: CountryAttNetCode 
  30668.      bool retrieveFromDesc() 
  30669.  
  30670.      Determine the country that uses the currently set description.  Fills all 
  30671.      the other country attributes with values.  LCP: CountryAttribs 
  30672.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30673.  
  30674.      Determine the primary language of the current country.  "Desc" must be 
  30675.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30676.      CountryPrimLang 
  30677.      bool getAllLanguages(vecString &Languages) 
  30678.  
  30679.      Determine all the languages used by the current country.  "Desc" must be 
  30680.      already set.  The result is returned in priority order (highest priority 
  30681.      first) in vecString &Languages.  LCP: CountryLanguages 
  30682.      bool getLanguageList(vecString &Languages) 
  30683.  
  30684.      Get a list of all possible languages, in alphabetical order, returned in 
  30685.      vecString &Languages.  LCP: CountryLangList 
  30686.      bool getLanguageListEngNat(mapString &Languages) 
  30687.  
  30688.      Get a map of all possible languages, their native description in 
  30689.      alphabetical order by english description, returned in in vecString 
  30690.      &Languages.  LCP: CountryLangListEngNat 
  30691.  
  30692.   Delete a country 
  30693.      bool deleteFromDesc() 
  30694.  
  30695.      Delete the country that uses the currently set description.  LCP: 
  30696.      CountryDelete 
  30697.  
  30698.   Set data members 
  30699.      bool setAll(mapString &FieldValues) 
  30700.  
  30701.      Sets all the data members of a topic using the mapString which is passed 
  30702.      to it.  Only the fields present in the mapString are updated, the other 
  30703.      fields are untouched.  LCP: CountryUpdate 
  30704.      bool setDesc(const string &DescSetting) 
  30705.  
  30706.      Set the short description 
  30707.      bool setDescLong(const string &DescLongSetting) 
  30708.  
  30709.      Set the long description 
  30710.      bool setDescNative(const string &DescNativeSetting) 
  30711.  
  30712.      Set the native language description 
  30713.      bool setNetCode(const string &NetCodeSetting) 
  30714.  
  30715.      Set the internet code for this country 
  30716.      bool erase() 
  30717.  
  30718.      Sets all the data members to empty 
  30719.  
  30720.   Get data members 
  30721.      bool getAll(mapString &FieldValues) 
  30722.  
  30723.      Return a mapString of all the data members of this topic. The key is the 
  30724.      variable name.  LCP: CountryAttribs 
  30725.      string getDesc() 
  30726.  
  30727.      Get the short description 
  30728.      string getDescLong() 
  30729.  
  30730.      Get the long description 
  30731.      string getDescNative() 
  30732.  
  30733.      Get the native language description 
  30734.      string getNetCode() 
  30735.  
  30736.      Get the internet code for this country 
  30737.  
  30738.  
  30739. ΓòÉΓòÉΓòÉ <hidden> implment.h ΓòÉΓòÉΓòÉ
  30740.  
  30741.  
  30742. lyris_Country Class 
  30743.  
  30744.      class lyris_Country 
  30745.  
  30746.      For determining what countries exist, and what languages are spoken & 
  30747.      preferred in each country 
  30748.  
  30749.      Defined in: COUNTRY.H 
  30750.  
  30751.   Create a new country 
  30752.  
  30753.       bool createNew() 
  30754.  
  30755.      Creates a new country/language table row.  LCP: CountryCreate 
  30756.      bool updateDatabase() 
  30757.  
  30758.      Save the current country with the data members that have changed.  LCP: 
  30759.      CountryUpdate 
  30760.      bool VerifyFields() 
  30761.  
  30762.      Verify that all required fields are filled in. 
  30763.  
  30764.   Retrieve data from the database 
  30765.      bool fetchAllCountries(vecString &AllCountries) 
  30766.  
  30767.      Fetch a list of all countries.  LCP: CountryAll 
  30768.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30769.  
  30770.      Fetch a paired list of countries and their native language descriptions, 
  30771.      sorted by english description.  LCP: CountryEngNat 
  30772.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30773.  
  30774.      Fetch a paired list of native language country descriptions, and the 
  30775.      english name of the country. 
  30776.      bool retrieveFromNetCode() 
  30777.  
  30778.      Determine the country that uses the currently set NetCode.  Fills all the 
  30779.      other country attributes with values. LCP: CountryAttNetCode 
  30780.      bool retrieveFromDesc() 
  30781.  
  30782.      Determine the country that uses the currently set description.  Fills all 
  30783.      the other country attributes with values.  LCP: CountryAttribs 
  30784.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30785.  
  30786.      Determine the primary language of the current country.  "Desc" must be 
  30787.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30788.      CountryPrimLang 
  30789.      bool getAllLanguages(vecString &Languages) 
  30790.  
  30791.      Determine all the languages used by the current country.  "Desc" must be 
  30792.      already set.  The result is returned in priority order (highest priority 
  30793.      first) in vecString &Languages.  LCP: CountryLanguages 
  30794.      bool getLanguageList(vecString &Languages) 
  30795.  
  30796.      Get a list of all possible languages, in alphabetical order, returned in 
  30797.      vecString &Languages.  LCP: CountryLangList 
  30798.      bool getLanguageListEngNat(mapString &Languages) 
  30799.  
  30800.      Get a map of all possible languages, their native description in 
  30801.      alphabetical order by english description, returned in in vecString 
  30802.      &Languages.  LCP: CountryLangListEngNat 
  30803.  
  30804.   Delete a country 
  30805.      bool deleteFromDesc() 
  30806.  
  30807.      Delete the country that uses the currently set description.  LCP: 
  30808.      CountryDelete 
  30809.  
  30810.   Set data members 
  30811.      bool setAll(mapString &FieldValues) 
  30812.  
  30813.      Sets all the data members of a topic using the mapString which is passed 
  30814.      to it.  Only the fields present in the mapString are updated, the other 
  30815.      fields are untouched.  LCP: CountryUpdate 
  30816.      bool setDesc(const string &DescSetting) 
  30817.  
  30818.      Set the short description 
  30819.      bool setDescLong(const string &DescLongSetting) 
  30820.  
  30821.      Set the long description 
  30822.      bool setDescNative(const string &DescNativeSetting) 
  30823.  
  30824.      Set the native language description 
  30825.      bool setNetCode(const string &NetCodeSetting) 
  30826.  
  30827.      Set the internet code for this country 
  30828.      bool erase() 
  30829.  
  30830.      Sets all the data members to empty 
  30831.  
  30832.   Get data members 
  30833.      bool getAll(mapString &FieldValues) 
  30834.  
  30835.      Return a mapString of all the data members of this topic. The key is the 
  30836.      variable name.  LCP: CountryAttribs 
  30837.      string getDesc() 
  30838.  
  30839.      Get the short description 
  30840.      string getDescLong() 
  30841.  
  30842.      Get the long description 
  30843.      string getDescNative() 
  30844.  
  30845.      Get the native language description 
  30846.      string getNetCode() 
  30847.  
  30848.      Get the internet code for this country 
  30849.  
  30850.  
  30851. ΓòÉΓòÉΓòÉ <hidden> incoming.h ΓòÉΓòÉΓòÉ
  30852.  
  30853.  
  30854. lyris_Country Class 
  30855.  
  30856.      class lyris_Country 
  30857.  
  30858.      For determining what countries exist, and what languages are spoken & 
  30859.      preferred in each country 
  30860.  
  30861.      Defined in: COUNTRY.H 
  30862.  
  30863.   Create a new country 
  30864.  
  30865.       bool createNew() 
  30866.  
  30867.      Creates a new country/language table row.  LCP: CountryCreate 
  30868.      bool updateDatabase() 
  30869.  
  30870.      Save the current country with the data members that have changed.  LCP: 
  30871.      CountryUpdate 
  30872.      bool VerifyFields() 
  30873.  
  30874.      Verify that all required fields are filled in. 
  30875.  
  30876.   Retrieve data from the database 
  30877.      bool fetchAllCountries(vecString &AllCountries) 
  30878.  
  30879.      Fetch a list of all countries.  LCP: CountryAll 
  30880.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30881.  
  30882.      Fetch a paired list of countries and their native language descriptions, 
  30883.      sorted by english description.  LCP: CountryEngNat 
  30884.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30885.  
  30886.      Fetch a paired list of native language country descriptions, and the 
  30887.      english name of the country. 
  30888.      bool retrieveFromNetCode() 
  30889.  
  30890.      Determine the country that uses the currently set NetCode.  Fills all the 
  30891.      other country attributes with values. LCP: CountryAttNetCode 
  30892.      bool retrieveFromDesc() 
  30893.  
  30894.      Determine the country that uses the currently set description.  Fills all 
  30895.      the other country attributes with values.  LCP: CountryAttribs 
  30896.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  30897.  
  30898.      Determine the primary language of the current country.  "Desc" must be 
  30899.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  30900.      CountryPrimLang 
  30901.      bool getAllLanguages(vecString &Languages) 
  30902.  
  30903.      Determine all the languages used by the current country.  "Desc" must be 
  30904.      already set.  The result is returned in priority order (highest priority 
  30905.      first) in vecString &Languages.  LCP: CountryLanguages 
  30906.      bool getLanguageList(vecString &Languages) 
  30907.  
  30908.      Get a list of all possible languages, in alphabetical order, returned in 
  30909.      vecString &Languages.  LCP: CountryLangList 
  30910.      bool getLanguageListEngNat(mapString &Languages) 
  30911.  
  30912.      Get a map of all possible languages, their native description in 
  30913.      alphabetical order by english description, returned in in vecString 
  30914.      &Languages.  LCP: CountryLangListEngNat 
  30915.  
  30916.   Delete a country 
  30917.      bool deleteFromDesc() 
  30918.  
  30919.      Delete the country that uses the currently set description.  LCP: 
  30920.      CountryDelete 
  30921.  
  30922.   Set data members 
  30923.      bool setAll(mapString &FieldValues) 
  30924.  
  30925.      Sets all the data members of a topic using the mapString which is passed 
  30926.      to it.  Only the fields present in the mapString are updated, the other 
  30927.      fields are untouched.  LCP: CountryUpdate 
  30928.      bool setDesc(const string &DescSetting) 
  30929.  
  30930.      Set the short description 
  30931.      bool setDescLong(const string &DescLongSetting) 
  30932.  
  30933.      Set the long description 
  30934.      bool setDescNative(const string &DescNativeSetting) 
  30935.  
  30936.      Set the native language description 
  30937.      bool setNetCode(const string &NetCodeSetting) 
  30938.  
  30939.      Set the internet code for this country 
  30940.      bool erase() 
  30941.  
  30942.      Sets all the data members to empty 
  30943.  
  30944.   Get data members 
  30945.      bool getAll(mapString &FieldValues) 
  30946.  
  30947.      Return a mapString of all the data members of this topic. The key is the 
  30948.      variable name.  LCP: CountryAttribs 
  30949.      string getDesc() 
  30950.  
  30951.      Get the short description 
  30952.      string getDescLong() 
  30953.  
  30954.      Get the long description 
  30955.      string getDescNative() 
  30956.  
  30957.      Get the native language description 
  30958.      string getNetCode() 
  30959.  
  30960.      Get the internet code for this country 
  30961.  
  30962.  
  30963. ΓòÉΓòÉΓòÉ <hidden> langeng.h ΓòÉΓòÉΓòÉ
  30964.  
  30965.  
  30966. lyris_Country Class 
  30967.  
  30968.      class lyris_Country 
  30969.  
  30970.      For determining what countries exist, and what languages are spoken & 
  30971.      preferred in each country 
  30972.  
  30973.      Defined in: COUNTRY.H 
  30974.  
  30975.   Create a new country 
  30976.  
  30977.       bool createNew() 
  30978.  
  30979.      Creates a new country/language table row.  LCP: CountryCreate 
  30980.      bool updateDatabase() 
  30981.  
  30982.      Save the current country with the data members that have changed.  LCP: 
  30983.      CountryUpdate 
  30984.      bool VerifyFields() 
  30985.  
  30986.      Verify that all required fields are filled in. 
  30987.  
  30988.   Retrieve data from the database 
  30989.      bool fetchAllCountries(vecString &AllCountries) 
  30990.  
  30991.      Fetch a list of all countries.  LCP: CountryAll 
  30992.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  30993.  
  30994.      Fetch a paired list of countries and their native language descriptions, 
  30995.      sorted by english description.  LCP: CountryEngNat 
  30996.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  30997.  
  30998.      Fetch a paired list of native language country descriptions, and the 
  30999.      english name of the country. 
  31000.      bool retrieveFromNetCode() 
  31001.  
  31002.      Determine the country that uses the currently set NetCode.  Fills all the 
  31003.      other country attributes with values. LCP: CountryAttNetCode 
  31004.      bool retrieveFromDesc() 
  31005.  
  31006.      Determine the country that uses the currently set description.  Fills all 
  31007.      the other country attributes with values.  LCP: CountryAttribs 
  31008.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31009.  
  31010.      Determine the primary language of the current country.  "Desc" must be 
  31011.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31012.      CountryPrimLang 
  31013.      bool getAllLanguages(vecString &Languages) 
  31014.  
  31015.      Determine all the languages used by the current country.  "Desc" must be 
  31016.      already set.  The result is returned in priority order (highest priority 
  31017.      first) in vecString &Languages.  LCP: CountryLanguages 
  31018.      bool getLanguageList(vecString &Languages) 
  31019.  
  31020.      Get a list of all possible languages, in alphabetical order, returned in 
  31021.      vecString &Languages.  LCP: CountryLangList 
  31022.      bool getLanguageListEngNat(mapString &Languages) 
  31023.  
  31024.      Get a map of all possible languages, their native description in 
  31025.      alphabetical order by english description, returned in in vecString 
  31026.      &Languages.  LCP: CountryLangListEngNat 
  31027.  
  31028.   Delete a country 
  31029.      bool deleteFromDesc() 
  31030.  
  31031.      Delete the country that uses the currently set description.  LCP: 
  31032.      CountryDelete 
  31033.  
  31034.   Set data members 
  31035.      bool setAll(mapString &FieldValues) 
  31036.  
  31037.      Sets all the data members of a topic using the mapString which is passed 
  31038.      to it.  Only the fields present in the mapString are updated, the other 
  31039.      fields are untouched.  LCP: CountryUpdate 
  31040.      bool setDesc(const string &DescSetting) 
  31041.  
  31042.      Set the short description 
  31043.      bool setDescLong(const string &DescLongSetting) 
  31044.  
  31045.      Set the long description 
  31046.      bool setDescNative(const string &DescNativeSetting) 
  31047.  
  31048.      Set the native language description 
  31049.      bool setNetCode(const string &NetCodeSetting) 
  31050.  
  31051.      Set the internet code for this country 
  31052.      bool erase() 
  31053.  
  31054.      Sets all the data members to empty 
  31055.  
  31056.   Get data members 
  31057.      bool getAll(mapString &FieldValues) 
  31058.  
  31059.      Return a mapString of all the data members of this topic. The key is the 
  31060.      variable name.  LCP: CountryAttribs 
  31061.      string getDesc() 
  31062.  
  31063.      Get the short description 
  31064.      string getDescLong() 
  31065.  
  31066.      Get the long description 
  31067.      string getDescNative() 
  31068.  
  31069.      Get the native language description 
  31070.      string getNetCode() 
  31071.  
  31072.      Get the internet code for this country 
  31073.  
  31074.  
  31075. ΓòÉΓòÉΓòÉ <hidden> lcpclass.h ΓòÉΓòÉΓòÉ
  31076.  
  31077.  
  31078. lyris_Country Class 
  31079.  
  31080.      class lyris_Country 
  31081.  
  31082.      For determining what countries exist, and what languages are spoken & 
  31083.      preferred in each country 
  31084.  
  31085.      Defined in: COUNTRY.H 
  31086.  
  31087.   Create a new country 
  31088.  
  31089.       bool createNew() 
  31090.  
  31091.      Creates a new country/language table row.  LCP: CountryCreate 
  31092.      bool updateDatabase() 
  31093.  
  31094.      Save the current country with the data members that have changed.  LCP: 
  31095.      CountryUpdate 
  31096.      bool VerifyFields() 
  31097.  
  31098.      Verify that all required fields are filled in. 
  31099.  
  31100.   Retrieve data from the database 
  31101.      bool fetchAllCountries(vecString &AllCountries) 
  31102.  
  31103.      Fetch a list of all countries.  LCP: CountryAll 
  31104.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31105.  
  31106.      Fetch a paired list of countries and their native language descriptions, 
  31107.      sorted by english description.  LCP: CountryEngNat 
  31108.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31109.  
  31110.      Fetch a paired list of native language country descriptions, and the 
  31111.      english name of the country. 
  31112.      bool retrieveFromNetCode() 
  31113.  
  31114.      Determine the country that uses the currently set NetCode.  Fills all the 
  31115.      other country attributes with values. LCP: CountryAttNetCode 
  31116.      bool retrieveFromDesc() 
  31117.  
  31118.      Determine the country that uses the currently set description.  Fills all 
  31119.      the other country attributes with values.  LCP: CountryAttribs 
  31120.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31121.  
  31122.      Determine the primary language of the current country.  "Desc" must be 
  31123.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31124.      CountryPrimLang 
  31125.      bool getAllLanguages(vecString &Languages) 
  31126.  
  31127.      Determine all the languages used by the current country.  "Desc" must be 
  31128.      already set.  The result is returned in priority order (highest priority 
  31129.      first) in vecString &Languages.  LCP: CountryLanguages 
  31130.      bool getLanguageList(vecString &Languages) 
  31131.  
  31132.      Get a list of all possible languages, in alphabetical order, returned in 
  31133.      vecString &Languages.  LCP: CountryLangList 
  31134.      bool getLanguageListEngNat(mapString &Languages) 
  31135.  
  31136.      Get a map of all possible languages, their native description in 
  31137.      alphabetical order by english description, returned in in vecString 
  31138.      &Languages.  LCP: CountryLangListEngNat 
  31139.  
  31140.   Delete a country 
  31141.      bool deleteFromDesc() 
  31142.  
  31143.      Delete the country that uses the currently set description.  LCP: 
  31144.      CountryDelete 
  31145.  
  31146.   Set data members 
  31147.      bool setAll(mapString &FieldValues) 
  31148.  
  31149.      Sets all the data members of a topic using the mapString which is passed 
  31150.      to it.  Only the fields present in the mapString are updated, the other 
  31151.      fields are untouched.  LCP: CountryUpdate 
  31152.      bool setDesc(const string &DescSetting) 
  31153.  
  31154.      Set the short description 
  31155.      bool setDescLong(const string &DescLongSetting) 
  31156.  
  31157.      Set the long description 
  31158.      bool setDescNative(const string &DescNativeSetting) 
  31159.  
  31160.      Set the native language description 
  31161.      bool setNetCode(const string &NetCodeSetting) 
  31162.  
  31163.      Set the internet code for this country 
  31164.      bool erase() 
  31165.  
  31166.      Sets all the data members to empty 
  31167.  
  31168.   Get data members 
  31169.      bool getAll(mapString &FieldValues) 
  31170.  
  31171.      Return a mapString of all the data members of this topic. The key is the 
  31172.      variable name.  LCP: CountryAttribs 
  31173.      string getDesc() 
  31174.  
  31175.      Get the short description 
  31176.      string getDescLong() 
  31177.  
  31178.      Get the long description 
  31179.      string getDescNative() 
  31180.  
  31181.      Get the native language description 
  31182.      string getNetCode() 
  31183.  
  31184.      Get the internet code for this country 
  31185.  
  31186.  
  31187. ΓòÉΓòÉΓòÉ <hidden> lists.h ΓòÉΓòÉΓòÉ
  31188.  
  31189.  
  31190. lyris_Country Class 
  31191.  
  31192.      class lyris_Country 
  31193.  
  31194.      For determining what countries exist, and what languages are spoken & 
  31195.      preferred in each country 
  31196.  
  31197.      Defined in: COUNTRY.H 
  31198.  
  31199.   Create a new country 
  31200.  
  31201.       bool createNew() 
  31202.  
  31203.      Creates a new country/language table row.  LCP: CountryCreate 
  31204.      bool updateDatabase() 
  31205.  
  31206.      Save the current country with the data members that have changed.  LCP: 
  31207.      CountryUpdate 
  31208.      bool VerifyFields() 
  31209.  
  31210.      Verify that all required fields are filled in. 
  31211.  
  31212.   Retrieve data from the database 
  31213.      bool fetchAllCountries(vecString &AllCountries) 
  31214.  
  31215.      Fetch a list of all countries.  LCP: CountryAll 
  31216.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31217.  
  31218.      Fetch a paired list of countries and their native language descriptions, 
  31219.      sorted by english description.  LCP: CountryEngNat 
  31220.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31221.  
  31222.      Fetch a paired list of native language country descriptions, and the 
  31223.      english name of the country. 
  31224.      bool retrieveFromNetCode() 
  31225.  
  31226.      Determine the country that uses the currently set NetCode.  Fills all the 
  31227.      other country attributes with values. LCP: CountryAttNetCode 
  31228.      bool retrieveFromDesc() 
  31229.  
  31230.      Determine the country that uses the currently set description.  Fills all 
  31231.      the other country attributes with values.  LCP: CountryAttribs 
  31232.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31233.  
  31234.      Determine the primary language of the current country.  "Desc" must be 
  31235.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31236.      CountryPrimLang 
  31237.      bool getAllLanguages(vecString &Languages) 
  31238.  
  31239.      Determine all the languages used by the current country.  "Desc" must be 
  31240.      already set.  The result is returned in priority order (highest priority 
  31241.      first) in vecString &Languages.  LCP: CountryLanguages 
  31242.      bool getLanguageList(vecString &Languages) 
  31243.  
  31244.      Get a list of all possible languages, in alphabetical order, returned in 
  31245.      vecString &Languages.  LCP: CountryLangList 
  31246.      bool getLanguageListEngNat(mapString &Languages) 
  31247.  
  31248.      Get a map of all possible languages, their native description in 
  31249.      alphabetical order by english description, returned in in vecString 
  31250.      &Languages.  LCP: CountryLangListEngNat 
  31251.  
  31252.   Delete a country 
  31253.      bool deleteFromDesc() 
  31254.  
  31255.      Delete the country that uses the currently set description.  LCP: 
  31256.      CountryDelete 
  31257.  
  31258.   Set data members 
  31259.      bool setAll(mapString &FieldValues) 
  31260.  
  31261.      Sets all the data members of a topic using the mapString which is passed 
  31262.      to it.  Only the fields present in the mapString are updated, the other 
  31263.      fields are untouched.  LCP: CountryUpdate 
  31264.      bool setDesc(const string &DescSetting) 
  31265.  
  31266.      Set the short description 
  31267.      bool setDescLong(const string &DescLongSetting) 
  31268.  
  31269.      Set the long description 
  31270.      bool setDescNative(const string &DescNativeSetting) 
  31271.  
  31272.      Set the native language description 
  31273.      bool setNetCode(const string &NetCodeSetting) 
  31274.  
  31275.      Set the internet code for this country 
  31276.      bool erase() 
  31277.  
  31278.      Sets all the data members to empty 
  31279.  
  31280.   Get data members 
  31281.      bool getAll(mapString &FieldValues) 
  31282.  
  31283.      Return a mapString of all the data members of this topic. The key is the 
  31284.      variable name.  LCP: CountryAttribs 
  31285.      string getDesc() 
  31286.  
  31287.      Get the short description 
  31288.      string getDescLong() 
  31289.  
  31290.      Get the long description 
  31291.      string getDescNative() 
  31292.  
  31293.      Get the native language description 
  31294.      string getNetCode() 
  31295.  
  31296.      Get the internet code for this country 
  31297.  
  31298.  
  31299. ΓòÉΓòÉΓòÉ <hidden> ltest.h ΓòÉΓòÉΓòÉ
  31300.  
  31301.  
  31302. lyris_Country Class 
  31303.  
  31304.      class lyris_Country 
  31305.  
  31306.      For determining what countries exist, and what languages are spoken & 
  31307.      preferred in each country 
  31308.  
  31309.      Defined in: COUNTRY.H 
  31310.  
  31311.   Create a new country 
  31312.  
  31313.       bool createNew() 
  31314.  
  31315.      Creates a new country/language table row.  LCP: CountryCreate 
  31316.      bool updateDatabase() 
  31317.  
  31318.      Save the current country with the data members that have changed.  LCP: 
  31319.      CountryUpdate 
  31320.      bool VerifyFields() 
  31321.  
  31322.      Verify that all required fields are filled in. 
  31323.  
  31324.   Retrieve data from the database 
  31325.      bool fetchAllCountries(vecString &AllCountries) 
  31326.  
  31327.      Fetch a list of all countries.  LCP: CountryAll 
  31328.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31329.  
  31330.      Fetch a paired list of countries and their native language descriptions, 
  31331.      sorted by english description.  LCP: CountryEngNat 
  31332.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31333.  
  31334.      Fetch a paired list of native language country descriptions, and the 
  31335.      english name of the country. 
  31336.      bool retrieveFromNetCode() 
  31337.  
  31338.      Determine the country that uses the currently set NetCode.  Fills all the 
  31339.      other country attributes with values. LCP: CountryAttNetCode 
  31340.      bool retrieveFromDesc() 
  31341.  
  31342.      Determine the country that uses the currently set description.  Fills all 
  31343.      the other country attributes with values.  LCP: CountryAttribs 
  31344.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31345.  
  31346.      Determine the primary language of the current country.  "Desc" must be 
  31347.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31348.      CountryPrimLang 
  31349.      bool getAllLanguages(vecString &Languages) 
  31350.  
  31351.      Determine all the languages used by the current country.  "Desc" must be 
  31352.      already set.  The result is returned in priority order (highest priority 
  31353.      first) in vecString &Languages.  LCP: CountryLanguages 
  31354.      bool getLanguageList(vecString &Languages) 
  31355.  
  31356.      Get a list of all possible languages, in alphabetical order, returned in 
  31357.      vecString &Languages.  LCP: CountryLangList 
  31358.      bool getLanguageListEngNat(mapString &Languages) 
  31359.  
  31360.      Get a map of all possible languages, their native description in 
  31361.      alphabetical order by english description, returned in in vecString 
  31362.      &Languages.  LCP: CountryLangListEngNat 
  31363.  
  31364.   Delete a country 
  31365.      bool deleteFromDesc() 
  31366.  
  31367.      Delete the country that uses the currently set description.  LCP: 
  31368.      CountryDelete 
  31369.  
  31370.   Set data members 
  31371.      bool setAll(mapString &FieldValues) 
  31372.  
  31373.      Sets all the data members of a topic using the mapString which is passed 
  31374.      to it.  Only the fields present in the mapString are updated, the other 
  31375.      fields are untouched.  LCP: CountryUpdate 
  31376.      bool setDesc(const string &DescSetting) 
  31377.  
  31378.      Set the short description 
  31379.      bool setDescLong(const string &DescLongSetting) 
  31380.  
  31381.      Set the long description 
  31382.      bool setDescNative(const string &DescNativeSetting) 
  31383.  
  31384.      Set the native language description 
  31385.      bool setNetCode(const string &NetCodeSetting) 
  31386.  
  31387.      Set the internet code for this country 
  31388.      bool erase() 
  31389.  
  31390.      Sets all the data members to empty 
  31391.  
  31392.   Get data members 
  31393.      bool getAll(mapString &FieldValues) 
  31394.  
  31395.      Return a mapString of all the data members of this topic. The key is the 
  31396.      variable name.  LCP: CountryAttribs 
  31397.      string getDesc() 
  31398.  
  31399.      Get the short description 
  31400.      string getDescLong() 
  31401.  
  31402.      Get the long description 
  31403.      string getDescNative() 
  31404.  
  31405.      Get the native language description 
  31406.      string getNetCode() 
  31407.  
  31408.      Get the internet code for this country 
  31409.  
  31410.  
  31411. ΓòÉΓòÉΓòÉ <hidden> lyrcache.cxx ΓòÉΓòÉΓòÉ
  31412.  
  31413.  
  31414. lyris_Country Class 
  31415.  
  31416.      class lyris_Country 
  31417.  
  31418.      For determining what countries exist, and what languages are spoken & 
  31419.      preferred in each country 
  31420.  
  31421.      Defined in: COUNTRY.H 
  31422.  
  31423.   Create a new country 
  31424.  
  31425.       bool createNew() 
  31426.  
  31427.      Creates a new country/language table row.  LCP: CountryCreate 
  31428.      bool updateDatabase() 
  31429.  
  31430.      Save the current country with the data members that have changed.  LCP: 
  31431.      CountryUpdate 
  31432.      bool VerifyFields() 
  31433.  
  31434.      Verify that all required fields are filled in. 
  31435.  
  31436.   Retrieve data from the database 
  31437.      bool fetchAllCountries(vecString &AllCountries) 
  31438.  
  31439.      Fetch a list of all countries.  LCP: CountryAll 
  31440.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31441.  
  31442.      Fetch a paired list of countries and their native language descriptions, 
  31443.      sorted by english description.  LCP: CountryEngNat 
  31444.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31445.  
  31446.      Fetch a paired list of native language country descriptions, and the 
  31447.      english name of the country. 
  31448.      bool retrieveFromNetCode() 
  31449.  
  31450.      Determine the country that uses the currently set NetCode.  Fills all the 
  31451.      other country attributes with values. LCP: CountryAttNetCode 
  31452.      bool retrieveFromDesc() 
  31453.  
  31454.      Determine the country that uses the currently set description.  Fills all 
  31455.      the other country attributes with values.  LCP: CountryAttribs 
  31456.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31457.  
  31458.      Determine the primary language of the current country.  "Desc" must be 
  31459.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31460.      CountryPrimLang 
  31461.      bool getAllLanguages(vecString &Languages) 
  31462.  
  31463.      Determine all the languages used by the current country.  "Desc" must be 
  31464.      already set.  The result is returned in priority order (highest priority 
  31465.      first) in vecString &Languages.  LCP: CountryLanguages 
  31466.      bool getLanguageList(vecString &Languages) 
  31467.  
  31468.      Get a list of all possible languages, in alphabetical order, returned in 
  31469.      vecString &Languages.  LCP: CountryLangList 
  31470.      bool getLanguageListEngNat(mapString &Languages) 
  31471.  
  31472.      Get a map of all possible languages, their native description in 
  31473.      alphabetical order by english description, returned in in vecString 
  31474.      &Languages.  LCP: CountryLangListEngNat 
  31475.  
  31476.   Delete a country 
  31477.      bool deleteFromDesc() 
  31478.  
  31479.      Delete the country that uses the currently set description.  LCP: 
  31480.      CountryDelete 
  31481.  
  31482.   Set data members 
  31483.      bool setAll(mapString &FieldValues) 
  31484.  
  31485.      Sets all the data members of a topic using the mapString which is passed 
  31486.      to it.  Only the fields present in the mapString are updated, the other 
  31487.      fields are untouched.  LCP: CountryUpdate 
  31488.      bool setDesc(const string &DescSetting) 
  31489.  
  31490.      Set the short description 
  31491.      bool setDescLong(const string &DescLongSetting) 
  31492.  
  31493.      Set the long description 
  31494.      bool setDescNative(const string &DescNativeSetting) 
  31495.  
  31496.      Set the native language description 
  31497.      bool setNetCode(const string &NetCodeSetting) 
  31498.  
  31499.      Set the internet code for this country 
  31500.      bool erase() 
  31501.  
  31502.      Sets all the data members to empty 
  31503.  
  31504.   Get data members 
  31505.      bool getAll(mapString &FieldValues) 
  31506.  
  31507.      Return a mapString of all the data members of this topic. The key is the 
  31508.      variable name.  LCP: CountryAttribs 
  31509.      string getDesc() 
  31510.  
  31511.      Get the short description 
  31512.      string getDescLong() 
  31513.  
  31514.      Get the long description 
  31515.      string getDescNative() 
  31516.  
  31517.      Get the native language description 
  31518.      string getNetCode() 
  31519.  
  31520.      Get the internet code for this country 
  31521.  
  31522.  
  31523. ΓòÉΓòÉΓòÉ <hidden> lyrglobal.h ΓòÉΓòÉΓòÉ
  31524.  
  31525.  
  31526. lyris_Country Class 
  31527.  
  31528.      class lyris_Country 
  31529.  
  31530.      For determining what countries exist, and what languages are spoken & 
  31531.      preferred in each country 
  31532.  
  31533.      Defined in: COUNTRY.H 
  31534.  
  31535.   Create a new country 
  31536.  
  31537.       bool createNew() 
  31538.  
  31539.      Creates a new country/language table row.  LCP: CountryCreate 
  31540.      bool updateDatabase() 
  31541.  
  31542.      Save the current country with the data members that have changed.  LCP: 
  31543.      CountryUpdate 
  31544.      bool VerifyFields() 
  31545.  
  31546.      Verify that all required fields are filled in. 
  31547.  
  31548.   Retrieve data from the database 
  31549.      bool fetchAllCountries(vecString &AllCountries) 
  31550.  
  31551.      Fetch a list of all countries.  LCP: CountryAll 
  31552.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31553.  
  31554.      Fetch a paired list of countries and their native language descriptions, 
  31555.      sorted by english description.  LCP: CountryEngNat 
  31556.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31557.  
  31558.      Fetch a paired list of native language country descriptions, and the 
  31559.      english name of the country. 
  31560.      bool retrieveFromNetCode() 
  31561.  
  31562.      Determine the country that uses the currently set NetCode.  Fills all the 
  31563.      other country attributes with values. LCP: CountryAttNetCode 
  31564.      bool retrieveFromDesc() 
  31565.  
  31566.      Determine the country that uses the currently set description.  Fills all 
  31567.      the other country attributes with values.  LCP: CountryAttribs 
  31568.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31569.  
  31570.      Determine the primary language of the current country.  "Desc" must be 
  31571.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31572.      CountryPrimLang 
  31573.      bool getAllLanguages(vecString &Languages) 
  31574.  
  31575.      Determine all the languages used by the current country.  "Desc" must be 
  31576.      already set.  The result is returned in priority order (highest priority 
  31577.      first) in vecString &Languages.  LCP: CountryLanguages 
  31578.      bool getLanguageList(vecString &Languages) 
  31579.  
  31580.      Get a list of all possible languages, in alphabetical order, returned in 
  31581.      vecString &Languages.  LCP: CountryLangList 
  31582.      bool getLanguageListEngNat(mapString &Languages) 
  31583.  
  31584.      Get a map of all possible languages, their native description in 
  31585.      alphabetical order by english description, returned in in vecString 
  31586.      &Languages.  LCP: CountryLangListEngNat 
  31587.  
  31588.   Delete a country 
  31589.      bool deleteFromDesc() 
  31590.  
  31591.      Delete the country that uses the currently set description.  LCP: 
  31592.      CountryDelete 
  31593.  
  31594.   Set data members 
  31595.      bool setAll(mapString &FieldValues) 
  31596.  
  31597.      Sets all the data members of a topic using the mapString which is passed 
  31598.      to it.  Only the fields present in the mapString are updated, the other 
  31599.      fields are untouched.  LCP: CountryUpdate 
  31600.      bool setDesc(const string &DescSetting) 
  31601.  
  31602.      Set the short description 
  31603.      bool setDescLong(const string &DescLongSetting) 
  31604.  
  31605.      Set the long description 
  31606.      bool setDescNative(const string &DescNativeSetting) 
  31607.  
  31608.      Set the native language description 
  31609.      bool setNetCode(const string &NetCodeSetting) 
  31610.  
  31611.      Set the internet code for this country 
  31612.      bool erase() 
  31613.  
  31614.      Sets all the data members to empty 
  31615.  
  31616.   Get data members 
  31617.      bool getAll(mapString &FieldValues) 
  31618.  
  31619.      Return a mapString of all the data members of this topic. The key is the 
  31620.      variable name.  LCP: CountryAttribs 
  31621.      string getDesc() 
  31622.  
  31623.      Get the short description 
  31624.      string getDescLong() 
  31625.  
  31626.      Get the long description 
  31627.      string getDescNative() 
  31628.  
  31629.      Get the native language description 
  31630.      string getNetCode() 
  31631.  
  31632.      Get the internet code for this country 
  31633.  
  31634.  
  31635. ΓòÉΓòÉΓòÉ <hidden> mailinit.h ΓòÉΓòÉΓòÉ
  31636.  
  31637.  
  31638. lyris_Country Class 
  31639.  
  31640.      class lyris_Country 
  31641.  
  31642.      For determining what countries exist, and what languages are spoken & 
  31643.      preferred in each country 
  31644.  
  31645.      Defined in: COUNTRY.H 
  31646.  
  31647.   Create a new country 
  31648.  
  31649.       bool createNew() 
  31650.  
  31651.      Creates a new country/language table row.  LCP: CountryCreate 
  31652.      bool updateDatabase() 
  31653.  
  31654.      Save the current country with the data members that have changed.  LCP: 
  31655.      CountryUpdate 
  31656.      bool VerifyFields() 
  31657.  
  31658.      Verify that all required fields are filled in. 
  31659.  
  31660.   Retrieve data from the database 
  31661.      bool fetchAllCountries(vecString &AllCountries) 
  31662.  
  31663.      Fetch a list of all countries.  LCP: CountryAll 
  31664.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31665.  
  31666.      Fetch a paired list of countries and their native language descriptions, 
  31667.      sorted by english description.  LCP: CountryEngNat 
  31668.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31669.  
  31670.      Fetch a paired list of native language country descriptions, and the 
  31671.      english name of the country. 
  31672.      bool retrieveFromNetCode() 
  31673.  
  31674.      Determine the country that uses the currently set NetCode.  Fills all the 
  31675.      other country attributes with values. LCP: CountryAttNetCode 
  31676.      bool retrieveFromDesc() 
  31677.  
  31678.      Determine the country that uses the currently set description.  Fills all 
  31679.      the other country attributes with values.  LCP: CountryAttribs 
  31680.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31681.  
  31682.      Determine the primary language of the current country.  "Desc" must be 
  31683.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31684.      CountryPrimLang 
  31685.      bool getAllLanguages(vecString &Languages) 
  31686.  
  31687.      Determine all the languages used by the current country.  "Desc" must be 
  31688.      already set.  The result is returned in priority order (highest priority 
  31689.      first) in vecString &Languages.  LCP: CountryLanguages 
  31690.      bool getLanguageList(vecString &Languages) 
  31691.  
  31692.      Get a list of all possible languages, in alphabetical order, returned in 
  31693.      vecString &Languages.  LCP: CountryLangList 
  31694.      bool getLanguageListEngNat(mapString &Languages) 
  31695.  
  31696.      Get a map of all possible languages, their native description in 
  31697.      alphabetical order by english description, returned in in vecString 
  31698.      &Languages.  LCP: CountryLangListEngNat 
  31699.  
  31700.   Delete a country 
  31701.      bool deleteFromDesc() 
  31702.  
  31703.      Delete the country that uses the currently set description.  LCP: 
  31704.      CountryDelete 
  31705.  
  31706.   Set data members 
  31707.      bool setAll(mapString &FieldValues) 
  31708.  
  31709.      Sets all the data members of a topic using the mapString which is passed 
  31710.      to it.  Only the fields present in the mapString are updated, the other 
  31711.      fields are untouched.  LCP: CountryUpdate 
  31712.      bool setDesc(const string &DescSetting) 
  31713.  
  31714.      Set the short description 
  31715.      bool setDescLong(const string &DescLongSetting) 
  31716.  
  31717.      Set the long description 
  31718.      bool setDescNative(const string &DescNativeSetting) 
  31719.  
  31720.      Set the native language description 
  31721.      bool setNetCode(const string &NetCodeSetting) 
  31722.  
  31723.      Set the internet code for this country 
  31724.      bool erase() 
  31725.  
  31726.      Sets all the data members to empty 
  31727.  
  31728.   Get data members 
  31729.      bool getAll(mapString &FieldValues) 
  31730.  
  31731.      Return a mapString of all the data members of this topic. The key is the 
  31732.      variable name.  LCP: CountryAttribs 
  31733.      string getDesc() 
  31734.  
  31735.      Get the short description 
  31736.      string getDescLong() 
  31737.  
  31738.      Get the long description 
  31739.      string getDescNative() 
  31740.  
  31741.      Get the native language description 
  31742.      string getNetCode() 
  31743.  
  31744.      Get the internet code for this country 
  31745.  
  31746.  
  31747. ΓòÉΓòÉΓòÉ <hidden> message.h ΓòÉΓòÉΓòÉ
  31748.  
  31749.  
  31750. lyris_Country Class 
  31751.  
  31752.      class lyris_Country 
  31753.  
  31754.      For determining what countries exist, and what languages are spoken & 
  31755.      preferred in each country 
  31756.  
  31757.      Defined in: COUNTRY.H 
  31758.  
  31759.   Create a new country 
  31760.  
  31761.       bool createNew() 
  31762.  
  31763.      Creates a new country/language table row.  LCP: CountryCreate 
  31764.      bool updateDatabase() 
  31765.  
  31766.      Save the current country with the data members that have changed.  LCP: 
  31767.      CountryUpdate 
  31768.      bool VerifyFields() 
  31769.  
  31770.      Verify that all required fields are filled in. 
  31771.  
  31772.   Retrieve data from the database 
  31773.      bool fetchAllCountries(vecString &AllCountries) 
  31774.  
  31775.      Fetch a list of all countries.  LCP: CountryAll 
  31776.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31777.  
  31778.      Fetch a paired list of countries and their native language descriptions, 
  31779.      sorted by english description.  LCP: CountryEngNat 
  31780.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31781.  
  31782.      Fetch a paired list of native language country descriptions, and the 
  31783.      english name of the country. 
  31784.      bool retrieveFromNetCode() 
  31785.  
  31786.      Determine the country that uses the currently set NetCode.  Fills all the 
  31787.      other country attributes with values. LCP: CountryAttNetCode 
  31788.      bool retrieveFromDesc() 
  31789.  
  31790.      Determine the country that uses the currently set description.  Fills all 
  31791.      the other country attributes with values.  LCP: CountryAttribs 
  31792.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31793.  
  31794.      Determine the primary language of the current country.  "Desc" must be 
  31795.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31796.      CountryPrimLang 
  31797.      bool getAllLanguages(vecString &Languages) 
  31798.  
  31799.      Determine all the languages used by the current country.  "Desc" must be 
  31800.      already set.  The result is returned in priority order (highest priority 
  31801.      first) in vecString &Languages.  LCP: CountryLanguages 
  31802.      bool getLanguageList(vecString &Languages) 
  31803.  
  31804.      Get a list of all possible languages, in alphabetical order, returned in 
  31805.      vecString &Languages.  LCP: CountryLangList 
  31806.      bool getLanguageListEngNat(mapString &Languages) 
  31807.  
  31808.      Get a map of all possible languages, their native description in 
  31809.      alphabetical order by english description, returned in in vecString 
  31810.      &Languages.  LCP: CountryLangListEngNat 
  31811.  
  31812.   Delete a country 
  31813.      bool deleteFromDesc() 
  31814.  
  31815.      Delete the country that uses the currently set description.  LCP: 
  31816.      CountryDelete 
  31817.  
  31818.   Set data members 
  31819.      bool setAll(mapString &FieldValues) 
  31820.  
  31821.      Sets all the data members of a topic using the mapString which is passed 
  31822.      to it.  Only the fields present in the mapString are updated, the other 
  31823.      fields are untouched.  LCP: CountryUpdate 
  31824.      bool setDesc(const string &DescSetting) 
  31825.  
  31826.      Set the short description 
  31827.      bool setDescLong(const string &DescLongSetting) 
  31828.  
  31829.      Set the long description 
  31830.      bool setDescNative(const string &DescNativeSetting) 
  31831.  
  31832.      Set the native language description 
  31833.      bool setNetCode(const string &NetCodeSetting) 
  31834.  
  31835.      Set the internet code for this country 
  31836.      bool erase() 
  31837.  
  31838.      Sets all the data members to empty 
  31839.  
  31840.   Get data members 
  31841.      bool getAll(mapString &FieldValues) 
  31842.  
  31843.      Return a mapString of all the data members of this topic. The key is the 
  31844.      variable name.  LCP: CountryAttribs 
  31845.      string getDesc() 
  31846.  
  31847.      Get the short description 
  31848.      string getDescLong() 
  31849.  
  31850.      Get the long description 
  31851.      string getDescNative() 
  31852.  
  31853.      Get the native language description 
  31854.      string getNetCode() 
  31855.  
  31856.      Get the internet code for this country 
  31857.  
  31858.  
  31859. ΓòÉΓòÉΓòÉ <hidden> os_inc.h ΓòÉΓòÉΓòÉ
  31860.  
  31861.  
  31862. lyris_Country Class 
  31863.  
  31864.      class lyris_Country 
  31865.  
  31866.      For determining what countries exist, and what languages are spoken & 
  31867.      preferred in each country 
  31868.  
  31869.      Defined in: COUNTRY.H 
  31870.  
  31871.   Create a new country 
  31872.  
  31873.       bool createNew() 
  31874.  
  31875.      Creates a new country/language table row.  LCP: CountryCreate 
  31876.      bool updateDatabase() 
  31877.  
  31878.      Save the current country with the data members that have changed.  LCP: 
  31879.      CountryUpdate 
  31880.      bool VerifyFields() 
  31881.  
  31882.      Verify that all required fields are filled in. 
  31883.  
  31884.   Retrieve data from the database 
  31885.      bool fetchAllCountries(vecString &AllCountries) 
  31886.  
  31887.      Fetch a list of all countries.  LCP: CountryAll 
  31888.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  31889.  
  31890.      Fetch a paired list of countries and their native language descriptions, 
  31891.      sorted by english description.  LCP: CountryEngNat 
  31892.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  31893.  
  31894.      Fetch a paired list of native language country descriptions, and the 
  31895.      english name of the country. 
  31896.      bool retrieveFromNetCode() 
  31897.  
  31898.      Determine the country that uses the currently set NetCode.  Fills all the 
  31899.      other country attributes with values. LCP: CountryAttNetCode 
  31900.      bool retrieveFromDesc() 
  31901.  
  31902.      Determine the country that uses the currently set description.  Fills all 
  31903.      the other country attributes with values.  LCP: CountryAttribs 
  31904.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  31905.  
  31906.      Determine the primary language of the current country.  "Desc" must be 
  31907.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  31908.      CountryPrimLang 
  31909.      bool getAllLanguages(vecString &Languages) 
  31910.  
  31911.      Determine all the languages used by the current country.  "Desc" must be 
  31912.      already set.  The result is returned in priority order (highest priority 
  31913.      first) in vecString &Languages.  LCP: CountryLanguages 
  31914.      bool getLanguageList(vecString &Languages) 
  31915.  
  31916.      Get a list of all possible languages, in alphabetical order, returned in 
  31917.      vecString &Languages.  LCP: CountryLangList 
  31918.      bool getLanguageListEngNat(mapString &Languages) 
  31919.  
  31920.      Get a map of all possible languages, their native description in 
  31921.      alphabetical order by english description, returned in in vecString 
  31922.      &Languages.  LCP: CountryLangListEngNat 
  31923.  
  31924.   Delete a country 
  31925.      bool deleteFromDesc() 
  31926.  
  31927.      Delete the country that uses the currently set description.  LCP: 
  31928.      CountryDelete 
  31929.  
  31930.   Set data members 
  31931.      bool setAll(mapString &FieldValues) 
  31932.  
  31933.      Sets all the data members of a topic using the mapString which is passed 
  31934.      to it.  Only the fields present in the mapString are updated, the other 
  31935.      fields are untouched.  LCP: CountryUpdate 
  31936.      bool setDesc(const string &DescSetting) 
  31937.  
  31938.      Set the short description 
  31939.      bool setDescLong(const string &DescLongSetting) 
  31940.  
  31941.      Set the long description 
  31942.      bool setDescNative(const string &DescNativeSetting) 
  31943.  
  31944.      Set the native language description 
  31945.      bool setNetCode(const string &NetCodeSetting) 
  31946.  
  31947.      Set the internet code for this country 
  31948.      bool erase() 
  31949.  
  31950.      Sets all the data members to empty 
  31951.  
  31952.   Get data members 
  31953.      bool getAll(mapString &FieldValues) 
  31954.  
  31955.      Return a mapString of all the data members of this topic. The key is the 
  31956.      variable name.  LCP: CountryAttribs 
  31957.      string getDesc() 
  31958.  
  31959.      Get the short description 
  31960.      string getDescLong() 
  31961.  
  31962.      Get the long description 
  31963.      string getDescNative() 
  31964.  
  31965.      Get the native language description 
  31966.      string getNetCode() 
  31967.  
  31968.      Get the internet code for this country 
  31969.  
  31970.  
  31971. ΓòÉΓòÉΓòÉ <hidden> pdomain.h ΓòÉΓòÉΓòÉ
  31972.  
  31973.  
  31974. lyris_Country Class 
  31975.  
  31976.      class lyris_Country 
  31977.  
  31978.      For determining what countries exist, and what languages are spoken & 
  31979.      preferred in each country 
  31980.  
  31981.      Defined in: COUNTRY.H 
  31982.  
  31983.   Create a new country 
  31984.  
  31985.       bool createNew() 
  31986.  
  31987.      Creates a new country/language table row.  LCP: CountryCreate 
  31988.      bool updateDatabase() 
  31989.  
  31990.      Save the current country with the data members that have changed.  LCP: 
  31991.      CountryUpdate 
  31992.      bool VerifyFields() 
  31993.  
  31994.      Verify that all required fields are filled in. 
  31995.  
  31996.   Retrieve data from the database 
  31997.      bool fetchAllCountries(vecString &AllCountries) 
  31998.  
  31999.      Fetch a list of all countries.  LCP: CountryAll 
  32000.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32001.  
  32002.      Fetch a paired list of countries and their native language descriptions, 
  32003.      sorted by english description.  LCP: CountryEngNat 
  32004.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32005.  
  32006.      Fetch a paired list of native language country descriptions, and the 
  32007.      english name of the country. 
  32008.      bool retrieveFromNetCode() 
  32009.  
  32010.      Determine the country that uses the currently set NetCode.  Fills all the 
  32011.      other country attributes with values. LCP: CountryAttNetCode 
  32012.      bool retrieveFromDesc() 
  32013.  
  32014.      Determine the country that uses the currently set description.  Fills all 
  32015.      the other country attributes with values.  LCP: CountryAttribs 
  32016.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32017.  
  32018.      Determine the primary language of the current country.  "Desc" must be 
  32019.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32020.      CountryPrimLang 
  32021.      bool getAllLanguages(vecString &Languages) 
  32022.  
  32023.      Determine all the languages used by the current country.  "Desc" must be 
  32024.      already set.  The result is returned in priority order (highest priority 
  32025.      first) in vecString &Languages.  LCP: CountryLanguages 
  32026.      bool getLanguageList(vecString &Languages) 
  32027.  
  32028.      Get a list of all possible languages, in alphabetical order, returned in 
  32029.      vecString &Languages.  LCP: CountryLangList 
  32030.      bool getLanguageListEngNat(mapString &Languages) 
  32031.  
  32032.      Get a map of all possible languages, their native description in 
  32033.      alphabetical order by english description, returned in in vecString 
  32034.      &Languages.  LCP: CountryLangListEngNat 
  32035.  
  32036.   Delete a country 
  32037.      bool deleteFromDesc() 
  32038.  
  32039.      Delete the country that uses the currently set description.  LCP: 
  32040.      CountryDelete 
  32041.  
  32042.   Set data members 
  32043.      bool setAll(mapString &FieldValues) 
  32044.  
  32045.      Sets all the data members of a topic using the mapString which is passed 
  32046.      to it.  Only the fields present in the mapString are updated, the other 
  32047.      fields are untouched.  LCP: CountryUpdate 
  32048.      bool setDesc(const string &DescSetting) 
  32049.  
  32050.      Set the short description 
  32051.      bool setDescLong(const string &DescLongSetting) 
  32052.  
  32053.      Set the long description 
  32054.      bool setDescNative(const string &DescNativeSetting) 
  32055.  
  32056.      Set the native language description 
  32057.      bool setNetCode(const string &NetCodeSetting) 
  32058.  
  32059.      Set the internet code for this country 
  32060.      bool erase() 
  32061.  
  32062.      Sets all the data members to empty 
  32063.  
  32064.   Get data members 
  32065.      bool getAll(mapString &FieldValues) 
  32066.  
  32067.      Return a mapString of all the data members of this topic. The key is the 
  32068.      variable name.  LCP: CountryAttribs 
  32069.      string getDesc() 
  32070.  
  32071.      Get the short description 
  32072.      string getDescLong() 
  32073.  
  32074.      Get the long description 
  32075.      string getDescNative() 
  32076.  
  32077.      Get the native language description 
  32078.      string getNetCode() 
  32079.  
  32080.      Get the internet code for this country 
  32081.  
  32082.  
  32083. ΓòÉΓòÉΓòÉ <hidden> phoenixt.cpp ΓòÉΓòÉΓòÉ
  32084.  
  32085.  
  32086. lyris_Country Class 
  32087.  
  32088.      class lyris_Country 
  32089.  
  32090.      For determining what countries exist, and what languages are spoken & 
  32091.      preferred in each country 
  32092.  
  32093.      Defined in: COUNTRY.H 
  32094.  
  32095.   Create a new country 
  32096.  
  32097.       bool createNew() 
  32098.  
  32099.      Creates a new country/language table row.  LCP: CountryCreate 
  32100.      bool updateDatabase() 
  32101.  
  32102.      Save the current country with the data members that have changed.  LCP: 
  32103.      CountryUpdate 
  32104.      bool VerifyFields() 
  32105.  
  32106.      Verify that all required fields are filled in. 
  32107.  
  32108.   Retrieve data from the database 
  32109.      bool fetchAllCountries(vecString &AllCountries) 
  32110.  
  32111.      Fetch a list of all countries.  LCP: CountryAll 
  32112.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32113.  
  32114.      Fetch a paired list of countries and their native language descriptions, 
  32115.      sorted by english description.  LCP: CountryEngNat 
  32116.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32117.  
  32118.      Fetch a paired list of native language country descriptions, and the 
  32119.      english name of the country. 
  32120.      bool retrieveFromNetCode() 
  32121.  
  32122.      Determine the country that uses the currently set NetCode.  Fills all the 
  32123.      other country attributes with values. LCP: CountryAttNetCode 
  32124.      bool retrieveFromDesc() 
  32125.  
  32126.      Determine the country that uses the currently set description.  Fills all 
  32127.      the other country attributes with values.  LCP: CountryAttribs 
  32128.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32129.  
  32130.      Determine the primary language of the current country.  "Desc" must be 
  32131.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32132.      CountryPrimLang 
  32133.      bool getAllLanguages(vecString &Languages) 
  32134.  
  32135.      Determine all the languages used by the current country.  "Desc" must be 
  32136.      already set.  The result is returned in priority order (highest priority 
  32137.      first) in vecString &Languages.  LCP: CountryLanguages 
  32138.      bool getLanguageList(vecString &Languages) 
  32139.  
  32140.      Get a list of all possible languages, in alphabetical order, returned in 
  32141.      vecString &Languages.  LCP: CountryLangList 
  32142.      bool getLanguageListEngNat(mapString &Languages) 
  32143.  
  32144.      Get a map of all possible languages, their native description in 
  32145.      alphabetical order by english description, returned in in vecString 
  32146.      &Languages.  LCP: CountryLangListEngNat 
  32147.  
  32148.   Delete a country 
  32149.      bool deleteFromDesc() 
  32150.  
  32151.      Delete the country that uses the currently set description.  LCP: 
  32152.      CountryDelete 
  32153.  
  32154.   Set data members 
  32155.      bool setAll(mapString &FieldValues) 
  32156.  
  32157.      Sets all the data members of a topic using the mapString which is passed 
  32158.      to it.  Only the fields present in the mapString are updated, the other 
  32159.      fields are untouched.  LCP: CountryUpdate 
  32160.      bool setDesc(const string &DescSetting) 
  32161.  
  32162.      Set the short description 
  32163.      bool setDescLong(const string &DescLongSetting) 
  32164.  
  32165.      Set the long description 
  32166.      bool setDescNative(const string &DescNativeSetting) 
  32167.  
  32168.      Set the native language description 
  32169.      bool setNetCode(const string &NetCodeSetting) 
  32170.  
  32171.      Set the internet code for this country 
  32172.      bool erase() 
  32173.  
  32174.      Sets all the data members to empty 
  32175.  
  32176.   Get data members 
  32177.      bool getAll(mapString &FieldValues) 
  32178.  
  32179.      Return a mapString of all the data members of this topic. The key is the 
  32180.      variable name.  LCP: CountryAttribs 
  32181.      string getDesc() 
  32182.  
  32183.      Get the short description 
  32184.      string getDescLong() 
  32185.  
  32186.      Get the long description 
  32187.      string getDescNative() 
  32188.  
  32189.      Get the native language description 
  32190.      string getNetCode() 
  32191.  
  32192.      Get the internet code for this country 
  32193.  
  32194.  
  32195. ΓòÉΓòÉΓòÉ <hidden> Respond.h ΓòÉΓòÉΓòÉ
  32196.  
  32197.  
  32198. lyris_Country Class 
  32199.  
  32200.      class lyris_Country 
  32201.  
  32202.      For determining what countries exist, and what languages are spoken & 
  32203.      preferred in each country 
  32204.  
  32205.      Defined in: COUNTRY.H 
  32206.  
  32207.   Create a new country 
  32208.  
  32209.       bool createNew() 
  32210.  
  32211.      Creates a new country/language table row.  LCP: CountryCreate 
  32212.      bool updateDatabase() 
  32213.  
  32214.      Save the current country with the data members that have changed.  LCP: 
  32215.      CountryUpdate 
  32216.      bool VerifyFields() 
  32217.  
  32218.      Verify that all required fields are filled in. 
  32219.  
  32220.   Retrieve data from the database 
  32221.      bool fetchAllCountries(vecString &AllCountries) 
  32222.  
  32223.      Fetch a list of all countries.  LCP: CountryAll 
  32224.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32225.  
  32226.      Fetch a paired list of countries and their native language descriptions, 
  32227.      sorted by english description.  LCP: CountryEngNat 
  32228.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32229.  
  32230.      Fetch a paired list of native language country descriptions, and the 
  32231.      english name of the country. 
  32232.      bool retrieveFromNetCode() 
  32233.  
  32234.      Determine the country that uses the currently set NetCode.  Fills all the 
  32235.      other country attributes with values. LCP: CountryAttNetCode 
  32236.      bool retrieveFromDesc() 
  32237.  
  32238.      Determine the country that uses the currently set description.  Fills all 
  32239.      the other country attributes with values.  LCP: CountryAttribs 
  32240.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32241.  
  32242.      Determine the primary language of the current country.  "Desc" must be 
  32243.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32244.      CountryPrimLang 
  32245.      bool getAllLanguages(vecString &Languages) 
  32246.  
  32247.      Determine all the languages used by the current country.  "Desc" must be 
  32248.      already set.  The result is returned in priority order (highest priority 
  32249.      first) in vecString &Languages.  LCP: CountryLanguages 
  32250.      bool getLanguageList(vecString &Languages) 
  32251.  
  32252.      Get a list of all possible languages, in alphabetical order, returned in 
  32253.      vecString &Languages.  LCP: CountryLangList 
  32254.      bool getLanguageListEngNat(mapString &Languages) 
  32255.  
  32256.      Get a map of all possible languages, their native description in 
  32257.      alphabetical order by english description, returned in in vecString 
  32258.      &Languages.  LCP: CountryLangListEngNat 
  32259.  
  32260.   Delete a country 
  32261.      bool deleteFromDesc() 
  32262.  
  32263.      Delete the country that uses the currently set description.  LCP: 
  32264.      CountryDelete 
  32265.  
  32266.   Set data members 
  32267.      bool setAll(mapString &FieldValues) 
  32268.  
  32269.      Sets all the data members of a topic using the mapString which is passed 
  32270.      to it.  Only the fields present in the mapString are updated, the other 
  32271.      fields are untouched.  LCP: CountryUpdate 
  32272.      bool setDesc(const string &DescSetting) 
  32273.  
  32274.      Set the short description 
  32275.      bool setDescLong(const string &DescLongSetting) 
  32276.  
  32277.      Set the long description 
  32278.      bool setDescNative(const string &DescNativeSetting) 
  32279.  
  32280.      Set the native language description 
  32281.      bool setNetCode(const string &NetCodeSetting) 
  32282.  
  32283.      Set the internet code for this country 
  32284.      bool erase() 
  32285.  
  32286.      Sets all the data members to empty 
  32287.  
  32288.   Get data members 
  32289.      bool getAll(mapString &FieldValues) 
  32290.  
  32291.      Return a mapString of all the data members of this topic. The key is the 
  32292.      variable name.  LCP: CountryAttribs 
  32293.      string getDesc() 
  32294.  
  32295.      Get the short description 
  32296.      string getDescLong() 
  32297.  
  32298.      Get the long description 
  32299.      string getDescNative() 
  32300.  
  32301.      Get the native language description 
  32302.      string getNetCode() 
  32303.  
  32304.      Get the internet code for this country 
  32305.  
  32306.  
  32307. ΓòÉΓòÉΓòÉ <hidden> schedule.h ΓòÉΓòÉΓòÉ
  32308.  
  32309.  
  32310. lyris_Country Class 
  32311.  
  32312.      class lyris_Country 
  32313.  
  32314.      For determining what countries exist, and what languages are spoken & 
  32315.      preferred in each country 
  32316.  
  32317.      Defined in: COUNTRY.H 
  32318.  
  32319.   Create a new country 
  32320.  
  32321.       bool createNew() 
  32322.  
  32323.      Creates a new country/language table row.  LCP: CountryCreate 
  32324.      bool updateDatabase() 
  32325.  
  32326.      Save the current country with the data members that have changed.  LCP: 
  32327.      CountryUpdate 
  32328.      bool VerifyFields() 
  32329.  
  32330.      Verify that all required fields are filled in. 
  32331.  
  32332.   Retrieve data from the database 
  32333.      bool fetchAllCountries(vecString &AllCountries) 
  32334.  
  32335.      Fetch a list of all countries.  LCP: CountryAll 
  32336.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32337.  
  32338.      Fetch a paired list of countries and their native language descriptions, 
  32339.      sorted by english description.  LCP: CountryEngNat 
  32340.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32341.  
  32342.      Fetch a paired list of native language country descriptions, and the 
  32343.      english name of the country. 
  32344.      bool retrieveFromNetCode() 
  32345.  
  32346.      Determine the country that uses the currently set NetCode.  Fills all the 
  32347.      other country attributes with values. LCP: CountryAttNetCode 
  32348.      bool retrieveFromDesc() 
  32349.  
  32350.      Determine the country that uses the currently set description.  Fills all 
  32351.      the other country attributes with values.  LCP: CountryAttribs 
  32352.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32353.  
  32354.      Determine the primary language of the current country.  "Desc" must be 
  32355.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32356.      CountryPrimLang 
  32357.      bool getAllLanguages(vecString &Languages) 
  32358.  
  32359.      Determine all the languages used by the current country.  "Desc" must be 
  32360.      already set.  The result is returned in priority order (highest priority 
  32361.      first) in vecString &Languages.  LCP: CountryLanguages 
  32362.      bool getLanguageList(vecString &Languages) 
  32363.  
  32364.      Get a list of all possible languages, in alphabetical order, returned in 
  32365.      vecString &Languages.  LCP: CountryLangList 
  32366.      bool getLanguageListEngNat(mapString &Languages) 
  32367.  
  32368.      Get a map of all possible languages, their native description in 
  32369.      alphabetical order by english description, returned in in vecString 
  32370.      &Languages.  LCP: CountryLangListEngNat 
  32371.  
  32372.   Delete a country 
  32373.      bool deleteFromDesc() 
  32374.  
  32375.      Delete the country that uses the currently set description.  LCP: 
  32376.      CountryDelete 
  32377.  
  32378.   Set data members 
  32379.      bool setAll(mapString &FieldValues) 
  32380.  
  32381.      Sets all the data members of a topic using the mapString which is passed 
  32382.      to it.  Only the fields present in the mapString are updated, the other 
  32383.      fields are untouched.  LCP: CountryUpdate 
  32384.      bool setDesc(const string &DescSetting) 
  32385.  
  32386.      Set the short description 
  32387.      bool setDescLong(const string &DescLongSetting) 
  32388.  
  32389.      Set the long description 
  32390.      bool setDescNative(const string &DescNativeSetting) 
  32391.  
  32392.      Set the native language description 
  32393.      bool setNetCode(const string &NetCodeSetting) 
  32394.  
  32395.      Set the internet code for this country 
  32396.      bool erase() 
  32397.  
  32398.      Sets all the data members to empty 
  32399.  
  32400.   Get data members 
  32401.      bool getAll(mapString &FieldValues) 
  32402.  
  32403.      Return a mapString of all the data members of this topic. The key is the 
  32404.      variable name.  LCP: CountryAttribs 
  32405.      string getDesc() 
  32406.  
  32407.      Get the short description 
  32408.      string getDescLong() 
  32409.  
  32410.      Get the long description 
  32411.      string getDescNative() 
  32412.  
  32413.      Get the native language description 
  32414.      string getNetCode() 
  32415.  
  32416.      Get the internet code for this country 
  32417.  
  32418.  
  32419. ΓòÉΓòÉΓòÉ <hidden> scode.h ΓòÉΓòÉΓòÉ
  32420.  
  32421.  
  32422. lyris_Country Class 
  32423.  
  32424.      class lyris_Country 
  32425.  
  32426.      For determining what countries exist, and what languages are spoken & 
  32427.      preferred in each country 
  32428.  
  32429.      Defined in: COUNTRY.H 
  32430.  
  32431.   Create a new country 
  32432.  
  32433.       bool createNew() 
  32434.  
  32435.      Creates a new country/language table row.  LCP: CountryCreate 
  32436.      bool updateDatabase() 
  32437.  
  32438.      Save the current country with the data members that have changed.  LCP: 
  32439.      CountryUpdate 
  32440.      bool VerifyFields() 
  32441.  
  32442.      Verify that all required fields are filled in. 
  32443.  
  32444.   Retrieve data from the database 
  32445.      bool fetchAllCountries(vecString &AllCountries) 
  32446.  
  32447.      Fetch a list of all countries.  LCP: CountryAll 
  32448.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32449.  
  32450.      Fetch a paired list of countries and their native language descriptions, 
  32451.      sorted by english description.  LCP: CountryEngNat 
  32452.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32453.  
  32454.      Fetch a paired list of native language country descriptions, and the 
  32455.      english name of the country. 
  32456.      bool retrieveFromNetCode() 
  32457.  
  32458.      Determine the country that uses the currently set NetCode.  Fills all the 
  32459.      other country attributes with values. LCP: CountryAttNetCode 
  32460.      bool retrieveFromDesc() 
  32461.  
  32462.      Determine the country that uses the currently set description.  Fills all 
  32463.      the other country attributes with values.  LCP: CountryAttribs 
  32464.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32465.  
  32466.      Determine the primary language of the current country.  "Desc" must be 
  32467.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32468.      CountryPrimLang 
  32469.      bool getAllLanguages(vecString &Languages) 
  32470.  
  32471.      Determine all the languages used by the current country.  "Desc" must be 
  32472.      already set.  The result is returned in priority order (highest priority 
  32473.      first) in vecString &Languages.  LCP: CountryLanguages 
  32474.      bool getLanguageList(vecString &Languages) 
  32475.  
  32476.      Get a list of all possible languages, in alphabetical order, returned in 
  32477.      vecString &Languages.  LCP: CountryLangList 
  32478.      bool getLanguageListEngNat(mapString &Languages) 
  32479.  
  32480.      Get a map of all possible languages, their native description in 
  32481.      alphabetical order by english description, returned in in vecString 
  32482.      &Languages.  LCP: CountryLangListEngNat 
  32483.  
  32484.   Delete a country 
  32485.      bool deleteFromDesc() 
  32486.  
  32487.      Delete the country that uses the currently set description.  LCP: 
  32488.      CountryDelete 
  32489.  
  32490.   Set data members 
  32491.      bool setAll(mapString &FieldValues) 
  32492.  
  32493.      Sets all the data members of a topic using the mapString which is passed 
  32494.      to it.  Only the fields present in the mapString are updated, the other 
  32495.      fields are untouched.  LCP: CountryUpdate 
  32496.      bool setDesc(const string &DescSetting) 
  32497.  
  32498.      Set the short description 
  32499.      bool setDescLong(const string &DescLongSetting) 
  32500.  
  32501.      Set the long description 
  32502.      bool setDescNative(const string &DescNativeSetting) 
  32503.  
  32504.      Set the native language description 
  32505.      bool setNetCode(const string &NetCodeSetting) 
  32506.  
  32507.      Set the internet code for this country 
  32508.      bool erase() 
  32509.  
  32510.      Sets all the data members to empty 
  32511.  
  32512.   Get data members 
  32513.      bool getAll(mapString &FieldValues) 
  32514.  
  32515.      Return a mapString of all the data members of this topic. The key is the 
  32516.      variable name.  LCP: CountryAttribs 
  32517.      string getDesc() 
  32518.  
  32519.      Get the short description 
  32520.      string getDescLong() 
  32521.  
  32522.      Get the long description 
  32523.      string getDescNative() 
  32524.  
  32525.      Get the native language description 
  32526.      string getNetCode() 
  32527.  
  32528.      Get the internet code for this country 
  32529.  
  32530.  
  32531. ΓòÉΓòÉΓòÉ <hidden> table.cxx ΓòÉΓòÉΓòÉ
  32532.  
  32533.  
  32534. lyris_Country Class 
  32535.  
  32536.      class lyris_Country 
  32537.  
  32538.      For determining what countries exist, and what languages are spoken & 
  32539.      preferred in each country 
  32540.  
  32541.      Defined in: COUNTRY.H 
  32542.  
  32543.   Create a new country 
  32544.  
  32545.       bool createNew() 
  32546.  
  32547.      Creates a new country/language table row.  LCP: CountryCreate 
  32548.      bool updateDatabase() 
  32549.  
  32550.      Save the current country with the data members that have changed.  LCP: 
  32551.      CountryUpdate 
  32552.      bool VerifyFields() 
  32553.  
  32554.      Verify that all required fields are filled in. 
  32555.  
  32556.   Retrieve data from the database 
  32557.      bool fetchAllCountries(vecString &AllCountries) 
  32558.  
  32559.      Fetch a list of all countries.  LCP: CountryAll 
  32560.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32561.  
  32562.      Fetch a paired list of countries and their native language descriptions, 
  32563.      sorted by english description.  LCP: CountryEngNat 
  32564.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32565.  
  32566.      Fetch a paired list of native language country descriptions, and the 
  32567.      english name of the country. 
  32568.      bool retrieveFromNetCode() 
  32569.  
  32570.      Determine the country that uses the currently set NetCode.  Fills all the 
  32571.      other country attributes with values. LCP: CountryAttNetCode 
  32572.      bool retrieveFromDesc() 
  32573.  
  32574.      Determine the country that uses the currently set description.  Fills all 
  32575.      the other country attributes with values.  LCP: CountryAttribs 
  32576.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32577.  
  32578.      Determine the primary language of the current country.  "Desc" must be 
  32579.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32580.      CountryPrimLang 
  32581.      bool getAllLanguages(vecString &Languages) 
  32582.  
  32583.      Determine all the languages used by the current country.  "Desc" must be 
  32584.      already set.  The result is returned in priority order (highest priority 
  32585.      first) in vecString &Languages.  LCP: CountryLanguages 
  32586.      bool getLanguageList(vecString &Languages) 
  32587.  
  32588.      Get a list of all possible languages, in alphabetical order, returned in 
  32589.      vecString &Languages.  LCP: CountryLangList 
  32590.      bool getLanguageListEngNat(mapString &Languages) 
  32591.  
  32592.      Get a map of all possible languages, their native description in 
  32593.      alphabetical order by english description, returned in in vecString 
  32594.      &Languages.  LCP: CountryLangListEngNat 
  32595.  
  32596.   Delete a country 
  32597.      bool deleteFromDesc() 
  32598.  
  32599.      Delete the country that uses the currently set description.  LCP: 
  32600.      CountryDelete 
  32601.  
  32602.   Set data members 
  32603.      bool setAll(mapString &FieldValues) 
  32604.  
  32605.      Sets all the data members of a topic using the mapString which is passed 
  32606.      to it.  Only the fields present in the mapString are updated, the other 
  32607.      fields are untouched.  LCP: CountryUpdate 
  32608.      bool setDesc(const string &DescSetting) 
  32609.  
  32610.      Set the short description 
  32611.      bool setDescLong(const string &DescLongSetting) 
  32612.  
  32613.      Set the long description 
  32614.      bool setDescNative(const string &DescNativeSetting) 
  32615.  
  32616.      Set the native language description 
  32617.      bool setNetCode(const string &NetCodeSetting) 
  32618.  
  32619.      Set the internet code for this country 
  32620.      bool erase() 
  32621.  
  32622.      Sets all the data members to empty 
  32623.  
  32624.   Get data members 
  32625.      bool getAll(mapString &FieldValues) 
  32626.  
  32627.      Return a mapString of all the data members of this topic. The key is the 
  32628.      variable name.  LCP: CountryAttribs 
  32629.      string getDesc() 
  32630.  
  32631.      Get the short description 
  32632.      string getDescLong() 
  32633.  
  32634.      Get the long description 
  32635.      string getDescNative() 
  32636.  
  32637.      Get the native language description 
  32638.      string getNetCode() 
  32639.  
  32640.      Get the internet code for this country 
  32641.  
  32642.  
  32643. ΓòÉΓòÉΓòÉ <hidden>  tcpserv.cxx ΓòÉΓòÉΓòÉ
  32644.  
  32645.  
  32646. lyris_Country Class 
  32647.  
  32648.      class lyris_Country 
  32649.  
  32650.      For determining what countries exist, and what languages are spoken & 
  32651.      preferred in each country 
  32652.  
  32653.      Defined in: COUNTRY.H 
  32654.  
  32655.   Create a new country 
  32656.  
  32657.       bool createNew() 
  32658.  
  32659.      Creates a new country/language table row.  LCP: CountryCreate 
  32660.      bool updateDatabase() 
  32661.  
  32662.      Save the current country with the data members that have changed.  LCP: 
  32663.      CountryUpdate 
  32664.      bool VerifyFields() 
  32665.  
  32666.      Verify that all required fields are filled in. 
  32667.  
  32668.   Retrieve data from the database 
  32669.      bool fetchAllCountries(vecString &AllCountries) 
  32670.  
  32671.      Fetch a list of all countries.  LCP: CountryAll 
  32672.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32673.  
  32674.      Fetch a paired list of countries and their native language descriptions, 
  32675.      sorted by english description.  LCP: CountryEngNat 
  32676.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32677.  
  32678.      Fetch a paired list of native language country descriptions, and the 
  32679.      english name of the country. 
  32680.      bool retrieveFromNetCode() 
  32681.  
  32682.      Determine the country that uses the currently set NetCode.  Fills all the 
  32683.      other country attributes with values. LCP: CountryAttNetCode 
  32684.      bool retrieveFromDesc() 
  32685.  
  32686.      Determine the country that uses the currently set description.  Fills all 
  32687.      the other country attributes with values.  LCP: CountryAttribs 
  32688.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32689.  
  32690.      Determine the primary language of the current country.  "Desc" must be 
  32691.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32692.      CountryPrimLang 
  32693.      bool getAllLanguages(vecString &Languages) 
  32694.  
  32695.      Determine all the languages used by the current country.  "Desc" must be 
  32696.      already set.  The result is returned in priority order (highest priority 
  32697.      first) in vecString &Languages.  LCP: CountryLanguages 
  32698.      bool getLanguageList(vecString &Languages) 
  32699.  
  32700.      Get a list of all possible languages, in alphabetical order, returned in 
  32701.      vecString &Languages.  LCP: CountryLangList 
  32702.      bool getLanguageListEngNat(mapString &Languages) 
  32703.  
  32704.      Get a map of all possible languages, their native description in 
  32705.      alphabetical order by english description, returned in in vecString 
  32706.      &Languages.  LCP: CountryLangListEngNat 
  32707.  
  32708.   Delete a country 
  32709.      bool deleteFromDesc() 
  32710.  
  32711.      Delete the country that uses the currently set description.  LCP: 
  32712.      CountryDelete 
  32713.  
  32714.   Set data members 
  32715.      bool setAll(mapString &FieldValues) 
  32716.  
  32717.      Sets all the data members of a topic using the mapString which is passed 
  32718.      to it.  Only the fields present in the mapString are updated, the other 
  32719.      fields are untouched.  LCP: CountryUpdate 
  32720.      bool setDesc(const string &DescSetting) 
  32721.  
  32722.      Set the short description 
  32723.      bool setDescLong(const string &DescLongSetting) 
  32724.  
  32725.      Set the long description 
  32726.      bool setDescNative(const string &DescNativeSetting) 
  32727.  
  32728.      Set the native language description 
  32729.      bool setNetCode(const string &NetCodeSetting) 
  32730.  
  32731.      Set the internet code for this country 
  32732.      bool erase() 
  32733.  
  32734.      Sets all the data members to empty 
  32735.  
  32736.   Get data members 
  32737.      bool getAll(mapString &FieldValues) 
  32738.  
  32739.      Return a mapString of all the data members of this topic. The key is the 
  32740.      variable name.  LCP: CountryAttribs 
  32741.      string getDesc() 
  32742.  
  32743.      Get the short description 
  32744.      string getDescLong() 
  32745.  
  32746.      Get the long description 
  32747.      string getDescNative() 
  32748.  
  32749.      Get the native language description 
  32750.      string getNetCode() 
  32751.  
  32752.      Get the internet code for this country 
  32753.  
  32754.  
  32755. ΓòÉΓòÉΓòÉ <hidden> !topics.h ΓòÉΓòÉΓòÉ
  32756.  
  32757.  
  32758. lyris_Country Class 
  32759.  
  32760.      class lyris_Country 
  32761.  
  32762.      For determining what countries exist, and what languages are spoken & 
  32763.      preferred in each country 
  32764.  
  32765.      Defined in: COUNTRY.H 
  32766.  
  32767.   Create a new country 
  32768.  
  32769.       bool createNew() 
  32770.  
  32771.      Creates a new country/language table row.  LCP: CountryCreate 
  32772.      bool updateDatabase() 
  32773.  
  32774.      Save the current country with the data members that have changed.  LCP: 
  32775.      CountryUpdate 
  32776.      bool VerifyFields() 
  32777.  
  32778.      Verify that all required fields are filled in. 
  32779.  
  32780.   Retrieve data from the database 
  32781.      bool fetchAllCountries(vecString &AllCountries) 
  32782.  
  32783.      Fetch a list of all countries.  LCP: CountryAll 
  32784.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32785.  
  32786.      Fetch a paired list of countries and their native language descriptions, 
  32787.      sorted by english description.  LCP: CountryEngNat 
  32788.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32789.  
  32790.      Fetch a paired list of native language country descriptions, and the 
  32791.      english name of the country. 
  32792.      bool retrieveFromNetCode() 
  32793.  
  32794.      Determine the country that uses the currently set NetCode.  Fills all the 
  32795.      other country attributes with values. LCP: CountryAttNetCode 
  32796.      bool retrieveFromDesc() 
  32797.  
  32798.      Determine the country that uses the currently set description.  Fills all 
  32799.      the other country attributes with values.  LCP: CountryAttribs 
  32800.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32801.  
  32802.      Determine the primary language of the current country.  "Desc" must be 
  32803.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32804.      CountryPrimLang 
  32805.      bool getAllLanguages(vecString &Languages) 
  32806.  
  32807.      Determine all the languages used by the current country.  "Desc" must be 
  32808.      already set.  The result is returned in priority order (highest priority 
  32809.      first) in vecString &Languages.  LCP: CountryLanguages 
  32810.      bool getLanguageList(vecString &Languages) 
  32811.  
  32812.      Get a list of all possible languages, in alphabetical order, returned in 
  32813.      vecString &Languages.  LCP: CountryLangList 
  32814.      bool getLanguageListEngNat(mapString &Languages) 
  32815.  
  32816.      Get a map of all possible languages, their native description in 
  32817.      alphabetical order by english description, returned in in vecString 
  32818.      &Languages.  LCP: CountryLangListEngNat 
  32819.  
  32820.   Delete a country 
  32821.      bool deleteFromDesc() 
  32822.  
  32823.      Delete the country that uses the currently set description.  LCP: 
  32824.      CountryDelete 
  32825.  
  32826.   Set data members 
  32827.      bool setAll(mapString &FieldValues) 
  32828.  
  32829.      Sets all the data members of a topic using the mapString which is passed 
  32830.      to it.  Only the fields present in the mapString are updated, the other 
  32831.      fields are untouched.  LCP: CountryUpdate 
  32832.      bool setDesc(const string &DescSetting) 
  32833.  
  32834.      Set the short description 
  32835.      bool setDescLong(const string &DescLongSetting) 
  32836.  
  32837.      Set the long description 
  32838.      bool setDescNative(const string &DescNativeSetting) 
  32839.  
  32840.      Set the native language description 
  32841.      bool setNetCode(const string &NetCodeSetting) 
  32842.  
  32843.      Set the internet code for this country 
  32844.      bool erase() 
  32845.  
  32846.      Sets all the data members to empty 
  32847.  
  32848.   Get data members 
  32849.      bool getAll(mapString &FieldValues) 
  32850.  
  32851.      Return a mapString of all the data members of this topic. The key is the 
  32852.      variable name.  LCP: CountryAttribs 
  32853.      string getDesc() 
  32854.  
  32855.      Get the short description 
  32856.      string getDescLong() 
  32857.  
  32858.      Get the long description 
  32859.      string getDescNative() 
  32860.  
  32861.      Get the native language description 
  32862.      string getNetCode() 
  32863.  
  32864.      Get the internet code for this country 
  32865.  
  32866.  
  32867. ΓòÉΓòÉΓòÉ <hidden> "utils.h ΓòÉΓòÉΓòÉ
  32868.  
  32869.  
  32870. lyris_Country Class 
  32871.  
  32872.      class lyris_Country 
  32873.  
  32874.      For determining what countries exist, and what languages are spoken & 
  32875.      preferred in each country 
  32876.  
  32877.      Defined in: COUNTRY.H 
  32878.  
  32879.   Create a new country 
  32880.  
  32881.       bool createNew() 
  32882.  
  32883.      Creates a new country/language table row.  LCP: CountryCreate 
  32884.      bool updateDatabase() 
  32885.  
  32886.      Save the current country with the data members that have changed.  LCP: 
  32887.      CountryUpdate 
  32888.      bool VerifyFields() 
  32889.  
  32890.      Verify that all required fields are filled in. 
  32891.  
  32892.   Retrieve data from the database 
  32893.      bool fetchAllCountries(vecString &AllCountries) 
  32894.  
  32895.      Fetch a list of all countries.  LCP: CountryAll 
  32896.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  32897.  
  32898.      Fetch a paired list of countries and their native language descriptions, 
  32899.      sorted by english description.  LCP: CountryEngNat 
  32900.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  32901.  
  32902.      Fetch a paired list of native language country descriptions, and the 
  32903.      english name of the country. 
  32904.      bool retrieveFromNetCode() 
  32905.  
  32906.      Determine the country that uses the currently set NetCode.  Fills all the 
  32907.      other country attributes with values. LCP: CountryAttNetCode 
  32908.      bool retrieveFromDesc() 
  32909.  
  32910.      Determine the country that uses the currently set description.  Fills all 
  32911.      the other country attributes with values.  LCP: CountryAttribs 
  32912.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  32913.  
  32914.      Determine the primary language of the current country.  "Desc" must be 
  32915.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  32916.      CountryPrimLang 
  32917.      bool getAllLanguages(vecString &Languages) 
  32918.  
  32919.      Determine all the languages used by the current country.  "Desc" must be 
  32920.      already set.  The result is returned in priority order (highest priority 
  32921.      first) in vecString &Languages.  LCP: CountryLanguages 
  32922.      bool getLanguageList(vecString &Languages) 
  32923.  
  32924.      Get a list of all possible languages, in alphabetical order, returned in 
  32925.      vecString &Languages.  LCP: CountryLangList 
  32926.      bool getLanguageListEngNat(mapString &Languages) 
  32927.  
  32928.      Get a map of all possible languages, their native description in 
  32929.      alphabetical order by english description, returned in in vecString 
  32930.      &Languages.  LCP: CountryLangListEngNat 
  32931.  
  32932.   Delete a country 
  32933.      bool deleteFromDesc() 
  32934.  
  32935.      Delete the country that uses the currently set description.  LCP: 
  32936.      CountryDelete 
  32937.  
  32938.   Set data members 
  32939.      bool setAll(mapString &FieldValues) 
  32940.  
  32941.      Sets all the data members of a topic using the mapString which is passed 
  32942.      to it.  Only the fields present in the mapString are updated, the other 
  32943.      fields are untouched.  LCP: CountryUpdate 
  32944.      bool setDesc(const string &DescSetting) 
  32945.  
  32946.      Set the short description 
  32947.      bool setDescLong(const string &DescLongSetting) 
  32948.  
  32949.      Set the long description 
  32950.      bool setDescNative(const string &DescNativeSetting) 
  32951.  
  32952.      Set the native language description 
  32953.      bool setNetCode(const string &NetCodeSetting) 
  32954.  
  32955.      Set the internet code for this country 
  32956.      bool erase() 
  32957.  
  32958.      Sets all the data members to empty 
  32959.  
  32960.   Get data members 
  32961.      bool getAll(mapString &FieldValues) 
  32962.  
  32963.      Return a mapString of all the data members of this topic. The key is the 
  32964.      variable name.  LCP: CountryAttribs 
  32965.      string getDesc() 
  32966.  
  32967.      Get the short description 
  32968.      string getDescLong() 
  32969.  
  32970.      Get the long description 
  32971.      string getDescNative() 
  32972.  
  32973.      Get the native language description 
  32974.      string getNetCode() 
  32975.  
  32976.      Get the internet code for this country 
  32977.  
  32978.  
  32979. ΓòÉΓòÉΓòÉ <hidden> #tcpserv.h ΓòÉΓòÉΓòÉ
  32980.  
  32981.  
  32982. lyris_Country Class 
  32983.  
  32984.      class lyris_Country 
  32985.  
  32986.      For determining what countries exist, and what languages are spoken & 
  32987.      preferred in each country 
  32988.  
  32989.      Defined in: COUNTRY.H 
  32990.  
  32991.   Create a new country 
  32992.  
  32993.       bool createNew() 
  32994.  
  32995.      Creates a new country/language table row.  LCP: CountryCreate 
  32996.      bool updateDatabase() 
  32997.  
  32998.      Save the current country with the data members that have changed.  LCP: 
  32999.      CountryUpdate 
  33000.      bool VerifyFields() 
  33001.  
  33002.      Verify that all required fields are filled in. 
  33003.  
  33004.   Retrieve data from the database 
  33005.      bool fetchAllCountries(vecString &AllCountries) 
  33006.  
  33007.      Fetch a list of all countries.  LCP: CountryAll 
  33008.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33009.  
  33010.      Fetch a paired list of countries and their native language descriptions, 
  33011.      sorted by english description.  LCP: CountryEngNat 
  33012.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33013.  
  33014.      Fetch a paired list of native language country descriptions, and the 
  33015.      english name of the country. 
  33016.      bool retrieveFromNetCode() 
  33017.  
  33018.      Determine the country that uses the currently set NetCode.  Fills all the 
  33019.      other country attributes with values. LCP: CountryAttNetCode 
  33020.      bool retrieveFromDesc() 
  33021.  
  33022.      Determine the country that uses the currently set description.  Fills all 
  33023.      the other country attributes with values.  LCP: CountryAttribs 
  33024.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33025.  
  33026.      Determine the primary language of the current country.  "Desc" must be 
  33027.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33028.      CountryPrimLang 
  33029.      bool getAllLanguages(vecString &Languages) 
  33030.  
  33031.      Determine all the languages used by the current country.  "Desc" must be 
  33032.      already set.  The result is returned in priority order (highest priority 
  33033.      first) in vecString &Languages.  LCP: CountryLanguages 
  33034.      bool getLanguageList(vecString &Languages) 
  33035.  
  33036.      Get a list of all possible languages, in alphabetical order, returned in 
  33037.      vecString &Languages.  LCP: CountryLangList 
  33038.      bool getLanguageListEngNat(mapString &Languages) 
  33039.  
  33040.      Get a map of all possible languages, their native description in 
  33041.      alphabetical order by english description, returned in in vecString 
  33042.      &Languages.  LCP: CountryLangListEngNat 
  33043.  
  33044.   Delete a country 
  33045.      bool deleteFromDesc() 
  33046.  
  33047.      Delete the country that uses the currently set description.  LCP: 
  33048.      CountryDelete 
  33049.  
  33050.   Set data members 
  33051.      bool setAll(mapString &FieldValues) 
  33052.  
  33053.      Sets all the data members of a topic using the mapString which is passed 
  33054.      to it.  Only the fields present in the mapString are updated, the other 
  33055.      fields are untouched.  LCP: CountryUpdate 
  33056.      bool setDesc(const string &DescSetting) 
  33057.  
  33058.      Set the short description 
  33059.      bool setDescLong(const string &DescLongSetting) 
  33060.  
  33061.      Set the long description 
  33062.      bool setDescNative(const string &DescNativeSetting) 
  33063.  
  33064.      Set the native language description 
  33065.      bool setNetCode(const string &NetCodeSetting) 
  33066.  
  33067.      Set the internet code for this country 
  33068.      bool erase() 
  33069.  
  33070.      Sets all the data members to empty 
  33071.  
  33072.   Get data members 
  33073.      bool getAll(mapString &FieldValues) 
  33074.  
  33075.      Return a mapString of all the data members of this topic. The key is the 
  33076.      variable name.  LCP: CountryAttribs 
  33077.      string getDesc() 
  33078.  
  33079.      Get the short description 
  33080.      string getDescLong() 
  33081.  
  33082.      Get the long description 
  33083.      string getDescNative() 
  33084.  
  33085.      Get the native language description 
  33086.      string getNetCode() 
  33087.  
  33088.      Get the internet code for this country 
  33089.  
  33090.  
  33091. ΓòÉΓòÉΓòÉ <hidden> $table.h ΓòÉΓòÉΓòÉ
  33092.  
  33093.  
  33094. lyris_Country Class 
  33095.  
  33096.      class lyris_Country 
  33097.  
  33098.      For determining what countries exist, and what languages are spoken & 
  33099.      preferred in each country 
  33100.  
  33101.      Defined in: COUNTRY.H 
  33102.  
  33103.   Create a new country 
  33104.  
  33105.       bool createNew() 
  33106.  
  33107.      Creates a new country/language table row.  LCP: CountryCreate 
  33108.      bool updateDatabase() 
  33109.  
  33110.      Save the current country with the data members that have changed.  LCP: 
  33111.      CountryUpdate 
  33112.      bool VerifyFields() 
  33113.  
  33114.      Verify that all required fields are filled in. 
  33115.  
  33116.   Retrieve data from the database 
  33117.      bool fetchAllCountries(vecString &AllCountries) 
  33118.  
  33119.      Fetch a list of all countries.  LCP: CountryAll 
  33120.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33121.  
  33122.      Fetch a paired list of countries and their native language descriptions, 
  33123.      sorted by english description.  LCP: CountryEngNat 
  33124.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33125.  
  33126.      Fetch a paired list of native language country descriptions, and the 
  33127.      english name of the country. 
  33128.      bool retrieveFromNetCode() 
  33129.  
  33130.      Determine the country that uses the currently set NetCode.  Fills all the 
  33131.      other country attributes with values. LCP: CountryAttNetCode 
  33132.      bool retrieveFromDesc() 
  33133.  
  33134.      Determine the country that uses the currently set description.  Fills all 
  33135.      the other country attributes with values.  LCP: CountryAttribs 
  33136.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33137.  
  33138.      Determine the primary language of the current country.  "Desc" must be 
  33139.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33140.      CountryPrimLang 
  33141.      bool getAllLanguages(vecString &Languages) 
  33142.  
  33143.      Determine all the languages used by the current country.  "Desc" must be 
  33144.      already set.  The result is returned in priority order (highest priority 
  33145.      first) in vecString &Languages.  LCP: CountryLanguages 
  33146.      bool getLanguageList(vecString &Languages) 
  33147.  
  33148.      Get a list of all possible languages, in alphabetical order, returned in 
  33149.      vecString &Languages.  LCP: CountryLangList 
  33150.      bool getLanguageListEngNat(mapString &Languages) 
  33151.  
  33152.      Get a map of all possible languages, their native description in 
  33153.      alphabetical order by english description, returned in in vecString 
  33154.      &Languages.  LCP: CountryLangListEngNat 
  33155.  
  33156.   Delete a country 
  33157.      bool deleteFromDesc() 
  33158.  
  33159.      Delete the country that uses the currently set description.  LCP: 
  33160.      CountryDelete 
  33161.  
  33162.   Set data members 
  33163.      bool setAll(mapString &FieldValues) 
  33164.  
  33165.      Sets all the data members of a topic using the mapString which is passed 
  33166.      to it.  Only the fields present in the mapString are updated, the other 
  33167.      fields are untouched.  LCP: CountryUpdate 
  33168.      bool setDesc(const string &DescSetting) 
  33169.  
  33170.      Set the short description 
  33171.      bool setDescLong(const string &DescLongSetting) 
  33172.  
  33173.      Set the long description 
  33174.      bool setDescNative(const string &DescNativeSetting) 
  33175.  
  33176.      Set the native language description 
  33177.      bool setNetCode(const string &NetCodeSetting) 
  33178.  
  33179.      Set the internet code for this country 
  33180.      bool erase() 
  33181.  
  33182.      Sets all the data members to empty 
  33183.  
  33184.   Get data members 
  33185.      bool getAll(mapString &FieldValues) 
  33186.  
  33187.      Return a mapString of all the data members of this topic. The key is the 
  33188.      variable name.  LCP: CountryAttribs 
  33189.      string getDesc() 
  33190.  
  33191.      Get the short description 
  33192.      string getDescLong() 
  33193.  
  33194.      Get the long description 
  33195.      string getDescNative() 
  33196.  
  33197.      Get the native language description 
  33198.      string getNetCode() 
  33199.  
  33200.      Get the internet code for this country 
  33201.  
  33202.  
  33203. ΓòÉΓòÉΓòÉ <hidden> %stdlyris.h ΓòÉΓòÉΓòÉ
  33204.  
  33205.  
  33206. lyris_Country Class 
  33207.  
  33208.      class lyris_Country 
  33209.  
  33210.      For determining what countries exist, and what languages are spoken & 
  33211.      preferred in each country 
  33212.  
  33213.      Defined in: COUNTRY.H 
  33214.  
  33215.   Create a new country 
  33216.  
  33217.       bool createNew() 
  33218.  
  33219.      Creates a new country/language table row.  LCP: CountryCreate 
  33220.      bool updateDatabase() 
  33221.  
  33222.      Save the current country with the data members that have changed.  LCP: 
  33223.      CountryUpdate 
  33224.      bool VerifyFields() 
  33225.  
  33226.      Verify that all required fields are filled in. 
  33227.  
  33228.   Retrieve data from the database 
  33229.      bool fetchAllCountries(vecString &AllCountries) 
  33230.  
  33231.      Fetch a list of all countries.  LCP: CountryAll 
  33232.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33233.  
  33234.      Fetch a paired list of countries and their native language descriptions, 
  33235.      sorted by english description.  LCP: CountryEngNat 
  33236.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33237.  
  33238.      Fetch a paired list of native language country descriptions, and the 
  33239.      english name of the country. 
  33240.      bool retrieveFromNetCode() 
  33241.  
  33242.      Determine the country that uses the currently set NetCode.  Fills all the 
  33243.      other country attributes with values. LCP: CountryAttNetCode 
  33244.      bool retrieveFromDesc() 
  33245.  
  33246.      Determine the country that uses the currently set description.  Fills all 
  33247.      the other country attributes with values.  LCP: CountryAttribs 
  33248.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33249.  
  33250.      Determine the primary language of the current country.  "Desc" must be 
  33251.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33252.      CountryPrimLang 
  33253.      bool getAllLanguages(vecString &Languages) 
  33254.  
  33255.      Determine all the languages used by the current country.  "Desc" must be 
  33256.      already set.  The result is returned in priority order (highest priority 
  33257.      first) in vecString &Languages.  LCP: CountryLanguages 
  33258.      bool getLanguageList(vecString &Languages) 
  33259.  
  33260.      Get a list of all possible languages, in alphabetical order, returned in 
  33261.      vecString &Languages.  LCP: CountryLangList 
  33262.      bool getLanguageListEngNat(mapString &Languages) 
  33263.  
  33264.      Get a map of all possible languages, their native description in 
  33265.      alphabetical order by english description, returned in in vecString 
  33266.      &Languages.  LCP: CountryLangListEngNat 
  33267.  
  33268.   Delete a country 
  33269.      bool deleteFromDesc() 
  33270.  
  33271.      Delete the country that uses the currently set description.  LCP: 
  33272.      CountryDelete 
  33273.  
  33274.   Set data members 
  33275.      bool setAll(mapString &FieldValues) 
  33276.  
  33277.      Sets all the data members of a topic using the mapString which is passed 
  33278.      to it.  Only the fields present in the mapString are updated, the other 
  33279.      fields are untouched.  LCP: CountryUpdate 
  33280.      bool setDesc(const string &DescSetting) 
  33281.  
  33282.      Set the short description 
  33283.      bool setDescLong(const string &DescLongSetting) 
  33284.  
  33285.      Set the long description 
  33286.      bool setDescNative(const string &DescNativeSetting) 
  33287.  
  33288.      Set the native language description 
  33289.      bool setNetCode(const string &NetCodeSetting) 
  33290.  
  33291.      Set the internet code for this country 
  33292.      bool erase() 
  33293.  
  33294.      Sets all the data members to empty 
  33295.  
  33296.   Get data members 
  33297.      bool getAll(mapString &FieldValues) 
  33298.  
  33299.      Return a mapString of all the data members of this topic. The key is the 
  33300.      variable name.  LCP: CountryAttribs 
  33301.      string getDesc() 
  33302.  
  33303.      Get the short description 
  33304.      string getDescLong() 
  33305.  
  33306.      Get the long description 
  33307.      string getDescNative() 
  33308.  
  33309.      Get the native language description 
  33310.      string getNetCode() 
  33311.  
  33312.      Get the internet code for this country 
  33313.  
  33314.  
  33315. ΓòÉΓòÉΓòÉ <hidden> &scode.cxx ΓòÉΓòÉΓòÉ
  33316.  
  33317.  
  33318. lyris_Country Class 
  33319.  
  33320.      class lyris_Country 
  33321.  
  33322.      For determining what countries exist, and what languages are spoken & 
  33323.      preferred in each country 
  33324.  
  33325.      Defined in: COUNTRY.H 
  33326.  
  33327.   Create a new country 
  33328.  
  33329.       bool createNew() 
  33330.  
  33331.      Creates a new country/language table row.  LCP: CountryCreate 
  33332.      bool updateDatabase() 
  33333.  
  33334.      Save the current country with the data members that have changed.  LCP: 
  33335.      CountryUpdate 
  33336.      bool VerifyFields() 
  33337.  
  33338.      Verify that all required fields are filled in. 
  33339.  
  33340.   Retrieve data from the database 
  33341.      bool fetchAllCountries(vecString &AllCountries) 
  33342.  
  33343.      Fetch a list of all countries.  LCP: CountryAll 
  33344.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33345.  
  33346.      Fetch a paired list of countries and their native language descriptions, 
  33347.      sorted by english description.  LCP: CountryEngNat 
  33348.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33349.  
  33350.      Fetch a paired list of native language country descriptions, and the 
  33351.      english name of the country. 
  33352.      bool retrieveFromNetCode() 
  33353.  
  33354.      Determine the country that uses the currently set NetCode.  Fills all the 
  33355.      other country attributes with values. LCP: CountryAttNetCode 
  33356.      bool retrieveFromDesc() 
  33357.  
  33358.      Determine the country that uses the currently set description.  Fills all 
  33359.      the other country attributes with values.  LCP: CountryAttribs 
  33360.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33361.  
  33362.      Determine the primary language of the current country.  "Desc" must be 
  33363.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33364.      CountryPrimLang 
  33365.      bool getAllLanguages(vecString &Languages) 
  33366.  
  33367.      Determine all the languages used by the current country.  "Desc" must be 
  33368.      already set.  The result is returned in priority order (highest priority 
  33369.      first) in vecString &Languages.  LCP: CountryLanguages 
  33370.      bool getLanguageList(vecString &Languages) 
  33371.  
  33372.      Get a list of all possible languages, in alphabetical order, returned in 
  33373.      vecString &Languages.  LCP: CountryLangList 
  33374.      bool getLanguageListEngNat(mapString &Languages) 
  33375.  
  33376.      Get a map of all possible languages, their native description in 
  33377.      alphabetical order by english description, returned in in vecString 
  33378.      &Languages.  LCP: CountryLangListEngNat 
  33379.  
  33380.   Delete a country 
  33381.      bool deleteFromDesc() 
  33382.  
  33383.      Delete the country that uses the currently set description.  LCP: 
  33384.      CountryDelete 
  33385.  
  33386.   Set data members 
  33387.      bool setAll(mapString &FieldValues) 
  33388.  
  33389.      Sets all the data members of a topic using the mapString which is passed 
  33390.      to it.  Only the fields present in the mapString are updated, the other 
  33391.      fields are untouched.  LCP: CountryUpdate 
  33392.      bool setDesc(const string &DescSetting) 
  33393.  
  33394.      Set the short description 
  33395.      bool setDescLong(const string &DescLongSetting) 
  33396.  
  33397.      Set the long description 
  33398.      bool setDescNative(const string &DescNativeSetting) 
  33399.  
  33400.      Set the native language description 
  33401.      bool setNetCode(const string &NetCodeSetting) 
  33402.  
  33403.      Set the internet code for this country 
  33404.      bool erase() 
  33405.  
  33406.      Sets all the data members to empty 
  33407.  
  33408.   Get data members 
  33409.      bool getAll(mapString &FieldValues) 
  33410.  
  33411.      Return a mapString of all the data members of this topic. The key is the 
  33412.      variable name.  LCP: CountryAttribs 
  33413.      string getDesc() 
  33414.  
  33415.      Get the short description 
  33416.      string getDescLong() 
  33417.  
  33418.      Get the long description 
  33419.      string getDescNative() 
  33420.  
  33421.      Get the native language description 
  33422.      string getNetCode() 
  33423.  
  33424.      Get the internet code for this country 
  33425.  
  33426.  
  33427. ΓòÉΓòÉΓòÉ <hidden> 'schedule.cxx ΓòÉΓòÉΓòÉ
  33428.  
  33429.  
  33430. lyris_Country Class 
  33431.  
  33432.      class lyris_Country 
  33433.  
  33434.      For determining what countries exist, and what languages are spoken & 
  33435.      preferred in each country 
  33436.  
  33437.      Defined in: COUNTRY.H 
  33438.  
  33439.   Create a new country 
  33440.  
  33441.       bool createNew() 
  33442.  
  33443.      Creates a new country/language table row.  LCP: CountryCreate 
  33444.      bool updateDatabase() 
  33445.  
  33446.      Save the current country with the data members that have changed.  LCP: 
  33447.      CountryUpdate 
  33448.      bool VerifyFields() 
  33449.  
  33450.      Verify that all required fields are filled in. 
  33451.  
  33452.   Retrieve data from the database 
  33453.      bool fetchAllCountries(vecString &AllCountries) 
  33454.  
  33455.      Fetch a list of all countries.  LCP: CountryAll 
  33456.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33457.  
  33458.      Fetch a paired list of countries and their native language descriptions, 
  33459.      sorted by english description.  LCP: CountryEngNat 
  33460.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33461.  
  33462.      Fetch a paired list of native language country descriptions, and the 
  33463.      english name of the country. 
  33464.      bool retrieveFromNetCode() 
  33465.  
  33466.      Determine the country that uses the currently set NetCode.  Fills all the 
  33467.      other country attributes with values. LCP: CountryAttNetCode 
  33468.      bool retrieveFromDesc() 
  33469.  
  33470.      Determine the country that uses the currently set description.  Fills all 
  33471.      the other country attributes with values.  LCP: CountryAttribs 
  33472.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33473.  
  33474.      Determine the primary language of the current country.  "Desc" must be 
  33475.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33476.      CountryPrimLang 
  33477.      bool getAllLanguages(vecString &Languages) 
  33478.  
  33479.      Determine all the languages used by the current country.  "Desc" must be 
  33480.      already set.  The result is returned in priority order (highest priority 
  33481.      first) in vecString &Languages.  LCP: CountryLanguages 
  33482.      bool getLanguageList(vecString &Languages) 
  33483.  
  33484.      Get a list of all possible languages, in alphabetical order, returned in 
  33485.      vecString &Languages.  LCP: CountryLangList 
  33486.      bool getLanguageListEngNat(mapString &Languages) 
  33487.  
  33488.      Get a map of all possible languages, their native description in 
  33489.      alphabetical order by english description, returned in in vecString 
  33490.      &Languages.  LCP: CountryLangListEngNat 
  33491.  
  33492.   Delete a country 
  33493.      bool deleteFromDesc() 
  33494.  
  33495.      Delete the country that uses the currently set description.  LCP: 
  33496.      CountryDelete 
  33497.  
  33498.   Set data members 
  33499.      bool setAll(mapString &FieldValues) 
  33500.  
  33501.      Sets all the data members of a topic using the mapString which is passed 
  33502.      to it.  Only the fields present in the mapString are updated, the other 
  33503.      fields are untouched.  LCP: CountryUpdate 
  33504.      bool setDesc(const string &DescSetting) 
  33505.  
  33506.      Set the short description 
  33507.      bool setDescLong(const string &DescLongSetting) 
  33508.  
  33509.      Set the long description 
  33510.      bool setDescNative(const string &DescNativeSetting) 
  33511.  
  33512.      Set the native language description 
  33513.      bool setNetCode(const string &NetCodeSetting) 
  33514.  
  33515.      Set the internet code for this country 
  33516.      bool erase() 
  33517.  
  33518.      Sets all the data members to empty 
  33519.  
  33520.   Get data members 
  33521.      bool getAll(mapString &FieldValues) 
  33522.  
  33523.      Return a mapString of all the data members of this topic. The key is the 
  33524.      variable name.  LCP: CountryAttribs 
  33525.      string getDesc() 
  33526.  
  33527.      Get the short description 
  33528.      string getDescLong() 
  33529.  
  33530.      Get the long description 
  33531.      string getDescNative() 
  33532.  
  33533.      Get the native language description 
  33534.      string getNetCode() 
  33535.  
  33536.      Get the internet code for this country 
  33537.  
  33538.  
  33539. ΓòÉΓòÉΓòÉ <hidden> (phrases.h ΓòÉΓòÉΓòÉ
  33540.  
  33541.  
  33542. lyris_Country Class 
  33543.  
  33544.      class lyris_Country 
  33545.  
  33546.      For determining what countries exist, and what languages are spoken & 
  33547.      preferred in each country 
  33548.  
  33549.      Defined in: COUNTRY.H 
  33550.  
  33551.   Create a new country 
  33552.  
  33553.       bool createNew() 
  33554.  
  33555.      Creates a new country/language table row.  LCP: CountryCreate 
  33556.      bool updateDatabase() 
  33557.  
  33558.      Save the current country with the data members that have changed.  LCP: 
  33559.      CountryUpdate 
  33560.      bool VerifyFields() 
  33561.  
  33562.      Verify that all required fields are filled in. 
  33563.  
  33564.   Retrieve data from the database 
  33565.      bool fetchAllCountries(vecString &AllCountries) 
  33566.  
  33567.      Fetch a list of all countries.  LCP: CountryAll 
  33568.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33569.  
  33570.      Fetch a paired list of countries and their native language descriptions, 
  33571.      sorted by english description.  LCP: CountryEngNat 
  33572.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33573.  
  33574.      Fetch a paired list of native language country descriptions, and the 
  33575.      english name of the country. 
  33576.      bool retrieveFromNetCode() 
  33577.  
  33578.      Determine the country that uses the currently set NetCode.  Fills all the 
  33579.      other country attributes with values. LCP: CountryAttNetCode 
  33580.      bool retrieveFromDesc() 
  33581.  
  33582.      Determine the country that uses the currently set description.  Fills all 
  33583.      the other country attributes with values.  LCP: CountryAttribs 
  33584.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33585.  
  33586.      Determine the primary language of the current country.  "Desc" must be 
  33587.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33588.      CountryPrimLang 
  33589.      bool getAllLanguages(vecString &Languages) 
  33590.  
  33591.      Determine all the languages used by the current country.  "Desc" must be 
  33592.      already set.  The result is returned in priority order (highest priority 
  33593.      first) in vecString &Languages.  LCP: CountryLanguages 
  33594.      bool getLanguageList(vecString &Languages) 
  33595.  
  33596.      Get a list of all possible languages, in alphabetical order, returned in 
  33597.      vecString &Languages.  LCP: CountryLangList 
  33598.      bool getLanguageListEngNat(mapString &Languages) 
  33599.  
  33600.      Get a map of all possible languages, their native description in 
  33601.      alphabetical order by english description, returned in in vecString 
  33602.      &Languages.  LCP: CountryLangListEngNat 
  33603.  
  33604.   Delete a country 
  33605.      bool deleteFromDesc() 
  33606.  
  33607.      Delete the country that uses the currently set description.  LCP: 
  33608.      CountryDelete 
  33609.  
  33610.   Set data members 
  33611.      bool setAll(mapString &FieldValues) 
  33612.  
  33613.      Sets all the data members of a topic using the mapString which is passed 
  33614.      to it.  Only the fields present in the mapString are updated, the other 
  33615.      fields are untouched.  LCP: CountryUpdate 
  33616.      bool setDesc(const string &DescSetting) 
  33617.  
  33618.      Set the short description 
  33619.      bool setDescLong(const string &DescLongSetting) 
  33620.  
  33621.      Set the long description 
  33622.      bool setDescNative(const string &DescNativeSetting) 
  33623.  
  33624.      Set the native language description 
  33625.      bool setNetCode(const string &NetCodeSetting) 
  33626.  
  33627.      Set the internet code for this country 
  33628.      bool erase() 
  33629.  
  33630.      Sets all the data members to empty 
  33631.  
  33632.   Get data members 
  33633.      bool getAll(mapString &FieldValues) 
  33634.  
  33635.      Return a mapString of all the data members of this topic. The key is the 
  33636.      variable name.  LCP: CountryAttribs 
  33637.      string getDesc() 
  33638.  
  33639.      Get the short description 
  33640.      string getDescLong() 
  33641.  
  33642.      Get the long description 
  33643.      string getDescNative() 
  33644.  
  33645.      Get the native language description 
  33646.      string getNetCode() 
  33647.  
  33648.      Get the internet code for this country 
  33649.  
  33650.  
  33651. ΓòÉΓòÉΓòÉ <hidden> )people.h ΓòÉΓòÉΓòÉ
  33652.  
  33653.  
  33654. lyris_Country Class 
  33655.  
  33656.      class lyris_Country 
  33657.  
  33658.      For determining what countries exist, and what languages are spoken & 
  33659.      preferred in each country 
  33660.  
  33661.      Defined in: COUNTRY.H 
  33662.  
  33663.   Create a new country 
  33664.  
  33665.       bool createNew() 
  33666.  
  33667.      Creates a new country/language table row.  LCP: CountryCreate 
  33668.      bool updateDatabase() 
  33669.  
  33670.      Save the current country with the data members that have changed.  LCP: 
  33671.      CountryUpdate 
  33672.      bool VerifyFields() 
  33673.  
  33674.      Verify that all required fields are filled in. 
  33675.  
  33676.   Retrieve data from the database 
  33677.      bool fetchAllCountries(vecString &AllCountries) 
  33678.  
  33679.      Fetch a list of all countries.  LCP: CountryAll 
  33680.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33681.  
  33682.      Fetch a paired list of countries and their native language descriptions, 
  33683.      sorted by english description.  LCP: CountryEngNat 
  33684.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33685.  
  33686.      Fetch a paired list of native language country descriptions, and the 
  33687.      english name of the country. 
  33688.      bool retrieveFromNetCode() 
  33689.  
  33690.      Determine the country that uses the currently set NetCode.  Fills all the 
  33691.      other country attributes with values. LCP: CountryAttNetCode 
  33692.      bool retrieveFromDesc() 
  33693.  
  33694.      Determine the country that uses the currently set description.  Fills all 
  33695.      the other country attributes with values.  LCP: CountryAttribs 
  33696.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33697.  
  33698.      Determine the primary language of the current country.  "Desc" must be 
  33699.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33700.      CountryPrimLang 
  33701.      bool getAllLanguages(vecString &Languages) 
  33702.  
  33703.      Determine all the languages used by the current country.  "Desc" must be 
  33704.      already set.  The result is returned in priority order (highest priority 
  33705.      first) in vecString &Languages.  LCP: CountryLanguages 
  33706.      bool getLanguageList(vecString &Languages) 
  33707.  
  33708.      Get a list of all possible languages, in alphabetical order, returned in 
  33709.      vecString &Languages.  LCP: CountryLangList 
  33710.      bool getLanguageListEngNat(mapString &Languages) 
  33711.  
  33712.      Get a map of all possible languages, their native description in 
  33713.      alphabetical order by english description, returned in in vecString 
  33714.      &Languages.  LCP: CountryLangListEngNat 
  33715.  
  33716.   Delete a country 
  33717.      bool deleteFromDesc() 
  33718.  
  33719.      Delete the country that uses the currently set description.  LCP: 
  33720.      CountryDelete 
  33721.  
  33722.   Set data members 
  33723.      bool setAll(mapString &FieldValues) 
  33724.  
  33725.      Sets all the data members of a topic using the mapString which is passed 
  33726.      to it.  Only the fields present in the mapString are updated, the other 
  33727.      fields are untouched.  LCP: CountryUpdate 
  33728.      bool setDesc(const string &DescSetting) 
  33729.  
  33730.      Set the short description 
  33731.      bool setDescLong(const string &DescLongSetting) 
  33732.  
  33733.      Set the long description 
  33734.      bool setDescNative(const string &DescNativeSetting) 
  33735.  
  33736.      Set the native language description 
  33737.      bool setNetCode(const string &NetCodeSetting) 
  33738.  
  33739.      Set the internet code for this country 
  33740.      bool erase() 
  33741.  
  33742.      Sets all the data members to empty 
  33743.  
  33744.   Get data members 
  33745.      bool getAll(mapString &FieldValues) 
  33746.  
  33747.      Return a mapString of all the data members of this topic. The key is the 
  33748.      variable name.  LCP: CountryAttribs 
  33749.      string getDesc() 
  33750.  
  33751.      Get the short description 
  33752.      string getDescLong() 
  33753.  
  33754.      Get the long description 
  33755.      string getDescNative() 
  33756.  
  33757.      Get the native language description 
  33758.      string getNetCode() 
  33759.  
  33760.      Get the internet code for this country 
  33761.  
  33762.  
  33763. ΓòÉΓòÉΓòÉ <hidden> *outmail.h ΓòÉΓòÉΓòÉ
  33764.  
  33765.  
  33766. lyris_Country Class 
  33767.  
  33768.      class lyris_Country 
  33769.  
  33770.      For determining what countries exist, and what languages are spoken & 
  33771.      preferred in each country 
  33772.  
  33773.      Defined in: COUNTRY.H 
  33774.  
  33775.   Create a new country 
  33776.  
  33777.       bool createNew() 
  33778.  
  33779.      Creates a new country/language table row.  LCP: CountryCreate 
  33780.      bool updateDatabase() 
  33781.  
  33782.      Save the current country with the data members that have changed.  LCP: 
  33783.      CountryUpdate 
  33784.      bool VerifyFields() 
  33785.  
  33786.      Verify that all required fields are filled in. 
  33787.  
  33788.   Retrieve data from the database 
  33789.      bool fetchAllCountries(vecString &AllCountries) 
  33790.  
  33791.      Fetch a list of all countries.  LCP: CountryAll 
  33792.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33793.  
  33794.      Fetch a paired list of countries and their native language descriptions, 
  33795.      sorted by english description.  LCP: CountryEngNat 
  33796.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33797.  
  33798.      Fetch a paired list of native language country descriptions, and the 
  33799.      english name of the country. 
  33800.      bool retrieveFromNetCode() 
  33801.  
  33802.      Determine the country that uses the currently set NetCode.  Fills all the 
  33803.      other country attributes with values. LCP: CountryAttNetCode 
  33804.      bool retrieveFromDesc() 
  33805.  
  33806.      Determine the country that uses the currently set description.  Fills all 
  33807.      the other country attributes with values.  LCP: CountryAttribs 
  33808.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33809.  
  33810.      Determine the primary language of the current country.  "Desc" must be 
  33811.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33812.      CountryPrimLang 
  33813.      bool getAllLanguages(vecString &Languages) 
  33814.  
  33815.      Determine all the languages used by the current country.  "Desc" must be 
  33816.      already set.  The result is returned in priority order (highest priority 
  33817.      first) in vecString &Languages.  LCP: CountryLanguages 
  33818.      bool getLanguageList(vecString &Languages) 
  33819.  
  33820.      Get a list of all possible languages, in alphabetical order, returned in 
  33821.      vecString &Languages.  LCP: CountryLangList 
  33822.      bool getLanguageListEngNat(mapString &Languages) 
  33823.  
  33824.      Get a map of all possible languages, their native description in 
  33825.      alphabetical order by english description, returned in in vecString 
  33826.      &Languages.  LCP: CountryLangListEngNat 
  33827.  
  33828.   Delete a country 
  33829.      bool deleteFromDesc() 
  33830.  
  33831.      Delete the country that uses the currently set description.  LCP: 
  33832.      CountryDelete 
  33833.  
  33834.   Set data members 
  33835.      bool setAll(mapString &FieldValues) 
  33836.  
  33837.      Sets all the data members of a topic using the mapString which is passed 
  33838.      to it.  Only the fields present in the mapString are updated, the other 
  33839.      fields are untouched.  LCP: CountryUpdate 
  33840.      bool setDesc(const string &DescSetting) 
  33841.  
  33842.      Set the short description 
  33843.      bool setDescLong(const string &DescLongSetting) 
  33844.  
  33845.      Set the long description 
  33846.      bool setDescNative(const string &DescNativeSetting) 
  33847.  
  33848.      Set the native language description 
  33849.      bool setNetCode(const string &NetCodeSetting) 
  33850.  
  33851.      Set the internet code for this country 
  33852.      bool erase() 
  33853.  
  33854.      Sets all the data members to empty 
  33855.  
  33856.   Get data members 
  33857.      bool getAll(mapString &FieldValues) 
  33858.  
  33859.      Return a mapString of all the data members of this topic. The key is the 
  33860.      variable name.  LCP: CountryAttribs 
  33861.      string getDesc() 
  33862.  
  33863.      Get the short description 
  33864.      string getDescLong() 
  33865.  
  33866.      Get the long description 
  33867.      string getDescNative() 
  33868.  
  33869.      Get the native language description 
  33870.      string getNetCode() 
  33871.  
  33872.      Get the internet code for this country 
  33873.  
  33874.  
  33875. ΓòÉΓòÉΓòÉ <hidden> +Moderate.h ΓòÉΓòÉΓòÉ
  33876.  
  33877.  
  33878. lyris_Country Class 
  33879.  
  33880.      class lyris_Country 
  33881.  
  33882.      For determining what countries exist, and what languages are spoken & 
  33883.      preferred in each country 
  33884.  
  33885.      Defined in: COUNTRY.H 
  33886.  
  33887.   Create a new country 
  33888.  
  33889.       bool createNew() 
  33890.  
  33891.      Creates a new country/language table row.  LCP: CountryCreate 
  33892.      bool updateDatabase() 
  33893.  
  33894.      Save the current country with the data members that have changed.  LCP: 
  33895.      CountryUpdate 
  33896.      bool VerifyFields() 
  33897.  
  33898.      Verify that all required fields are filled in. 
  33899.  
  33900.   Retrieve data from the database 
  33901.      bool fetchAllCountries(vecString &AllCountries) 
  33902.  
  33903.      Fetch a list of all countries.  LCP: CountryAll 
  33904.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  33905.  
  33906.      Fetch a paired list of countries and their native language descriptions, 
  33907.      sorted by english description.  LCP: CountryEngNat 
  33908.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  33909.  
  33910.      Fetch a paired list of native language country descriptions, and the 
  33911.      english name of the country. 
  33912.      bool retrieveFromNetCode() 
  33913.  
  33914.      Determine the country that uses the currently set NetCode.  Fills all the 
  33915.      other country attributes with values. LCP: CountryAttNetCode 
  33916.      bool retrieveFromDesc() 
  33917.  
  33918.      Determine the country that uses the currently set description.  Fills all 
  33919.      the other country attributes with values.  LCP: CountryAttribs 
  33920.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  33921.  
  33922.      Determine the primary language of the current country.  "Desc" must be 
  33923.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  33924.      CountryPrimLang 
  33925.      bool getAllLanguages(vecString &Languages) 
  33926.  
  33927.      Determine all the languages used by the current country.  "Desc" must be 
  33928.      already set.  The result is returned in priority order (highest priority 
  33929.      first) in vecString &Languages.  LCP: CountryLanguages 
  33930.      bool getLanguageList(vecString &Languages) 
  33931.  
  33932.      Get a list of all possible languages, in alphabetical order, returned in 
  33933.      vecString &Languages.  LCP: CountryLangList 
  33934.      bool getLanguageListEngNat(mapString &Languages) 
  33935.  
  33936.      Get a map of all possible languages, their native description in 
  33937.      alphabetical order by english description, returned in in vecString 
  33938.      &Languages.  LCP: CountryLangListEngNat 
  33939.  
  33940.   Delete a country 
  33941.      bool deleteFromDesc() 
  33942.  
  33943.      Delete the country that uses the currently set description.  LCP: 
  33944.      CountryDelete 
  33945.  
  33946.   Set data members 
  33947.      bool setAll(mapString &FieldValues) 
  33948.  
  33949.      Sets all the data members of a topic using the mapString which is passed 
  33950.      to it.  Only the fields present in the mapString are updated, the other 
  33951.      fields are untouched.  LCP: CountryUpdate 
  33952.      bool setDesc(const string &DescSetting) 
  33953.  
  33954.      Set the short description 
  33955.      bool setDescLong(const string &DescLongSetting) 
  33956.  
  33957.      Set the long description 
  33958.      bool setDescNative(const string &DescNativeSetting) 
  33959.  
  33960.      Set the native language description 
  33961.      bool setNetCode(const string &NetCodeSetting) 
  33962.  
  33963.      Set the internet code for this country 
  33964.      bool erase() 
  33965.  
  33966.      Sets all the data members to empty 
  33967.  
  33968.   Get data members 
  33969.      bool getAll(mapString &FieldValues) 
  33970.  
  33971.      Return a mapString of all the data members of this topic. The key is the 
  33972.      variable name.  LCP: CountryAttribs 
  33973.      string getDesc() 
  33974.  
  33975.      Get the short description 
  33976.      string getDescLong() 
  33977.  
  33978.      Get the long description 
  33979.      string getDescNative() 
  33980.  
  33981.      Get the native language description 
  33982.      string getNetCode() 
  33983.  
  33984.      Get the internet code for this country 
  33985.  
  33986.  
  33987. ΓòÉΓòÉΓòÉ <hidden> ,members.h ΓòÉΓòÉΓòÉ
  33988.  
  33989.  
  33990. lyris_Country Class 
  33991.  
  33992.      class lyris_Country 
  33993.  
  33994.      For determining what countries exist, and what languages are spoken & 
  33995.      preferred in each country 
  33996.  
  33997.      Defined in: COUNTRY.H 
  33998.  
  33999.   Create a new country 
  34000.  
  34001.       bool createNew() 
  34002.  
  34003.      Creates a new country/language table row.  LCP: CountryCreate 
  34004.      bool updateDatabase() 
  34005.  
  34006.      Save the current country with the data members that have changed.  LCP: 
  34007.      CountryUpdate 
  34008.      bool VerifyFields() 
  34009.  
  34010.      Verify that all required fields are filled in. 
  34011.  
  34012.   Retrieve data from the database 
  34013.      bool fetchAllCountries(vecString &AllCountries) 
  34014.  
  34015.      Fetch a list of all countries.  LCP: CountryAll 
  34016.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34017.  
  34018.      Fetch a paired list of countries and their native language descriptions, 
  34019.      sorted by english description.  LCP: CountryEngNat 
  34020.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34021.  
  34022.      Fetch a paired list of native language country descriptions, and the 
  34023.      english name of the country. 
  34024.      bool retrieveFromNetCode() 
  34025.  
  34026.      Determine the country that uses the currently set NetCode.  Fills all the 
  34027.      other country attributes with values. LCP: CountryAttNetCode 
  34028.      bool retrieveFromDesc() 
  34029.  
  34030.      Determine the country that uses the currently set description.  Fills all 
  34031.      the other country attributes with values.  LCP: CountryAttribs 
  34032.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34033.  
  34034.      Determine the primary language of the current country.  "Desc" must be 
  34035.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34036.      CountryPrimLang 
  34037.      bool getAllLanguages(vecString &Languages) 
  34038.  
  34039.      Determine all the languages used by the current country.  "Desc" must be 
  34040.      already set.  The result is returned in priority order (highest priority 
  34041.      first) in vecString &Languages.  LCP: CountryLanguages 
  34042.      bool getLanguageList(vecString &Languages) 
  34043.  
  34044.      Get a list of all possible languages, in alphabetical order, returned in 
  34045.      vecString &Languages.  LCP: CountryLangList 
  34046.      bool getLanguageListEngNat(mapString &Languages) 
  34047.  
  34048.      Get a map of all possible languages, their native description in 
  34049.      alphabetical order by english description, returned in in vecString 
  34050.      &Languages.  LCP: CountryLangListEngNat 
  34051.  
  34052.   Delete a country 
  34053.      bool deleteFromDesc() 
  34054.  
  34055.      Delete the country that uses the currently set description.  LCP: 
  34056.      CountryDelete 
  34057.  
  34058.   Set data members 
  34059.      bool setAll(mapString &FieldValues) 
  34060.  
  34061.      Sets all the data members of a topic using the mapString which is passed 
  34062.      to it.  Only the fields present in the mapString are updated, the other 
  34063.      fields are untouched.  LCP: CountryUpdate 
  34064.      bool setDesc(const string &DescSetting) 
  34065.  
  34066.      Set the short description 
  34067.      bool setDescLong(const string &DescLongSetting) 
  34068.  
  34069.      Set the long description 
  34070.      bool setDescNative(const string &DescNativeSetting) 
  34071.  
  34072.      Set the native language description 
  34073.      bool setNetCode(const string &NetCodeSetting) 
  34074.  
  34075.      Set the internet code for this country 
  34076.      bool erase() 
  34077.  
  34078.      Sets all the data members to empty 
  34079.  
  34080.   Get data members 
  34081.      bool getAll(mapString &FieldValues) 
  34082.  
  34083.      Return a mapString of all the data members of this topic. The key is the 
  34084.      variable name.  LCP: CountryAttribs 
  34085.      string getDesc() 
  34086.  
  34087.      Get the short description 
  34088.      string getDescLong() 
  34089.  
  34090.      Get the long description 
  34091.      string getDescNative() 
  34092.  
  34093.      Get the native language description 
  34094.      string getNetCode() 
  34095.  
  34096.      Get the internet code for this country 
  34097.  
  34098.  
  34099. ΓòÉΓòÉΓòÉ <hidden> -lyrglobl.cxx ΓòÉΓòÉΓòÉ
  34100.  
  34101.  
  34102. lyris_Country Class 
  34103.  
  34104.      class lyris_Country 
  34105.  
  34106.      For determining what countries exist, and what languages are spoken & 
  34107.      preferred in each country 
  34108.  
  34109.      Defined in: COUNTRY.H 
  34110.  
  34111.   Create a new country 
  34112.  
  34113.       bool createNew() 
  34114.  
  34115.      Creates a new country/language table row.  LCP: CountryCreate 
  34116.      bool updateDatabase() 
  34117.  
  34118.      Save the current country with the data members that have changed.  LCP: 
  34119.      CountryUpdate 
  34120.      bool VerifyFields() 
  34121.  
  34122.      Verify that all required fields are filled in. 
  34123.  
  34124.   Retrieve data from the database 
  34125.      bool fetchAllCountries(vecString &AllCountries) 
  34126.  
  34127.      Fetch a list of all countries.  LCP: CountryAll 
  34128.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34129.  
  34130.      Fetch a paired list of countries and their native language descriptions, 
  34131.      sorted by english description.  LCP: CountryEngNat 
  34132.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34133.  
  34134.      Fetch a paired list of native language country descriptions, and the 
  34135.      english name of the country. 
  34136.      bool retrieveFromNetCode() 
  34137.  
  34138.      Determine the country that uses the currently set NetCode.  Fills all the 
  34139.      other country attributes with values. LCP: CountryAttNetCode 
  34140.      bool retrieveFromDesc() 
  34141.  
  34142.      Determine the country that uses the currently set description.  Fills all 
  34143.      the other country attributes with values.  LCP: CountryAttribs 
  34144.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34145.  
  34146.      Determine the primary language of the current country.  "Desc" must be 
  34147.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34148.      CountryPrimLang 
  34149.      bool getAllLanguages(vecString &Languages) 
  34150.  
  34151.      Determine all the languages used by the current country.  "Desc" must be 
  34152.      already set.  The result is returned in priority order (highest priority 
  34153.      first) in vecString &Languages.  LCP: CountryLanguages 
  34154.      bool getLanguageList(vecString &Languages) 
  34155.  
  34156.      Get a list of all possible languages, in alphabetical order, returned in 
  34157.      vecString &Languages.  LCP: CountryLangList 
  34158.      bool getLanguageListEngNat(mapString &Languages) 
  34159.  
  34160.      Get a map of all possible languages, their native description in 
  34161.      alphabetical order by english description, returned in in vecString 
  34162.      &Languages.  LCP: CountryLangListEngNat 
  34163.  
  34164.   Delete a country 
  34165.      bool deleteFromDesc() 
  34166.  
  34167.      Delete the country that uses the currently set description.  LCP: 
  34168.      CountryDelete 
  34169.  
  34170.   Set data members 
  34171.      bool setAll(mapString &FieldValues) 
  34172.  
  34173.      Sets all the data members of a topic using the mapString which is passed 
  34174.      to it.  Only the fields present in the mapString are updated, the other 
  34175.      fields are untouched.  LCP: CountryUpdate 
  34176.      bool setDesc(const string &DescSetting) 
  34177.  
  34178.      Set the short description 
  34179.      bool setDescLong(const string &DescLongSetting) 
  34180.  
  34181.      Set the long description 
  34182.      bool setDescNative(const string &DescNativeSetting) 
  34183.  
  34184.      Set the native language description 
  34185.      bool setNetCode(const string &NetCodeSetting) 
  34186.  
  34187.      Set the internet code for this country 
  34188.      bool erase() 
  34189.  
  34190.      Sets all the data members to empty 
  34191.  
  34192.   Get data members 
  34193.      bool getAll(mapString &FieldValues) 
  34194.  
  34195.      Return a mapString of all the data members of this topic. The key is the 
  34196.      variable name.  LCP: CountryAttribs 
  34197.      string getDesc() 
  34198.  
  34199.      Get the short description 
  34200.      string getDescLong() 
  34201.  
  34202.      Get the long description 
  34203.      string getDescNative() 
  34204.  
  34205.      Get the native language description 
  34206.      string getNetCode() 
  34207.  
  34208.      Get the internet code for this country 
  34209.  
  34210.  
  34211. ΓòÉΓòÉΓòÉ <hidden> .lyrcache.h ΓòÉΓòÉΓòÉ
  34212.  
  34213.  
  34214. lyris_Country Class 
  34215.  
  34216.      class lyris_Country 
  34217.  
  34218.      For determining what countries exist, and what languages are spoken & 
  34219.      preferred in each country 
  34220.  
  34221.      Defined in: COUNTRY.H 
  34222.  
  34223.   Create a new country 
  34224.  
  34225.       bool createNew() 
  34226.  
  34227.      Creates a new country/language table row.  LCP: CountryCreate 
  34228.      bool updateDatabase() 
  34229.  
  34230.      Save the current country with the data members that have changed.  LCP: 
  34231.      CountryUpdate 
  34232.      bool VerifyFields() 
  34233.  
  34234.      Verify that all required fields are filled in. 
  34235.  
  34236.   Retrieve data from the database 
  34237.      bool fetchAllCountries(vecString &AllCountries) 
  34238.  
  34239.      Fetch a list of all countries.  LCP: CountryAll 
  34240.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34241.  
  34242.      Fetch a paired list of countries and their native language descriptions, 
  34243.      sorted by english description.  LCP: CountryEngNat 
  34244.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34245.  
  34246.      Fetch a paired list of native language country descriptions, and the 
  34247.      english name of the country. 
  34248.      bool retrieveFromNetCode() 
  34249.  
  34250.      Determine the country that uses the currently set NetCode.  Fills all the 
  34251.      other country attributes with values. LCP: CountryAttNetCode 
  34252.      bool retrieveFromDesc() 
  34253.  
  34254.      Determine the country that uses the currently set description.  Fills all 
  34255.      the other country attributes with values.  LCP: CountryAttribs 
  34256.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34257.  
  34258.      Determine the primary language of the current country.  "Desc" must be 
  34259.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34260.      CountryPrimLang 
  34261.      bool getAllLanguages(vecString &Languages) 
  34262.  
  34263.      Determine all the languages used by the current country.  "Desc" must be 
  34264.      already set.  The result is returned in priority order (highest priority 
  34265.      first) in vecString &Languages.  LCP: CountryLanguages 
  34266.      bool getLanguageList(vecString &Languages) 
  34267.  
  34268.      Get a list of all possible languages, in alphabetical order, returned in 
  34269.      vecString &Languages.  LCP: CountryLangList 
  34270.      bool getLanguageListEngNat(mapString &Languages) 
  34271.  
  34272.      Get a map of all possible languages, their native description in 
  34273.      alphabetical order by english description, returned in in vecString 
  34274.      &Languages.  LCP: CountryLangListEngNat 
  34275.  
  34276.   Delete a country 
  34277.      bool deleteFromDesc() 
  34278.  
  34279.      Delete the country that uses the currently set description.  LCP: 
  34280.      CountryDelete 
  34281.  
  34282.   Set data members 
  34283.      bool setAll(mapString &FieldValues) 
  34284.  
  34285.      Sets all the data members of a topic using the mapString which is passed 
  34286.      to it.  Only the fields present in the mapString are updated, the other 
  34287.      fields are untouched.  LCP: CountryUpdate 
  34288.      bool setDesc(const string &DescSetting) 
  34289.  
  34290.      Set the short description 
  34291.      bool setDescLong(const string &DescLongSetting) 
  34292.  
  34293.      Set the long description 
  34294.      bool setDescNative(const string &DescNativeSetting) 
  34295.  
  34296.      Set the native language description 
  34297.      bool setNetCode(const string &NetCodeSetting) 
  34298.  
  34299.      Set the internet code for this country 
  34300.      bool erase() 
  34301.  
  34302.      Sets all the data members to empty 
  34303.  
  34304.   Get data members 
  34305.      bool getAll(mapString &FieldValues) 
  34306.  
  34307.      Return a mapString of all the data members of this topic. The key is the 
  34308.      variable name.  LCP: CountryAttribs 
  34309.      string getDesc() 
  34310.  
  34311.      Get the short description 
  34312.      string getDescLong() 
  34313.  
  34314.      Get the long description 
  34315.      string getDescNative() 
  34316.  
  34317.      Get the native language description 
  34318.      string getNetCode() 
  34319.  
  34320.      Get the internet code for this country 
  34321.  
  34322.  
  34323. ΓòÉΓòÉΓòÉ <hidden> /lyr_debug.h ΓòÉΓòÉΓòÉ
  34324.  
  34325.  
  34326. lyris_Country Class 
  34327.  
  34328.      class lyris_Country 
  34329.  
  34330.      For determining what countries exist, and what languages are spoken & 
  34331.      preferred in each country 
  34332.  
  34333.      Defined in: COUNTRY.H 
  34334.  
  34335.   Create a new country 
  34336.  
  34337.       bool createNew() 
  34338.  
  34339.      Creates a new country/language table row.  LCP: CountryCreate 
  34340.      bool updateDatabase() 
  34341.  
  34342.      Save the current country with the data members that have changed.  LCP: 
  34343.      CountryUpdate 
  34344.      bool VerifyFields() 
  34345.  
  34346.      Verify that all required fields are filled in. 
  34347.  
  34348.   Retrieve data from the database 
  34349.      bool fetchAllCountries(vecString &AllCountries) 
  34350.  
  34351.      Fetch a list of all countries.  LCP: CountryAll 
  34352.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34353.  
  34354.      Fetch a paired list of countries and their native language descriptions, 
  34355.      sorted by english description.  LCP: CountryEngNat 
  34356.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34357.  
  34358.      Fetch a paired list of native language country descriptions, and the 
  34359.      english name of the country. 
  34360.      bool retrieveFromNetCode() 
  34361.  
  34362.      Determine the country that uses the currently set NetCode.  Fills all the 
  34363.      other country attributes with values. LCP: CountryAttNetCode 
  34364.      bool retrieveFromDesc() 
  34365.  
  34366.      Determine the country that uses the currently set description.  Fills all 
  34367.      the other country attributes with values.  LCP: CountryAttribs 
  34368.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34369.  
  34370.      Determine the primary language of the current country.  "Desc" must be 
  34371.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34372.      CountryPrimLang 
  34373.      bool getAllLanguages(vecString &Languages) 
  34374.  
  34375.      Determine all the languages used by the current country.  "Desc" must be 
  34376.      already set.  The result is returned in priority order (highest priority 
  34377.      first) in vecString &Languages.  LCP: CountryLanguages 
  34378.      bool getLanguageList(vecString &Languages) 
  34379.  
  34380.      Get a list of all possible languages, in alphabetical order, returned in 
  34381.      vecString &Languages.  LCP: CountryLangList 
  34382.      bool getLanguageListEngNat(mapString &Languages) 
  34383.  
  34384.      Get a map of all possible languages, their native description in 
  34385.      alphabetical order by english description, returned in in vecString 
  34386.      &Languages.  LCP: CountryLangListEngNat 
  34387.  
  34388.   Delete a country 
  34389.      bool deleteFromDesc() 
  34390.  
  34391.      Delete the country that uses the currently set description.  LCP: 
  34392.      CountryDelete 
  34393.  
  34394.   Set data members 
  34395.      bool setAll(mapString &FieldValues) 
  34396.  
  34397.      Sets all the data members of a topic using the mapString which is passed 
  34398.      to it.  Only the fields present in the mapString are updated, the other 
  34399.      fields are untouched.  LCP: CountryUpdate 
  34400.      bool setDesc(const string &DescSetting) 
  34401.  
  34402.      Set the short description 
  34403.      bool setDescLong(const string &DescLongSetting) 
  34404.  
  34405.      Set the long description 
  34406.      bool setDescNative(const string &DescNativeSetting) 
  34407.  
  34408.      Set the native language description 
  34409.      bool setNetCode(const string &NetCodeSetting) 
  34410.  
  34411.      Set the internet code for this country 
  34412.      bool erase() 
  34413.  
  34414.      Sets all the data members to empty 
  34415.  
  34416.   Get data members 
  34417.      bool getAll(mapString &FieldValues) 
  34418.  
  34419.      Return a mapString of all the data members of this topic. The key is the 
  34420.      variable name.  LCP: CountryAttribs 
  34421.      string getDesc() 
  34422.  
  34423.      Get the short description 
  34424.      string getDescLong() 
  34425.  
  34426.      Get the long description 
  34427.      string getDescNative() 
  34428.  
  34429.      Get the native language description 
  34430.      string getNetCode() 
  34431.  
  34432.      Get the internet code for this country 
  34433.  
  34434.  
  34435. ΓòÉΓòÉΓòÉ <hidden> 0log.h ΓòÉΓòÉΓòÉ
  34436.  
  34437.  
  34438. lyris_Country Class 
  34439.  
  34440.      class lyris_Country 
  34441.  
  34442.      For determining what countries exist, and what languages are spoken & 
  34443.      preferred in each country 
  34444.  
  34445.      Defined in: COUNTRY.H 
  34446.  
  34447.   Create a new country 
  34448.  
  34449.       bool createNew() 
  34450.  
  34451.      Creates a new country/language table row.  LCP: CountryCreate 
  34452.      bool updateDatabase() 
  34453.  
  34454.      Save the current country with the data members that have changed.  LCP: 
  34455.      CountryUpdate 
  34456.      bool VerifyFields() 
  34457.  
  34458.      Verify that all required fields are filled in. 
  34459.  
  34460.   Retrieve data from the database 
  34461.      bool fetchAllCountries(vecString &AllCountries) 
  34462.  
  34463.      Fetch a list of all countries.  LCP: CountryAll 
  34464.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34465.  
  34466.      Fetch a paired list of countries and their native language descriptions, 
  34467.      sorted by english description.  LCP: CountryEngNat 
  34468.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34469.  
  34470.      Fetch a paired list of native language country descriptions, and the 
  34471.      english name of the country. 
  34472.      bool retrieveFromNetCode() 
  34473.  
  34474.      Determine the country that uses the currently set NetCode.  Fills all the 
  34475.      other country attributes with values. LCP: CountryAttNetCode 
  34476.      bool retrieveFromDesc() 
  34477.  
  34478.      Determine the country that uses the currently set description.  Fills all 
  34479.      the other country attributes with values.  LCP: CountryAttribs 
  34480.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34481.  
  34482.      Determine the primary language of the current country.  "Desc" must be 
  34483.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34484.      CountryPrimLang 
  34485.      bool getAllLanguages(vecString &Languages) 
  34486.  
  34487.      Determine all the languages used by the current country.  "Desc" must be 
  34488.      already set.  The result is returned in priority order (highest priority 
  34489.      first) in vecString &Languages.  LCP: CountryLanguages 
  34490.      bool getLanguageList(vecString &Languages) 
  34491.  
  34492.      Get a list of all possible languages, in alphabetical order, returned in 
  34493.      vecString &Languages.  LCP: CountryLangList 
  34494.      bool getLanguageListEngNat(mapString &Languages) 
  34495.  
  34496.      Get a map of all possible languages, their native description in 
  34497.      alphabetical order by english description, returned in in vecString 
  34498.      &Languages.  LCP: CountryLangListEngNat 
  34499.  
  34500.   Delete a country 
  34501.      bool deleteFromDesc() 
  34502.  
  34503.      Delete the country that uses the currently set description.  LCP: 
  34504.      CountryDelete 
  34505.  
  34506.   Set data members 
  34507.      bool setAll(mapString &FieldValues) 
  34508.  
  34509.      Sets all the data members of a topic using the mapString which is passed 
  34510.      to it.  Only the fields present in the mapString are updated, the other 
  34511.      fields are untouched.  LCP: CountryUpdate 
  34512.      bool setDesc(const string &DescSetting) 
  34513.  
  34514.      Set the short description 
  34515.      bool setDescLong(const string &DescLongSetting) 
  34516.  
  34517.      Set the long description 
  34518.      bool setDescNative(const string &DescNativeSetting) 
  34519.  
  34520.      Set the native language description 
  34521.      bool setNetCode(const string &NetCodeSetting) 
  34522.  
  34523.      Set the internet code for this country 
  34524.      bool erase() 
  34525.  
  34526.      Sets all the data members to empty 
  34527.  
  34528.   Get data members 
  34529.      bool getAll(mapString &FieldValues) 
  34530.  
  34531.      Return a mapString of all the data members of this topic. The key is the 
  34532.      variable name.  LCP: CountryAttribs 
  34533.      string getDesc() 
  34534.  
  34535.      Get the short description 
  34536.      string getDescLong() 
  34537.  
  34538.      Get the long description 
  34539.      string getDescNative() 
  34540.  
  34541.      Get the native language description 
  34542.      string getNetCode() 
  34543.  
  34544.      Get the internet code for this country 
  34545.  
  34546.  
  34547. ΓòÉΓòÉΓòÉ <hidden> 1lcpreduc.cxx ΓòÉΓòÉΓòÉ
  34548.  
  34549.  
  34550. lyris_Country Class 
  34551.  
  34552.      class lyris_Country 
  34553.  
  34554.      For determining what countries exist, and what languages are spoken & 
  34555.      preferred in each country 
  34556.  
  34557.      Defined in: COUNTRY.H 
  34558.  
  34559.   Create a new country 
  34560.  
  34561.       bool createNew() 
  34562.  
  34563.      Creates a new country/language table row.  LCP: CountryCreate 
  34564.      bool updateDatabase() 
  34565.  
  34566.      Save the current country with the data members that have changed.  LCP: 
  34567.      CountryUpdate 
  34568.      bool VerifyFields() 
  34569.  
  34570.      Verify that all required fields are filled in. 
  34571.  
  34572.   Retrieve data from the database 
  34573.      bool fetchAllCountries(vecString &AllCountries) 
  34574.  
  34575.      Fetch a list of all countries.  LCP: CountryAll 
  34576.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34577.  
  34578.      Fetch a paired list of countries and their native language descriptions, 
  34579.      sorted by english description.  LCP: CountryEngNat 
  34580.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34581.  
  34582.      Fetch a paired list of native language country descriptions, and the 
  34583.      english name of the country. 
  34584.      bool retrieveFromNetCode() 
  34585.  
  34586.      Determine the country that uses the currently set NetCode.  Fills all the 
  34587.      other country attributes with values. LCP: CountryAttNetCode 
  34588.      bool retrieveFromDesc() 
  34589.  
  34590.      Determine the country that uses the currently set description.  Fills all 
  34591.      the other country attributes with values.  LCP: CountryAttribs 
  34592.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34593.  
  34594.      Determine the primary language of the current country.  "Desc" must be 
  34595.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34596.      CountryPrimLang 
  34597.      bool getAllLanguages(vecString &Languages) 
  34598.  
  34599.      Determine all the languages used by the current country.  "Desc" must be 
  34600.      already set.  The result is returned in priority order (highest priority 
  34601.      first) in vecString &Languages.  LCP: CountryLanguages 
  34602.      bool getLanguageList(vecString &Languages) 
  34603.  
  34604.      Get a list of all possible languages, in alphabetical order, returned in 
  34605.      vecString &Languages.  LCP: CountryLangList 
  34606.      bool getLanguageListEngNat(mapString &Languages) 
  34607.  
  34608.      Get a map of all possible languages, their native description in 
  34609.      alphabetical order by english description, returned in in vecString 
  34610.      &Languages.  LCP: CountryLangListEngNat 
  34611.  
  34612.   Delete a country 
  34613.      bool deleteFromDesc() 
  34614.  
  34615.      Delete the country that uses the currently set description.  LCP: 
  34616.      CountryDelete 
  34617.  
  34618.   Set data members 
  34619.      bool setAll(mapString &FieldValues) 
  34620.  
  34621.      Sets all the data members of a topic using the mapString which is passed 
  34622.      to it.  Only the fields present in the mapString are updated, the other 
  34623.      fields are untouched.  LCP: CountryUpdate 
  34624.      bool setDesc(const string &DescSetting) 
  34625.  
  34626.      Set the short description 
  34627.      bool setDescLong(const string &DescLongSetting) 
  34628.  
  34629.      Set the long description 
  34630.      bool setDescNative(const string &DescNativeSetting) 
  34631.  
  34632.      Set the native language description 
  34633.      bool setNetCode(const string &NetCodeSetting) 
  34634.  
  34635.      Set the internet code for this country 
  34636.      bool erase() 
  34637.  
  34638.      Sets all the data members to empty 
  34639.  
  34640.   Get data members 
  34641.      bool getAll(mapString &FieldValues) 
  34642.  
  34643.      Return a mapString of all the data members of this topic. The key is the 
  34644.      variable name.  LCP: CountryAttribs 
  34645.      string getDesc() 
  34646.  
  34647.      Get the short description 
  34648.      string getDescLong() 
  34649.  
  34650.      Get the long description 
  34651.      string getDescNative() 
  34652.  
  34653.      Get the native language description 
  34654.      string getNetCode() 
  34655.  
  34656.      Get the internet code for this country 
  34657.  
  34658.  
  34659. ΓòÉΓòÉΓòÉ <hidden> 2language.h ΓòÉΓòÉΓòÉ
  34660.  
  34661.  
  34662. lyris_Country Class 
  34663.  
  34664.      class lyris_Country 
  34665.  
  34666.      For determining what countries exist, and what languages are spoken & 
  34667.      preferred in each country 
  34668.  
  34669.      Defined in: COUNTRY.H 
  34670.  
  34671.   Create a new country 
  34672.  
  34673.       bool createNew() 
  34674.  
  34675.      Creates a new country/language table row.  LCP: CountryCreate 
  34676.      bool updateDatabase() 
  34677.  
  34678.      Save the current country with the data members that have changed.  LCP: 
  34679.      CountryUpdate 
  34680.      bool VerifyFields() 
  34681.  
  34682.      Verify that all required fields are filled in. 
  34683.  
  34684.   Retrieve data from the database 
  34685.      bool fetchAllCountries(vecString &AllCountries) 
  34686.  
  34687.      Fetch a list of all countries.  LCP: CountryAll 
  34688.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34689.  
  34690.      Fetch a paired list of countries and their native language descriptions, 
  34691.      sorted by english description.  LCP: CountryEngNat 
  34692.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34693.  
  34694.      Fetch a paired list of native language country descriptions, and the 
  34695.      english name of the country. 
  34696.      bool retrieveFromNetCode() 
  34697.  
  34698.      Determine the country that uses the currently set NetCode.  Fills all the 
  34699.      other country attributes with values. LCP: CountryAttNetCode 
  34700.      bool retrieveFromDesc() 
  34701.  
  34702.      Determine the country that uses the currently set description.  Fills all 
  34703.      the other country attributes with values.  LCP: CountryAttribs 
  34704.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34705.  
  34706.      Determine the primary language of the current country.  "Desc" must be 
  34707.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34708.      CountryPrimLang 
  34709.      bool getAllLanguages(vecString &Languages) 
  34710.  
  34711.      Determine all the languages used by the current country.  "Desc" must be 
  34712.      already set.  The result is returned in priority order (highest priority 
  34713.      first) in vecString &Languages.  LCP: CountryLanguages 
  34714.      bool getLanguageList(vecString &Languages) 
  34715.  
  34716.      Get a list of all possible languages, in alphabetical order, returned in 
  34717.      vecString &Languages.  LCP: CountryLangList 
  34718.      bool getLanguageListEngNat(mapString &Languages) 
  34719.  
  34720.      Get a map of all possible languages, their native description in 
  34721.      alphabetical order by english description, returned in in vecString 
  34722.      &Languages.  LCP: CountryLangListEngNat 
  34723.  
  34724.   Delete a country 
  34725.      bool deleteFromDesc() 
  34726.  
  34727.      Delete the country that uses the currently set description.  LCP: 
  34728.      CountryDelete 
  34729.  
  34730.   Set data members 
  34731.      bool setAll(mapString &FieldValues) 
  34732.  
  34733.      Sets all the data members of a topic using the mapString which is passed 
  34734.      to it.  Only the fields present in the mapString are updated, the other 
  34735.      fields are untouched.  LCP: CountryUpdate 
  34736.      bool setDesc(const string &DescSetting) 
  34737.  
  34738.      Set the short description 
  34739.      bool setDescLong(const string &DescLongSetting) 
  34740.  
  34741.      Set the long description 
  34742.      bool setDescNative(const string &DescNativeSetting) 
  34743.  
  34744.      Set the native language description 
  34745.      bool setNetCode(const string &NetCodeSetting) 
  34746.  
  34747.      Set the internet code for this country 
  34748.      bool erase() 
  34749.  
  34750.      Sets all the data members to empty 
  34751.  
  34752.   Get data members 
  34753.      bool getAll(mapString &FieldValues) 
  34754.  
  34755.      Return a mapString of all the data members of this topic. The key is the 
  34756.      variable name.  LCP: CountryAttribs 
  34757.      string getDesc() 
  34758.  
  34759.      Get the short description 
  34760.      string getDescLong() 
  34761.  
  34762.      Get the long description 
  34763.      string getDescNative() 
  34764.  
  34765.      Get the native language description 
  34766.      string getNetCode() 
  34767.  
  34768.      Get the internet code for this country 
  34769.  
  34770.  
  34771. ΓòÉΓòÉΓòÉ <hidden> 3inmail.h ΓòÉΓòÉΓòÉ
  34772.  
  34773.  
  34774. lyris_Country Class 
  34775.  
  34776.      class lyris_Country 
  34777.  
  34778.      For determining what countries exist, and what languages are spoken & 
  34779.      preferred in each country 
  34780.  
  34781.      Defined in: COUNTRY.H 
  34782.  
  34783.   Create a new country 
  34784.  
  34785.       bool createNew() 
  34786.  
  34787.      Creates a new country/language table row.  LCP: CountryCreate 
  34788.      bool updateDatabase() 
  34789.  
  34790.      Save the current country with the data members that have changed.  LCP: 
  34791.      CountryUpdate 
  34792.      bool VerifyFields() 
  34793.  
  34794.      Verify that all required fields are filled in. 
  34795.  
  34796.   Retrieve data from the database 
  34797.      bool fetchAllCountries(vecString &AllCountries) 
  34798.  
  34799.      Fetch a list of all countries.  LCP: CountryAll 
  34800.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34801.  
  34802.      Fetch a paired list of countries and their native language descriptions, 
  34803.      sorted by english description.  LCP: CountryEngNat 
  34804.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34805.  
  34806.      Fetch a paired list of native language country descriptions, and the 
  34807.      english name of the country. 
  34808.      bool retrieveFromNetCode() 
  34809.  
  34810.      Determine the country that uses the currently set NetCode.  Fills all the 
  34811.      other country attributes with values. LCP: CountryAttNetCode 
  34812.      bool retrieveFromDesc() 
  34813.  
  34814.      Determine the country that uses the currently set description.  Fills all 
  34815.      the other country attributes with values.  LCP: CountryAttribs 
  34816.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34817.  
  34818.      Determine the primary language of the current country.  "Desc" must be 
  34819.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34820.      CountryPrimLang 
  34821.      bool getAllLanguages(vecString &Languages) 
  34822.  
  34823.      Determine all the languages used by the current country.  "Desc" must be 
  34824.      already set.  The result is returned in priority order (highest priority 
  34825.      first) in vecString &Languages.  LCP: CountryLanguages 
  34826.      bool getLanguageList(vecString &Languages) 
  34827.  
  34828.      Get a list of all possible languages, in alphabetical order, returned in 
  34829.      vecString &Languages.  LCP: CountryLangList 
  34830.      bool getLanguageListEngNat(mapString &Languages) 
  34831.  
  34832.      Get a map of all possible languages, their native description in 
  34833.      alphabetical order by english description, returned in in vecString 
  34834.      &Languages.  LCP: CountryLangListEngNat 
  34835.  
  34836.   Delete a country 
  34837.      bool deleteFromDesc() 
  34838.  
  34839.      Delete the country that uses the currently set description.  LCP: 
  34840.      CountryDelete 
  34841.  
  34842.   Set data members 
  34843.      bool setAll(mapString &FieldValues) 
  34844.  
  34845.      Sets all the data members of a topic using the mapString which is passed 
  34846.      to it.  Only the fields present in the mapString are updated, the other 
  34847.      fields are untouched.  LCP: CountryUpdate 
  34848.      bool setDesc(const string &DescSetting) 
  34849.  
  34850.      Set the short description 
  34851.      bool setDescLong(const string &DescLongSetting) 
  34852.  
  34853.      Set the long description 
  34854.      bool setDescNative(const string &DescNativeSetting) 
  34855.  
  34856.      Set the native language description 
  34857.      bool setNetCode(const string &NetCodeSetting) 
  34858.  
  34859.      Set the internet code for this country 
  34860.      bool erase() 
  34861.  
  34862.      Sets all the data members to empty 
  34863.  
  34864.   Get data members 
  34865.      bool getAll(mapString &FieldValues) 
  34866.  
  34867.      Return a mapString of all the data members of this topic. The key is the 
  34868.      variable name.  LCP: CountryAttribs 
  34869.      string getDesc() 
  34870.  
  34871.      Get the short description 
  34872.      string getDescLong() 
  34873.  
  34874.      Get the long description 
  34875.      string getDescNative() 
  34876.  
  34877.      Get the native language description 
  34878.      string getNetCode() 
  34879.  
  34880.      Get the internet code for this country 
  34881.  
  34882.  
  34883. ΓòÉΓòÉΓòÉ <hidden> 4incoming.cxx ΓòÉΓòÉΓòÉ
  34884.  
  34885.  
  34886. lyris_Country Class 
  34887.  
  34888.      class lyris_Country 
  34889.  
  34890.      For determining what countries exist, and what languages are spoken & 
  34891.      preferred in each country 
  34892.  
  34893.      Defined in: COUNTRY.H 
  34894.  
  34895.   Create a new country 
  34896.  
  34897.       bool createNew() 
  34898.  
  34899.      Creates a new country/language table row.  LCP: CountryCreate 
  34900.      bool updateDatabase() 
  34901.  
  34902.      Save the current country with the data members that have changed.  LCP: 
  34903.      CountryUpdate 
  34904.      bool VerifyFields() 
  34905.  
  34906.      Verify that all required fields are filled in. 
  34907.  
  34908.   Retrieve data from the database 
  34909.      bool fetchAllCountries(vecString &AllCountries) 
  34910.  
  34911.      Fetch a list of all countries.  LCP: CountryAll 
  34912.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  34913.  
  34914.      Fetch a paired list of countries and their native language descriptions, 
  34915.      sorted by english description.  LCP: CountryEngNat 
  34916.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  34917.  
  34918.      Fetch a paired list of native language country descriptions, and the 
  34919.      english name of the country. 
  34920.      bool retrieveFromNetCode() 
  34921.  
  34922.      Determine the country that uses the currently set NetCode.  Fills all the 
  34923.      other country attributes with values. LCP: CountryAttNetCode 
  34924.      bool retrieveFromDesc() 
  34925.  
  34926.      Determine the country that uses the currently set description.  Fills all 
  34927.      the other country attributes with values.  LCP: CountryAttribs 
  34928.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  34929.  
  34930.      Determine the primary language of the current country.  "Desc" must be 
  34931.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  34932.      CountryPrimLang 
  34933.      bool getAllLanguages(vecString &Languages) 
  34934.  
  34935.      Determine all the languages used by the current country.  "Desc" must be 
  34936.      already set.  The result is returned in priority order (highest priority 
  34937.      first) in vecString &Languages.  LCP: CountryLanguages 
  34938.      bool getLanguageList(vecString &Languages) 
  34939.  
  34940.      Get a list of all possible languages, in alphabetical order, returned in 
  34941.      vecString &Languages.  LCP: CountryLangList 
  34942.      bool getLanguageListEngNat(mapString &Languages) 
  34943.  
  34944.      Get a map of all possible languages, their native description in 
  34945.      alphabetical order by english description, returned in in vecString 
  34946.      &Languages.  LCP: CountryLangListEngNat 
  34947.  
  34948.   Delete a country 
  34949.      bool deleteFromDesc() 
  34950.  
  34951.      Delete the country that uses the currently set description.  LCP: 
  34952.      CountryDelete 
  34953.  
  34954.   Set data members 
  34955.      bool setAll(mapString &FieldValues) 
  34956.  
  34957.      Sets all the data members of a topic using the mapString which is passed 
  34958.      to it.  Only the fields present in the mapString are updated, the other 
  34959.      fields are untouched.  LCP: CountryUpdate 
  34960.      bool setDesc(const string &DescSetting) 
  34961.  
  34962.      Set the short description 
  34963.      bool setDescLong(const string &DescLongSetting) 
  34964.  
  34965.      Set the long description 
  34966.      bool setDescNative(const string &DescNativeSetting) 
  34967.  
  34968.      Set the native language description 
  34969.      bool setNetCode(const string &NetCodeSetting) 
  34970.  
  34971.      Set the internet code for this country 
  34972.      bool erase() 
  34973.  
  34974.      Sets all the data members to empty 
  34975.  
  34976.   Get data members 
  34977.      bool getAll(mapString &FieldValues) 
  34978.  
  34979.      Return a mapString of all the data members of this topic. The key is the 
  34980.      variable name.  LCP: CountryAttribs 
  34981.      string getDesc() 
  34982.  
  34983.      Get the short description 
  34984.      string getDescLong() 
  34985.  
  34986.      Get the long description 
  34987.      string getDescNative() 
  34988.  
  34989.      Get the native language description 
  34990.      string getNetCode() 
  34991.  
  34992.      Get the internet code for this country 
  34993.  
  34994.  
  34995. ΓòÉΓòÉΓòÉ <hidden> 5id.h ΓòÉΓòÉΓòÉ
  34996.  
  34997.  
  34998. lyris_Country Class 
  34999.  
  35000.      class lyris_Country 
  35001.  
  35002.      For determining what countries exist, and what languages are spoken & 
  35003.      preferred in each country 
  35004.  
  35005.      Defined in: COUNTRY.H 
  35006.  
  35007.   Create a new country 
  35008.  
  35009.       bool createNew() 
  35010.  
  35011.      Creates a new country/language table row.  LCP: CountryCreate 
  35012.      bool updateDatabase() 
  35013.  
  35014.      Save the current country with the data members that have changed.  LCP: 
  35015.      CountryUpdate 
  35016.      bool VerifyFields() 
  35017.  
  35018.      Verify that all required fields are filled in. 
  35019.  
  35020.   Retrieve data from the database 
  35021.      bool fetchAllCountries(vecString &AllCountries) 
  35022.  
  35023.      Fetch a list of all countries.  LCP: CountryAll 
  35024.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35025.  
  35026.      Fetch a paired list of countries and their native language descriptions, 
  35027.      sorted by english description.  LCP: CountryEngNat 
  35028.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35029.  
  35030.      Fetch a paired list of native language country descriptions, and the 
  35031.      english name of the country. 
  35032.      bool retrieveFromNetCode() 
  35033.  
  35034.      Determine the country that uses the currently set NetCode.  Fills all the 
  35035.      other country attributes with values. LCP: CountryAttNetCode 
  35036.      bool retrieveFromDesc() 
  35037.  
  35038.      Determine the country that uses the currently set description.  Fills all 
  35039.      the other country attributes with values.  LCP: CountryAttribs 
  35040.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35041.  
  35042.      Determine the primary language of the current country.  "Desc" must be 
  35043.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35044.      CountryPrimLang 
  35045.      bool getAllLanguages(vecString &Languages) 
  35046.  
  35047.      Determine all the languages used by the current country.  "Desc" must be 
  35048.      already set.  The result is returned in priority order (highest priority 
  35049.      first) in vecString &Languages.  LCP: CountryLanguages 
  35050.      bool getLanguageList(vecString &Languages) 
  35051.  
  35052.      Get a list of all possible languages, in alphabetical order, returned in 
  35053.      vecString &Languages.  LCP: CountryLangList 
  35054.      bool getLanguageListEngNat(mapString &Languages) 
  35055.  
  35056.      Get a map of all possible languages, their native description in 
  35057.      alphabetical order by english description, returned in in vecString 
  35058.      &Languages.  LCP: CountryLangListEngNat 
  35059.  
  35060.   Delete a country 
  35061.      bool deleteFromDesc() 
  35062.  
  35063.      Delete the country that uses the currently set description.  LCP: 
  35064.      CountryDelete 
  35065.  
  35066.   Set data members 
  35067.      bool setAll(mapString &FieldValues) 
  35068.  
  35069.      Sets all the data members of a topic using the mapString which is passed 
  35070.      to it.  Only the fields present in the mapString are updated, the other 
  35071.      fields are untouched.  LCP: CountryUpdate 
  35072.      bool setDesc(const string &DescSetting) 
  35073.  
  35074.      Set the short description 
  35075.      bool setDescLong(const string &DescLongSetting) 
  35076.  
  35077.      Set the long description 
  35078.      bool setDescNative(const string &DescNativeSetting) 
  35079.  
  35080.      Set the native language description 
  35081.      bool setNetCode(const string &NetCodeSetting) 
  35082.  
  35083.      Set the internet code for this country 
  35084.      bool erase() 
  35085.  
  35086.      Sets all the data members to empty 
  35087.  
  35088.   Get data members 
  35089.      bool getAll(mapString &FieldValues) 
  35090.  
  35091.      Return a mapString of all the data members of this topic. The key is the 
  35092.      variable name.  LCP: CountryAttribs 
  35093.      string getDesc() 
  35094.  
  35095.      Get the short description 
  35096.      string getDescLong() 
  35097.  
  35098.      Get the long description 
  35099.      string getDescNative() 
  35100.  
  35101.      Get the native language description 
  35102.      string getNetCode() 
  35103.  
  35104.      Get the internet code for this country 
  35105.  
  35106.  
  35107. ΓòÉΓòÉΓòÉ <hidden> 6files.h ΓòÉΓòÉΓòÉ
  35108.  
  35109.  
  35110. lyris_Country Class 
  35111.  
  35112.      class lyris_Country 
  35113.  
  35114.      For determining what countries exist, and what languages are spoken & 
  35115.      preferred in each country 
  35116.  
  35117.      Defined in: COUNTRY.H 
  35118.  
  35119.   Create a new country 
  35120.  
  35121.       bool createNew() 
  35122.  
  35123.      Creates a new country/language table row.  LCP: CountryCreate 
  35124.      bool updateDatabase() 
  35125.  
  35126.      Save the current country with the data members that have changed.  LCP: 
  35127.      CountryUpdate 
  35128.      bool VerifyFields() 
  35129.  
  35130.      Verify that all required fields are filled in. 
  35131.  
  35132.   Retrieve data from the database 
  35133.      bool fetchAllCountries(vecString &AllCountries) 
  35134.  
  35135.      Fetch a list of all countries.  LCP: CountryAll 
  35136.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35137.  
  35138.      Fetch a paired list of countries and their native language descriptions, 
  35139.      sorted by english description.  LCP: CountryEngNat 
  35140.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35141.  
  35142.      Fetch a paired list of native language country descriptions, and the 
  35143.      english name of the country. 
  35144.      bool retrieveFromNetCode() 
  35145.  
  35146.      Determine the country that uses the currently set NetCode.  Fills all the 
  35147.      other country attributes with values. LCP: CountryAttNetCode 
  35148.      bool retrieveFromDesc() 
  35149.  
  35150.      Determine the country that uses the currently set description.  Fills all 
  35151.      the other country attributes with values.  LCP: CountryAttribs 
  35152.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35153.  
  35154.      Determine the primary language of the current country.  "Desc" must be 
  35155.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35156.      CountryPrimLang 
  35157.      bool getAllLanguages(vecString &Languages) 
  35158.  
  35159.      Determine all the languages used by the current country.  "Desc" must be 
  35160.      already set.  The result is returned in priority order (highest priority 
  35161.      first) in vecString &Languages.  LCP: CountryLanguages 
  35162.      bool getLanguageList(vecString &Languages) 
  35163.  
  35164.      Get a list of all possible languages, in alphabetical order, returned in 
  35165.      vecString &Languages.  LCP: CountryLangList 
  35166.      bool getLanguageListEngNat(mapString &Languages) 
  35167.  
  35168.      Get a map of all possible languages, their native description in 
  35169.      alphabetical order by english description, returned in in vecString 
  35170.      &Languages.  LCP: CountryLangListEngNat 
  35171.  
  35172.   Delete a country 
  35173.      bool deleteFromDesc() 
  35174.  
  35175.      Delete the country that uses the currently set description.  LCP: 
  35176.      CountryDelete 
  35177.  
  35178.   Set data members 
  35179.      bool setAll(mapString &FieldValues) 
  35180.  
  35181.      Sets all the data members of a topic using the mapString which is passed 
  35182.      to it.  Only the fields present in the mapString are updated, the other 
  35183.      fields are untouched.  LCP: CountryUpdate 
  35184.      bool setDesc(const string &DescSetting) 
  35185.  
  35186.      Set the short description 
  35187.      bool setDescLong(const string &DescLongSetting) 
  35188.  
  35189.      Set the long description 
  35190.      bool setDescNative(const string &DescNativeSetting) 
  35191.  
  35192.      Set the native language description 
  35193.      bool setNetCode(const string &NetCodeSetting) 
  35194.  
  35195.      Set the internet code for this country 
  35196.      bool erase() 
  35197.  
  35198.      Sets all the data members to empty 
  35199.  
  35200.   Get data members 
  35201.      bool getAll(mapString &FieldValues) 
  35202.  
  35203.      Return a mapString of all the data members of this topic. The key is the 
  35204.      variable name.  LCP: CountryAttribs 
  35205.      string getDesc() 
  35206.  
  35207.      Get the short description 
  35208.      string getDescLong() 
  35209.  
  35210.      Get the long description 
  35211.      string getDescNative() 
  35212.  
  35213.      Get the native language description 
  35214.      string getNetCode() 
  35215.  
  35216.      Get the internet code for this country 
  35217.  
  35218.  
  35219. ΓòÉΓòÉΓòÉ <hidden> 7docs.h ΓòÉΓòÉΓòÉ
  35220.  
  35221.  
  35222. lyris_Country Class 
  35223.  
  35224.      class lyris_Country 
  35225.  
  35226.      For determining what countries exist, and what languages are spoken & 
  35227.      preferred in each country 
  35228.  
  35229.      Defined in: COUNTRY.H 
  35230.  
  35231.   Create a new country 
  35232.  
  35233.       bool createNew() 
  35234.  
  35235.      Creates a new country/language table row.  LCP: CountryCreate 
  35236.      bool updateDatabase() 
  35237.  
  35238.      Save the current country with the data members that have changed.  LCP: 
  35239.      CountryUpdate 
  35240.      bool VerifyFields() 
  35241.  
  35242.      Verify that all required fields are filled in. 
  35243.  
  35244.   Retrieve data from the database 
  35245.      bool fetchAllCountries(vecString &AllCountries) 
  35246.  
  35247.      Fetch a list of all countries.  LCP: CountryAll 
  35248.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35249.  
  35250.      Fetch a paired list of countries and their native language descriptions, 
  35251.      sorted by english description.  LCP: CountryEngNat 
  35252.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35253.  
  35254.      Fetch a paired list of native language country descriptions, and the 
  35255.      english name of the country. 
  35256.      bool retrieveFromNetCode() 
  35257.  
  35258.      Determine the country that uses the currently set NetCode.  Fills all the 
  35259.      other country attributes with values. LCP: CountryAttNetCode 
  35260.      bool retrieveFromDesc() 
  35261.  
  35262.      Determine the country that uses the currently set description.  Fills all 
  35263.      the other country attributes with values.  LCP: CountryAttribs 
  35264.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35265.  
  35266.      Determine the primary language of the current country.  "Desc" must be 
  35267.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35268.      CountryPrimLang 
  35269.      bool getAllLanguages(vecString &Languages) 
  35270.  
  35271.      Determine all the languages used by the current country.  "Desc" must be 
  35272.      already set.  The result is returned in priority order (highest priority 
  35273.      first) in vecString &Languages.  LCP: CountryLanguages 
  35274.      bool getLanguageList(vecString &Languages) 
  35275.  
  35276.      Get a list of all possible languages, in alphabetical order, returned in 
  35277.      vecString &Languages.  LCP: CountryLangList 
  35278.      bool getLanguageListEngNat(mapString &Languages) 
  35279.  
  35280.      Get a map of all possible languages, their native description in 
  35281.      alphabetical order by english description, returned in in vecString 
  35282.      &Languages.  LCP: CountryLangListEngNat 
  35283.  
  35284.   Delete a country 
  35285.      bool deleteFromDesc() 
  35286.  
  35287.      Delete the country that uses the currently set description.  LCP: 
  35288.      CountryDelete 
  35289.  
  35290.   Set data members 
  35291.      bool setAll(mapString &FieldValues) 
  35292.  
  35293.      Sets all the data members of a topic using the mapString which is passed 
  35294.      to it.  Only the fields present in the mapString are updated, the other 
  35295.      fields are untouched.  LCP: CountryUpdate 
  35296.      bool setDesc(const string &DescSetting) 
  35297.  
  35298.      Set the short description 
  35299.      bool setDescLong(const string &DescLongSetting) 
  35300.  
  35301.      Set the long description 
  35302.      bool setDescNative(const string &DescNativeSetting) 
  35303.  
  35304.      Set the native language description 
  35305.      bool setNetCode(const string &NetCodeSetting) 
  35306.  
  35307.      Set the internet code for this country 
  35308.      bool erase() 
  35309.  
  35310.      Sets all the data members to empty 
  35311.  
  35312.   Get data members 
  35313.      bool getAll(mapString &FieldValues) 
  35314.  
  35315.      Return a mapString of all the data members of this topic. The key is the 
  35316.      variable name.  LCP: CountryAttribs 
  35317.      string getDesc() 
  35318.  
  35319.      Get the short description 
  35320.      string getDescLong() 
  35321.  
  35322.      Get the long description 
  35323.      string getDescNative() 
  35324.  
  35325.      Get the native language description 
  35326.      string getNetCode() 
  35327.  
  35328.      Get the internet code for this country 
  35329.  
  35330.  
  35331. ΓòÉΓòÉΓòÉ <hidden> 8ctrylang.h ΓòÉΓòÉΓòÉ
  35332.  
  35333.  
  35334. lyris_Country Class 
  35335.  
  35336.      class lyris_Country 
  35337.  
  35338.      For determining what countries exist, and what languages are spoken & 
  35339.      preferred in each country 
  35340.  
  35341.      Defined in: COUNTRY.H 
  35342.  
  35343.   Create a new country 
  35344.  
  35345.       bool createNew() 
  35346.  
  35347.      Creates a new country/language table row.  LCP: CountryCreate 
  35348.      bool updateDatabase() 
  35349.  
  35350.      Save the current country with the data members that have changed.  LCP: 
  35351.      CountryUpdate 
  35352.      bool VerifyFields() 
  35353.  
  35354.      Verify that all required fields are filled in. 
  35355.  
  35356.   Retrieve data from the database 
  35357.      bool fetchAllCountries(vecString &AllCountries) 
  35358.  
  35359.      Fetch a list of all countries.  LCP: CountryAll 
  35360.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35361.  
  35362.      Fetch a paired list of countries and their native language descriptions, 
  35363.      sorted by english description.  LCP: CountryEngNat 
  35364.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35365.  
  35366.      Fetch a paired list of native language country descriptions, and the 
  35367.      english name of the country. 
  35368.      bool retrieveFromNetCode() 
  35369.  
  35370.      Determine the country that uses the currently set NetCode.  Fills all the 
  35371.      other country attributes with values. LCP: CountryAttNetCode 
  35372.      bool retrieveFromDesc() 
  35373.  
  35374.      Determine the country that uses the currently set description.  Fills all 
  35375.      the other country attributes with values.  LCP: CountryAttribs 
  35376.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35377.  
  35378.      Determine the primary language of the current country.  "Desc" must be 
  35379.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35380.      CountryPrimLang 
  35381.      bool getAllLanguages(vecString &Languages) 
  35382.  
  35383.      Determine all the languages used by the current country.  "Desc" must be 
  35384.      already set.  The result is returned in priority order (highest priority 
  35385.      first) in vecString &Languages.  LCP: CountryLanguages 
  35386.      bool getLanguageList(vecString &Languages) 
  35387.  
  35388.      Get a list of all possible languages, in alphabetical order, returned in 
  35389.      vecString &Languages.  LCP: CountryLangList 
  35390.      bool getLanguageListEngNat(mapString &Languages) 
  35391.  
  35392.      Get a map of all possible languages, their native description in 
  35393.      alphabetical order by english description, returned in in vecString 
  35394.      &Languages.  LCP: CountryLangListEngNat 
  35395.  
  35396.   Delete a country 
  35397.      bool deleteFromDesc() 
  35398.  
  35399.      Delete the country that uses the currently set description.  LCP: 
  35400.      CountryDelete 
  35401.  
  35402.   Set data members 
  35403.      bool setAll(mapString &FieldValues) 
  35404.  
  35405.      Sets all the data members of a topic using the mapString which is passed 
  35406.      to it.  Only the fields present in the mapString are updated, the other 
  35407.      fields are untouched.  LCP: CountryUpdate 
  35408.      bool setDesc(const string &DescSetting) 
  35409.  
  35410.      Set the short description 
  35411.      bool setDescLong(const string &DescLongSetting) 
  35412.  
  35413.      Set the long description 
  35414.      bool setDescNative(const string &DescNativeSetting) 
  35415.  
  35416.      Set the native language description 
  35417.      bool setNetCode(const string &NetCodeSetting) 
  35418.  
  35419.      Set the internet code for this country 
  35420.      bool erase() 
  35421.  
  35422.      Sets all the data members to empty 
  35423.  
  35424.   Get data members 
  35425.      bool getAll(mapString &FieldValues) 
  35426.  
  35427.      Return a mapString of all the data members of this topic. The key is the 
  35428.      variable name.  LCP: CountryAttribs 
  35429.      string getDesc() 
  35430.  
  35431.      Get the short description 
  35432.      string getDescLong() 
  35433.  
  35434.      Get the long description 
  35435.      string getDescNative() 
  35436.  
  35437.      Get the native language description 
  35438.      string getNetCode() 
  35439.  
  35440.      Get the internet code for this country 
  35441.  
  35442.  
  35443. ΓòÉΓòÉΓòÉ <hidden> 9countries.h ΓòÉΓòÉΓòÉ
  35444.  
  35445.  
  35446. lyris_Country Class 
  35447.  
  35448.      class lyris_Country 
  35449.  
  35450.      For determining what countries exist, and what languages are spoken & 
  35451.      preferred in each country 
  35452.  
  35453.      Defined in: COUNTRY.H 
  35454.  
  35455.   Create a new country 
  35456.  
  35457.       bool createNew() 
  35458.  
  35459.      Creates a new country/language table row.  LCP: CountryCreate 
  35460.      bool updateDatabase() 
  35461.  
  35462.      Save the current country with the data members that have changed.  LCP: 
  35463.      CountryUpdate 
  35464.      bool VerifyFields() 
  35465.  
  35466.      Verify that all required fields are filled in. 
  35467.  
  35468.   Retrieve data from the database 
  35469.      bool fetchAllCountries(vecString &AllCountries) 
  35470.  
  35471.      Fetch a list of all countries.  LCP: CountryAll 
  35472.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35473.  
  35474.      Fetch a paired list of countries and their native language descriptions, 
  35475.      sorted by english description.  LCP: CountryEngNat 
  35476.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35477.  
  35478.      Fetch a paired list of native language country descriptions, and the 
  35479.      english name of the country. 
  35480.      bool retrieveFromNetCode() 
  35481.  
  35482.      Determine the country that uses the currently set NetCode.  Fills all the 
  35483.      other country attributes with values. LCP: CountryAttNetCode 
  35484.      bool retrieveFromDesc() 
  35485.  
  35486.      Determine the country that uses the currently set description.  Fills all 
  35487.      the other country attributes with values.  LCP: CountryAttribs 
  35488.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35489.  
  35490.      Determine the primary language of the current country.  "Desc" must be 
  35491.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35492.      CountryPrimLang 
  35493.      bool getAllLanguages(vecString &Languages) 
  35494.  
  35495.      Determine all the languages used by the current country.  "Desc" must be 
  35496.      already set.  The result is returned in priority order (highest priority 
  35497.      first) in vecString &Languages.  LCP: CountryLanguages 
  35498.      bool getLanguageList(vecString &Languages) 
  35499.  
  35500.      Get a list of all possible languages, in alphabetical order, returned in 
  35501.      vecString &Languages.  LCP: CountryLangList 
  35502.      bool getLanguageListEngNat(mapString &Languages) 
  35503.  
  35504.      Get a map of all possible languages, their native description in 
  35505.      alphabetical order by english description, returned in in vecString 
  35506.      &Languages.  LCP: CountryLangListEngNat 
  35507.  
  35508.   Delete a country 
  35509.      bool deleteFromDesc() 
  35510.  
  35511.      Delete the country that uses the currently set description.  LCP: 
  35512.      CountryDelete 
  35513.  
  35514.   Set data members 
  35515.      bool setAll(mapString &FieldValues) 
  35516.  
  35517.      Sets all the data members of a topic using the mapString which is passed 
  35518.      to it.  Only the fields present in the mapString are updated, the other 
  35519.      fields are untouched.  LCP: CountryUpdate 
  35520.      bool setDesc(const string &DescSetting) 
  35521.  
  35522.      Set the short description 
  35523.      bool setDescLong(const string &DescLongSetting) 
  35524.  
  35525.      Set the long description 
  35526.      bool setDescNative(const string &DescNativeSetting) 
  35527.  
  35528.      Set the native language description 
  35529.      bool setNetCode(const string &NetCodeSetting) 
  35530.  
  35531.      Set the internet code for this country 
  35532.      bool erase() 
  35533.  
  35534.      Sets all the data members to empty 
  35535.  
  35536.   Get data members 
  35537.      bool getAll(mapString &FieldValues) 
  35538.  
  35539.      Return a mapString of all the data members of this topic. The key is the 
  35540.      variable name.  LCP: CountryAttribs 
  35541.      string getDesc() 
  35542.  
  35543.      Get the short description 
  35544.      string getDescLong() 
  35545.  
  35546.      Get the long description 
  35547.      string getDescNative() 
  35548.  
  35549.      Get the native language description 
  35550.      string getNetCode() 
  35551.  
  35552.      Get the internet code for this country 
  35553.  
  35554.  
  35555. ΓòÉΓòÉΓòÉ <hidden> :config.cxx ΓòÉΓòÉΓòÉ
  35556.  
  35557.  
  35558. lyris_Country Class 
  35559.  
  35560.      class lyris_Country 
  35561.  
  35562.      For determining what countries exist, and what languages are spoken & 
  35563.      preferred in each country 
  35564.  
  35565.      Defined in: COUNTRY.H 
  35566.  
  35567.   Create a new country 
  35568.  
  35569.       bool createNew() 
  35570.  
  35571.      Creates a new country/language table row.  LCP: CountryCreate 
  35572.      bool updateDatabase() 
  35573.  
  35574.      Save the current country with the data members that have changed.  LCP: 
  35575.      CountryUpdate 
  35576.      bool VerifyFields() 
  35577.  
  35578.      Verify that all required fields are filled in. 
  35579.  
  35580.   Retrieve data from the database 
  35581.      bool fetchAllCountries(vecString &AllCountries) 
  35582.  
  35583.      Fetch a list of all countries.  LCP: CountryAll 
  35584.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35585.  
  35586.      Fetch a paired list of countries and their native language descriptions, 
  35587.      sorted by english description.  LCP: CountryEngNat 
  35588.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35589.  
  35590.      Fetch a paired list of native language country descriptions, and the 
  35591.      english name of the country. 
  35592.      bool retrieveFromNetCode() 
  35593.  
  35594.      Determine the country that uses the currently set NetCode.  Fills all the 
  35595.      other country attributes with values. LCP: CountryAttNetCode 
  35596.      bool retrieveFromDesc() 
  35597.  
  35598.      Determine the country that uses the currently set description.  Fills all 
  35599.      the other country attributes with values.  LCP: CountryAttribs 
  35600.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35601.  
  35602.      Determine the primary language of the current country.  "Desc" must be 
  35603.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35604.      CountryPrimLang 
  35605.      bool getAllLanguages(vecString &Languages) 
  35606.  
  35607.      Determine all the languages used by the current country.  "Desc" must be 
  35608.      already set.  The result is returned in priority order (highest priority 
  35609.      first) in vecString &Languages.  LCP: CountryLanguages 
  35610.      bool getLanguageList(vecString &Languages) 
  35611.  
  35612.      Get a list of all possible languages, in alphabetical order, returned in 
  35613.      vecString &Languages.  LCP: CountryLangList 
  35614.      bool getLanguageListEngNat(mapString &Languages) 
  35615.  
  35616.      Get a map of all possible languages, their native description in 
  35617.      alphabetical order by english description, returned in in vecString 
  35618.      &Languages.  LCP: CountryLangListEngNat 
  35619.  
  35620.   Delete a country 
  35621.      bool deleteFromDesc() 
  35622.  
  35623.      Delete the country that uses the currently set description.  LCP: 
  35624.      CountryDelete 
  35625.  
  35626.   Set data members 
  35627.      bool setAll(mapString &FieldValues) 
  35628.  
  35629.      Sets all the data members of a topic using the mapString which is passed 
  35630.      to it.  Only the fields present in the mapString are updated, the other 
  35631.      fields are untouched.  LCP: CountryUpdate 
  35632.      bool setDesc(const string &DescSetting) 
  35633.  
  35634.      Set the short description 
  35635.      bool setDescLong(const string &DescLongSetting) 
  35636.  
  35637.      Set the long description 
  35638.      bool setDescNative(const string &DescNativeSetting) 
  35639.  
  35640.      Set the native language description 
  35641.      bool setNetCode(const string &NetCodeSetting) 
  35642.  
  35643.      Set the internet code for this country 
  35644.      bool erase() 
  35645.  
  35646.      Sets all the data members to empty 
  35647.  
  35648.   Get data members 
  35649.      bool getAll(mapString &FieldValues) 
  35650.  
  35651.      Return a mapString of all the data members of this topic. The key is the 
  35652.      variable name.  LCP: CountryAttribs 
  35653.      string getDesc() 
  35654.  
  35655.      Get the short description 
  35656.      string getDescLong() 
  35657.  
  35658.      Get the long description 
  35659.      string getDescNative() 
  35660.  
  35661.      Get the native language description 
  35662.      string getNetCode() 
  35663.  
  35664.      Get the internet code for this country 
  35665.  
  35666.  
  35667. ΓòÉΓòÉΓòÉ <hidden> ;Words.dbf ΓòÉΓòÉΓòÉ
  35668.  
  35669.  
  35670. lyris_Country Class 
  35671.  
  35672.      class lyris_Country 
  35673.  
  35674.      For determining what countries exist, and what languages are spoken & 
  35675.      preferred in each country 
  35676.  
  35677.      Defined in: COUNTRY.H 
  35678.  
  35679.   Create a new country 
  35680.  
  35681.       bool createNew() 
  35682.  
  35683.      Creates a new country/language table row.  LCP: CountryCreate 
  35684.      bool updateDatabase() 
  35685.  
  35686.      Save the current country with the data members that have changed.  LCP: 
  35687.      CountryUpdate 
  35688.      bool VerifyFields() 
  35689.  
  35690.      Verify that all required fields are filled in. 
  35691.  
  35692.   Retrieve data from the database 
  35693.      bool fetchAllCountries(vecString &AllCountries) 
  35694.  
  35695.      Fetch a list of all countries.  LCP: CountryAll 
  35696.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35697.  
  35698.      Fetch a paired list of countries and their native language descriptions, 
  35699.      sorted by english description.  LCP: CountryEngNat 
  35700.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35701.  
  35702.      Fetch a paired list of native language country descriptions, and the 
  35703.      english name of the country. 
  35704.      bool retrieveFromNetCode() 
  35705.  
  35706.      Determine the country that uses the currently set NetCode.  Fills all the 
  35707.      other country attributes with values. LCP: CountryAttNetCode 
  35708.      bool retrieveFromDesc() 
  35709.  
  35710.      Determine the country that uses the currently set description.  Fills all 
  35711.      the other country attributes with values.  LCP: CountryAttribs 
  35712.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35713.  
  35714.      Determine the primary language of the current country.  "Desc" must be 
  35715.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35716.      CountryPrimLang 
  35717.      bool getAllLanguages(vecString &Languages) 
  35718.  
  35719.      Determine all the languages used by the current country.  "Desc" must be 
  35720.      already set.  The result is returned in priority order (highest priority 
  35721.      first) in vecString &Languages.  LCP: CountryLanguages 
  35722.      bool getLanguageList(vecString &Languages) 
  35723.  
  35724.      Get a list of all possible languages, in alphabetical order, returned in 
  35725.      vecString &Languages.  LCP: CountryLangList 
  35726.      bool getLanguageListEngNat(mapString &Languages) 
  35727.  
  35728.      Get a map of all possible languages, their native description in 
  35729.      alphabetical order by english description, returned in in vecString 
  35730.      &Languages.  LCP: CountryLangListEngNat 
  35731.  
  35732.   Delete a country 
  35733.      bool deleteFromDesc() 
  35734.  
  35735.      Delete the country that uses the currently set description.  LCP: 
  35736.      CountryDelete 
  35737.  
  35738.   Set data members 
  35739.      bool setAll(mapString &FieldValues) 
  35740.  
  35741.      Sets all the data members of a topic using the mapString which is passed 
  35742.      to it.  Only the fields present in the mapString are updated, the other 
  35743.      fields are untouched.  LCP: CountryUpdate 
  35744.      bool setDesc(const string &DescSetting) 
  35745.  
  35746.      Set the short description 
  35747.      bool setDescLong(const string &DescLongSetting) 
  35748.  
  35749.      Set the long description 
  35750.      bool setDescNative(const string &DescNativeSetting) 
  35751.  
  35752.      Set the native language description 
  35753.      bool setNetCode(const string &NetCodeSetting) 
  35754.  
  35755.      Set the internet code for this country 
  35756.      bool erase() 
  35757.  
  35758.      Sets all the data members to empty 
  35759.  
  35760.   Get data members 
  35761.      bool getAll(mapString &FieldValues) 
  35762.  
  35763.      Return a mapString of all the data members of this topic. The key is the 
  35764.      variable name.  LCP: CountryAttribs 
  35765.      string getDesc() 
  35766.  
  35767.      Get the short description 
  35768.      string getDescLong() 
  35769.  
  35770.      Get the long description 
  35771.      string getDescNative() 
  35772.  
  35773.      Get the native language description 
  35774.      string getNetCode() 
  35775.  
  35776.      Get the internet code for this country 
  35777.  
  35778.  
  35779. ΓòÉΓòÉΓòÉ <hidden> <Variable primitives ΓòÉΓòÉΓòÉ
  35780.  
  35781.  
  35782. lyris_Country Class 
  35783.  
  35784.      class lyris_Country 
  35785.  
  35786.      For determining what countries exist, and what languages are spoken & 
  35787.      preferred in each country 
  35788.  
  35789.      Defined in: COUNTRY.H 
  35790.  
  35791.   Create a new country 
  35792.  
  35793.       bool createNew() 
  35794.  
  35795.      Creates a new country/language table row.  LCP: CountryCreate 
  35796.      bool updateDatabase() 
  35797.  
  35798.      Save the current country with the data members that have changed.  LCP: 
  35799.      CountryUpdate 
  35800.      bool VerifyFields() 
  35801.  
  35802.      Verify that all required fields are filled in. 
  35803.  
  35804.   Retrieve data from the database 
  35805.      bool fetchAllCountries(vecString &AllCountries) 
  35806.  
  35807.      Fetch a list of all countries.  LCP: CountryAll 
  35808.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35809.  
  35810.      Fetch a paired list of countries and their native language descriptions, 
  35811.      sorted by english description.  LCP: CountryEngNat 
  35812.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35813.  
  35814.      Fetch a paired list of native language country descriptions, and the 
  35815.      english name of the country. 
  35816.      bool retrieveFromNetCode() 
  35817.  
  35818.      Determine the country that uses the currently set NetCode.  Fills all the 
  35819.      other country attributes with values. LCP: CountryAttNetCode 
  35820.      bool retrieveFromDesc() 
  35821.  
  35822.      Determine the country that uses the currently set description.  Fills all 
  35823.      the other country attributes with values.  LCP: CountryAttribs 
  35824.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35825.  
  35826.      Determine the primary language of the current country.  "Desc" must be 
  35827.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35828.      CountryPrimLang 
  35829.      bool getAllLanguages(vecString &Languages) 
  35830.  
  35831.      Determine all the languages used by the current country.  "Desc" must be 
  35832.      already set.  The result is returned in priority order (highest priority 
  35833.      first) in vecString &Languages.  LCP: CountryLanguages 
  35834.      bool getLanguageList(vecString &Languages) 
  35835.  
  35836.      Get a list of all possible languages, in alphabetical order, returned in 
  35837.      vecString &Languages.  LCP: CountryLangList 
  35838.      bool getLanguageListEngNat(mapString &Languages) 
  35839.  
  35840.      Get a map of all possible languages, their native description in 
  35841.      alphabetical order by english description, returned in in vecString 
  35842.      &Languages.  LCP: CountryLangListEngNat 
  35843.  
  35844.   Delete a country 
  35845.      bool deleteFromDesc() 
  35846.  
  35847.      Delete the country that uses the currently set description.  LCP: 
  35848.      CountryDelete 
  35849.  
  35850.   Set data members 
  35851.      bool setAll(mapString &FieldValues) 
  35852.  
  35853.      Sets all the data members of a topic using the mapString which is passed 
  35854.      to it.  Only the fields present in the mapString are updated, the other 
  35855.      fields are untouched.  LCP: CountryUpdate 
  35856.      bool setDesc(const string &DescSetting) 
  35857.  
  35858.      Set the short description 
  35859.      bool setDescLong(const string &DescLongSetting) 
  35860.  
  35861.      Set the long description 
  35862.      bool setDescNative(const string &DescNativeSetting) 
  35863.  
  35864.      Set the native language description 
  35865.      bool setNetCode(const string &NetCodeSetting) 
  35866.  
  35867.      Set the internet code for this country 
  35868.      bool erase() 
  35869.  
  35870.      Sets all the data members to empty 
  35871.  
  35872.   Get data members 
  35873.      bool getAll(mapString &FieldValues) 
  35874.  
  35875.      Return a mapString of all the data members of this topic. The key is the 
  35876.      variable name.  LCP: CountryAttribs 
  35877.      string getDesc() 
  35878.  
  35879.      Get the short description 
  35880.      string getDescLong() 
  35881.  
  35882.      Get the long description 
  35883.      string getDescNative() 
  35884.  
  35885.      Get the native language description 
  35886.      string getNetCode() 
  35887.  
  35888.      Get the internet code for this country 
  35889.  
  35890.  
  35891. ΓòÉΓòÉΓòÉ <hidden> =values ΓòÉΓòÉΓòÉ
  35892.  
  35893.  
  35894. lyris_Country Class 
  35895.  
  35896.      class lyris_Country 
  35897.  
  35898.      For determining what countries exist, and what languages are spoken & 
  35899.      preferred in each country 
  35900.  
  35901.      Defined in: COUNTRY.H 
  35902.  
  35903.   Create a new country 
  35904.  
  35905.       bool createNew() 
  35906.  
  35907.      Creates a new country/language table row.  LCP: CountryCreate 
  35908.      bool updateDatabase() 
  35909.  
  35910.      Save the current country with the data members that have changed.  LCP: 
  35911.      CountryUpdate 
  35912.      bool VerifyFields() 
  35913.  
  35914.      Verify that all required fields are filled in. 
  35915.  
  35916.   Retrieve data from the database 
  35917.      bool fetchAllCountries(vecString &AllCountries) 
  35918.  
  35919.      Fetch a list of all countries.  LCP: CountryAll 
  35920.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  35921.  
  35922.      Fetch a paired list of countries and their native language descriptions, 
  35923.      sorted by english description.  LCP: CountryEngNat 
  35924.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  35925.  
  35926.      Fetch a paired list of native language country descriptions, and the 
  35927.      english name of the country. 
  35928.      bool retrieveFromNetCode() 
  35929.  
  35930.      Determine the country that uses the currently set NetCode.  Fills all the 
  35931.      other country attributes with values. LCP: CountryAttNetCode 
  35932.      bool retrieveFromDesc() 
  35933.  
  35934.      Determine the country that uses the currently set description.  Fills all 
  35935.      the other country attributes with values.  LCP: CountryAttribs 
  35936.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  35937.  
  35938.      Determine the primary language of the current country.  "Desc" must be 
  35939.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  35940.      CountryPrimLang 
  35941.      bool getAllLanguages(vecString &Languages) 
  35942.  
  35943.      Determine all the languages used by the current country.  "Desc" must be 
  35944.      already set.  The result is returned in priority order (highest priority 
  35945.      first) in vecString &Languages.  LCP: CountryLanguages 
  35946.      bool getLanguageList(vecString &Languages) 
  35947.  
  35948.      Get a list of all possible languages, in alphabetical order, returned in 
  35949.      vecString &Languages.  LCP: CountryLangList 
  35950.      bool getLanguageListEngNat(mapString &Languages) 
  35951.  
  35952.      Get a map of all possible languages, their native description in 
  35953.      alphabetical order by english description, returned in in vecString 
  35954.      &Languages.  LCP: CountryLangListEngNat 
  35955.  
  35956.   Delete a country 
  35957.      bool deleteFromDesc() 
  35958.  
  35959.      Delete the country that uses the currently set description.  LCP: 
  35960.      CountryDelete 
  35961.  
  35962.   Set data members 
  35963.      bool setAll(mapString &FieldValues) 
  35964.  
  35965.      Sets all the data members of a topic using the mapString which is passed 
  35966.      to it.  Only the fields present in the mapString are updated, the other 
  35967.      fields are untouched.  LCP: CountryUpdate 
  35968.      bool setDesc(const string &DescSetting) 
  35969.  
  35970.      Set the short description 
  35971.      bool setDescLong(const string &DescLongSetting) 
  35972.  
  35973.      Set the long description 
  35974.      bool setDescNative(const string &DescNativeSetting) 
  35975.  
  35976.      Set the native language description 
  35977.      bool setNetCode(const string &NetCodeSetting) 
  35978.  
  35979.      Set the internet code for this country 
  35980.      bool erase() 
  35981.  
  35982.      Sets all the data members to empty 
  35983.  
  35984.   Get data members 
  35985.      bool getAll(mapString &FieldValues) 
  35986.  
  35987.      Return a mapString of all the data members of this topic. The key is the 
  35988.      variable name.  LCP: CountryAttribs 
  35989.      string getDesc() 
  35990.  
  35991.      Get the short description 
  35992.      string getDescLong() 
  35993.  
  35994.      Get the long description 
  35995.      string getDescNative() 
  35996.  
  35997.      Get the native language description 
  35998.      string getNetCode() 
  35999.  
  36000.      Get the internet code for this country 
  36001.  
  36002.  
  36003. ΓòÉΓòÉΓòÉ <hidden> >TRUE ΓòÉΓòÉΓòÉ
  36004.  
  36005.  
  36006. lyris_Country Class 
  36007.  
  36008.      class lyris_Country 
  36009.  
  36010.      For determining what countries exist, and what languages are spoken & 
  36011.      preferred in each country 
  36012.  
  36013.      Defined in: COUNTRY.H 
  36014.  
  36015.   Create a new country 
  36016.  
  36017.       bool createNew() 
  36018.  
  36019.      Creates a new country/language table row.  LCP: CountryCreate 
  36020.      bool updateDatabase() 
  36021.  
  36022.      Save the current country with the data members that have changed.  LCP: 
  36023.      CountryUpdate 
  36024.      bool VerifyFields() 
  36025.  
  36026.      Verify that all required fields are filled in. 
  36027.  
  36028.   Retrieve data from the database 
  36029.      bool fetchAllCountries(vecString &AllCountries) 
  36030.  
  36031.      Fetch a list of all countries.  LCP: CountryAll 
  36032.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36033.  
  36034.      Fetch a paired list of countries and their native language descriptions, 
  36035.      sorted by english description.  LCP: CountryEngNat 
  36036.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36037.  
  36038.      Fetch a paired list of native language country descriptions, and the 
  36039.      english name of the country. 
  36040.      bool retrieveFromNetCode() 
  36041.  
  36042.      Determine the country that uses the currently set NetCode.  Fills all the 
  36043.      other country attributes with values. LCP: CountryAttNetCode 
  36044.      bool retrieveFromDesc() 
  36045.  
  36046.      Determine the country that uses the currently set description.  Fills all 
  36047.      the other country attributes with values.  LCP: CountryAttribs 
  36048.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36049.  
  36050.      Determine the primary language of the current country.  "Desc" must be 
  36051.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36052.      CountryPrimLang 
  36053.      bool getAllLanguages(vecString &Languages) 
  36054.  
  36055.      Determine all the languages used by the current country.  "Desc" must be 
  36056.      already set.  The result is returned in priority order (highest priority 
  36057.      first) in vecString &Languages.  LCP: CountryLanguages 
  36058.      bool getLanguageList(vecString &Languages) 
  36059.  
  36060.      Get a list of all possible languages, in alphabetical order, returned in 
  36061.      vecString &Languages.  LCP: CountryLangList 
  36062.      bool getLanguageListEngNat(mapString &Languages) 
  36063.  
  36064.      Get a map of all possible languages, their native description in 
  36065.      alphabetical order by english description, returned in in vecString 
  36066.      &Languages.  LCP: CountryLangListEngNat 
  36067.  
  36068.   Delete a country 
  36069.      bool deleteFromDesc() 
  36070.  
  36071.      Delete the country that uses the currently set description.  LCP: 
  36072.      CountryDelete 
  36073.  
  36074.   Set data members 
  36075.      bool setAll(mapString &FieldValues) 
  36076.  
  36077.      Sets all the data members of a topic using the mapString which is passed 
  36078.      to it.  Only the fields present in the mapString are updated, the other 
  36079.      fields are untouched.  LCP: CountryUpdate 
  36080.      bool setDesc(const string &DescSetting) 
  36081.  
  36082.      Set the short description 
  36083.      bool setDescLong(const string &DescLongSetting) 
  36084.  
  36085.      Set the long description 
  36086.      bool setDescNative(const string &DescNativeSetting) 
  36087.  
  36088.      Set the native language description 
  36089.      bool setNetCode(const string &NetCodeSetting) 
  36090.  
  36091.      Set the internet code for this country 
  36092.      bool erase() 
  36093.  
  36094.      Sets all the data members to empty 
  36095.  
  36096.   Get data members 
  36097.      bool getAll(mapString &FieldValues) 
  36098.  
  36099.      Return a mapString of all the data members of this topic. The key is the 
  36100.      variable name.  LCP: CountryAttribs 
  36101.      string getDesc() 
  36102.  
  36103.      Get the short description 
  36104.      string getDescLong() 
  36105.  
  36106.      Get the long description 
  36107.      string getDescNative() 
  36108.  
  36109.      Get the native language description 
  36110.      string getNetCode() 
  36111.  
  36112.      Get the internet code for this country 
  36113.  
  36114.  
  36115. ΓòÉΓòÉΓòÉ <hidden> ?Topics.dbf ΓòÉΓòÉΓòÉ
  36116.  
  36117.  
  36118. lyris_Country Class 
  36119.  
  36120.      class lyris_Country 
  36121.  
  36122.      For determining what countries exist, and what languages are spoken & 
  36123.      preferred in each country 
  36124.  
  36125.      Defined in: COUNTRY.H 
  36126.  
  36127.   Create a new country 
  36128.  
  36129.       bool createNew() 
  36130.  
  36131.      Creates a new country/language table row.  LCP: CountryCreate 
  36132.      bool updateDatabase() 
  36133.  
  36134.      Save the current country with the data members that have changed.  LCP: 
  36135.      CountryUpdate 
  36136.      bool VerifyFields() 
  36137.  
  36138.      Verify that all required fields are filled in. 
  36139.  
  36140.   Retrieve data from the database 
  36141.      bool fetchAllCountries(vecString &AllCountries) 
  36142.  
  36143.      Fetch a list of all countries.  LCP: CountryAll 
  36144.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36145.  
  36146.      Fetch a paired list of countries and their native language descriptions, 
  36147.      sorted by english description.  LCP: CountryEngNat 
  36148.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36149.  
  36150.      Fetch a paired list of native language country descriptions, and the 
  36151.      english name of the country. 
  36152.      bool retrieveFromNetCode() 
  36153.  
  36154.      Determine the country that uses the currently set NetCode.  Fills all the 
  36155.      other country attributes with values. LCP: CountryAttNetCode 
  36156.      bool retrieveFromDesc() 
  36157.  
  36158.      Determine the country that uses the currently set description.  Fills all 
  36159.      the other country attributes with values.  LCP: CountryAttribs 
  36160.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36161.  
  36162.      Determine the primary language of the current country.  "Desc" must be 
  36163.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36164.      CountryPrimLang 
  36165.      bool getAllLanguages(vecString &Languages) 
  36166.  
  36167.      Determine all the languages used by the current country.  "Desc" must be 
  36168.      already set.  The result is returned in priority order (highest priority 
  36169.      first) in vecString &Languages.  LCP: CountryLanguages 
  36170.      bool getLanguageList(vecString &Languages) 
  36171.  
  36172.      Get a list of all possible languages, in alphabetical order, returned in 
  36173.      vecString &Languages.  LCP: CountryLangList 
  36174.      bool getLanguageListEngNat(mapString &Languages) 
  36175.  
  36176.      Get a map of all possible languages, their native description in 
  36177.      alphabetical order by english description, returned in in vecString 
  36178.      &Languages.  LCP: CountryLangListEngNat 
  36179.  
  36180.   Delete a country 
  36181.      bool deleteFromDesc() 
  36182.  
  36183.      Delete the country that uses the currently set description.  LCP: 
  36184.      CountryDelete 
  36185.  
  36186.   Set data members 
  36187.      bool setAll(mapString &FieldValues) 
  36188.  
  36189.      Sets all the data members of a topic using the mapString which is passed 
  36190.      to it.  Only the fields present in the mapString are updated, the other 
  36191.      fields are untouched.  LCP: CountryUpdate 
  36192.      bool setDesc(const string &DescSetting) 
  36193.  
  36194.      Set the short description 
  36195.      bool setDescLong(const string &DescLongSetting) 
  36196.  
  36197.      Set the long description 
  36198.      bool setDescNative(const string &DescNativeSetting) 
  36199.  
  36200.      Set the native language description 
  36201.      bool setNetCode(const string &NetCodeSetting) 
  36202.  
  36203.      Set the internet code for this country 
  36204.      bool erase() 
  36205.  
  36206.      Sets all the data members to empty 
  36207.  
  36208.   Get data members 
  36209.      bool getAll(mapString &FieldValues) 
  36210.  
  36211.      Return a mapString of all the data members of this topic. The key is the 
  36212.      variable name.  LCP: CountryAttribs 
  36213.      string getDesc() 
  36214.  
  36215.      Get the short description 
  36216.      string getDescLong() 
  36217.  
  36218.      Get the long description 
  36219.      string getDescNative() 
  36220.  
  36221.      Get the native language description 
  36222.      string getNetCode() 
  36223.  
  36224.      Get the internet code for this country 
  36225.  
  36226.  
  36227. ΓòÉΓòÉΓòÉ <hidden> @TopicDelete ΓòÉΓòÉΓòÉ
  36228.  
  36229.  
  36230. lyris_Country Class 
  36231.  
  36232.      class lyris_Country 
  36233.  
  36234.      For determining what countries exist, and what languages are spoken & 
  36235.      preferred in each country 
  36236.  
  36237.      Defined in: COUNTRY.H 
  36238.  
  36239.   Create a new country 
  36240.  
  36241.       bool createNew() 
  36242.  
  36243.      Creates a new country/language table row.  LCP: CountryCreate 
  36244.      bool updateDatabase() 
  36245.  
  36246.      Save the current country with the data members that have changed.  LCP: 
  36247.      CountryUpdate 
  36248.      bool VerifyFields() 
  36249.  
  36250.      Verify that all required fields are filled in. 
  36251.  
  36252.   Retrieve data from the database 
  36253.      bool fetchAllCountries(vecString &AllCountries) 
  36254.  
  36255.      Fetch a list of all countries.  LCP: CountryAll 
  36256.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36257.  
  36258.      Fetch a paired list of countries and their native language descriptions, 
  36259.      sorted by english description.  LCP: CountryEngNat 
  36260.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36261.  
  36262.      Fetch a paired list of native language country descriptions, and the 
  36263.      english name of the country. 
  36264.      bool retrieveFromNetCode() 
  36265.  
  36266.      Determine the country that uses the currently set NetCode.  Fills all the 
  36267.      other country attributes with values. LCP: CountryAttNetCode 
  36268.      bool retrieveFromDesc() 
  36269.  
  36270.      Determine the country that uses the currently set description.  Fills all 
  36271.      the other country attributes with values.  LCP: CountryAttribs 
  36272.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36273.  
  36274.      Determine the primary language of the current country.  "Desc" must be 
  36275.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36276.      CountryPrimLang 
  36277.      bool getAllLanguages(vecString &Languages) 
  36278.  
  36279.      Determine all the languages used by the current country.  "Desc" must be 
  36280.      already set.  The result is returned in priority order (highest priority 
  36281.      first) in vecString &Languages.  LCP: CountryLanguages 
  36282.      bool getLanguageList(vecString &Languages) 
  36283.  
  36284.      Get a list of all possible languages, in alphabetical order, returned in 
  36285.      vecString &Languages.  LCP: CountryLangList 
  36286.      bool getLanguageListEngNat(mapString &Languages) 
  36287.  
  36288.      Get a map of all possible languages, their native description in 
  36289.      alphabetical order by english description, returned in in vecString 
  36290.      &Languages.  LCP: CountryLangListEngNat 
  36291.  
  36292.   Delete a country 
  36293.      bool deleteFromDesc() 
  36294.  
  36295.      Delete the country that uses the currently set description.  LCP: 
  36296.      CountryDelete 
  36297.  
  36298.   Set data members 
  36299.      bool setAll(mapString &FieldValues) 
  36300.  
  36301.      Sets all the data members of a topic using the mapString which is passed 
  36302.      to it.  Only the fields present in the mapString are updated, the other 
  36303.      fields are untouched.  LCP: CountryUpdate 
  36304.      bool setDesc(const string &DescSetting) 
  36305.  
  36306.      Set the short description 
  36307.      bool setDescLong(const string &DescLongSetting) 
  36308.  
  36309.      Set the long description 
  36310.      bool setDescNative(const string &DescNativeSetting) 
  36311.  
  36312.      Set the native language description 
  36313.      bool setNetCode(const string &NetCodeSetting) 
  36314.  
  36315.      Set the internet code for this country 
  36316.      bool erase() 
  36317.  
  36318.      Sets all the data members to empty 
  36319.  
  36320.   Get data members 
  36321.      bool getAll(mapString &FieldValues) 
  36322.  
  36323.      Return a mapString of all the data members of this topic. The key is the 
  36324.      variable name.  LCP: CountryAttribs 
  36325.      string getDesc() 
  36326.  
  36327.      Get the short description 
  36328.      string getDescLong() 
  36329.  
  36330.      Get the long description 
  36331.      string getDescNative() 
  36332.  
  36333.      Get the native language description 
  36334.      string getNetCode() 
  36335.  
  36336.      Get the internet code for this country 
  36337.  
  36338.  
  36339. ΓòÉΓòÉΓòÉ <hidden> ATopicAttribs ΓòÉΓòÉΓòÉ
  36340.  
  36341.  
  36342. lyris_Country Class 
  36343.  
  36344.      class lyris_Country 
  36345.  
  36346.      For determining what countries exist, and what languages are spoken & 
  36347.      preferred in each country 
  36348.  
  36349.      Defined in: COUNTRY.H 
  36350.  
  36351.   Create a new country 
  36352.  
  36353.       bool createNew() 
  36354.  
  36355.      Creates a new country/language table row.  LCP: CountryCreate 
  36356.      bool updateDatabase() 
  36357.  
  36358.      Save the current country with the data members that have changed.  LCP: 
  36359.      CountryUpdate 
  36360.      bool VerifyFields() 
  36361.  
  36362.      Verify that all required fields are filled in. 
  36363.  
  36364.   Retrieve data from the database 
  36365.      bool fetchAllCountries(vecString &AllCountries) 
  36366.  
  36367.      Fetch a list of all countries.  LCP: CountryAll 
  36368.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36369.  
  36370.      Fetch a paired list of countries and their native language descriptions, 
  36371.      sorted by english description.  LCP: CountryEngNat 
  36372.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36373.  
  36374.      Fetch a paired list of native language country descriptions, and the 
  36375.      english name of the country. 
  36376.      bool retrieveFromNetCode() 
  36377.  
  36378.      Determine the country that uses the currently set NetCode.  Fills all the 
  36379.      other country attributes with values. LCP: CountryAttNetCode 
  36380.      bool retrieveFromDesc() 
  36381.  
  36382.      Determine the country that uses the currently set description.  Fills all 
  36383.      the other country attributes with values.  LCP: CountryAttribs 
  36384.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36385.  
  36386.      Determine the primary language of the current country.  "Desc" must be 
  36387.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36388.      CountryPrimLang 
  36389.      bool getAllLanguages(vecString &Languages) 
  36390.  
  36391.      Determine all the languages used by the current country.  "Desc" must be 
  36392.      already set.  The result is returned in priority order (highest priority 
  36393.      first) in vecString &Languages.  LCP: CountryLanguages 
  36394.      bool getLanguageList(vecString &Languages) 
  36395.  
  36396.      Get a list of all possible languages, in alphabetical order, returned in 
  36397.      vecString &Languages.  LCP: CountryLangList 
  36398.      bool getLanguageListEngNat(mapString &Languages) 
  36399.  
  36400.      Get a map of all possible languages, their native description in 
  36401.      alphabetical order by english description, returned in in vecString 
  36402.      &Languages.  LCP: CountryLangListEngNat 
  36403.  
  36404.   Delete a country 
  36405.      bool deleteFromDesc() 
  36406.  
  36407.      Delete the country that uses the currently set description.  LCP: 
  36408.      CountryDelete 
  36409.  
  36410.   Set data members 
  36411.      bool setAll(mapString &FieldValues) 
  36412.  
  36413.      Sets all the data members of a topic using the mapString which is passed 
  36414.      to it.  Only the fields present in the mapString are updated, the other 
  36415.      fields are untouched.  LCP: CountryUpdate 
  36416.      bool setDesc(const string &DescSetting) 
  36417.  
  36418.      Set the short description 
  36419.      bool setDescLong(const string &DescLongSetting) 
  36420.  
  36421.      Set the long description 
  36422.      bool setDescNative(const string &DescNativeSetting) 
  36423.  
  36424.      Set the native language description 
  36425.      bool setNetCode(const string &NetCodeSetting) 
  36426.  
  36427.      Set the internet code for this country 
  36428.      bool erase() 
  36429.  
  36430.      Sets all the data members to empty 
  36431.  
  36432.   Get data members 
  36433.      bool getAll(mapString &FieldValues) 
  36434.  
  36435.      Return a mapString of all the data members of this topic. The key is the 
  36436.      variable name.  LCP: CountryAttribs 
  36437.      string getDesc() 
  36438.  
  36439.      Get the short description 
  36440.      string getDescLong() 
  36441.  
  36442.      Get the long description 
  36443.      string getDescNative() 
  36444.  
  36445.      Get the native language description 
  36446.      string getNetCode() 
  36447.  
  36448.      Get the internet code for this country 
  36449.  
  36450.  
  36451. ΓòÉΓòÉΓòÉ <hidden> BTopicAll ΓòÉΓòÉΓòÉ
  36452.  
  36453.  
  36454. lyris_Country Class 
  36455.  
  36456.      class lyris_Country 
  36457.  
  36458.      For determining what countries exist, and what languages are spoken & 
  36459.      preferred in each country 
  36460.  
  36461.      Defined in: COUNTRY.H 
  36462.  
  36463.   Create a new country 
  36464.  
  36465.       bool createNew() 
  36466.  
  36467.      Creates a new country/language table row.  LCP: CountryCreate 
  36468.      bool updateDatabase() 
  36469.  
  36470.      Save the current country with the data members that have changed.  LCP: 
  36471.      CountryUpdate 
  36472.      bool VerifyFields() 
  36473.  
  36474.      Verify that all required fields are filled in. 
  36475.  
  36476.   Retrieve data from the database 
  36477.      bool fetchAllCountries(vecString &AllCountries) 
  36478.  
  36479.      Fetch a list of all countries.  LCP: CountryAll 
  36480.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36481.  
  36482.      Fetch a paired list of countries and their native language descriptions, 
  36483.      sorted by english description.  LCP: CountryEngNat 
  36484.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36485.  
  36486.      Fetch a paired list of native language country descriptions, and the 
  36487.      english name of the country. 
  36488.      bool retrieveFromNetCode() 
  36489.  
  36490.      Determine the country that uses the currently set NetCode.  Fills all the 
  36491.      other country attributes with values. LCP: CountryAttNetCode 
  36492.      bool retrieveFromDesc() 
  36493.  
  36494.      Determine the country that uses the currently set description.  Fills all 
  36495.      the other country attributes with values.  LCP: CountryAttribs 
  36496.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36497.  
  36498.      Determine the primary language of the current country.  "Desc" must be 
  36499.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36500.      CountryPrimLang 
  36501.      bool getAllLanguages(vecString &Languages) 
  36502.  
  36503.      Determine all the languages used by the current country.  "Desc" must be 
  36504.      already set.  The result is returned in priority order (highest priority 
  36505.      first) in vecString &Languages.  LCP: CountryLanguages 
  36506.      bool getLanguageList(vecString &Languages) 
  36507.  
  36508.      Get a list of all possible languages, in alphabetical order, returned in 
  36509.      vecString &Languages.  LCP: CountryLangList 
  36510.      bool getLanguageListEngNat(mapString &Languages) 
  36511.  
  36512.      Get a map of all possible languages, their native description in 
  36513.      alphabetical order by english description, returned in in vecString 
  36514.      &Languages.  LCP: CountryLangListEngNat 
  36515.  
  36516.   Delete a country 
  36517.      bool deleteFromDesc() 
  36518.  
  36519.      Delete the country that uses the currently set description.  LCP: 
  36520.      CountryDelete 
  36521.  
  36522.   Set data members 
  36523.      bool setAll(mapString &FieldValues) 
  36524.  
  36525.      Sets all the data members of a topic using the mapString which is passed 
  36526.      to it.  Only the fields present in the mapString are updated, the other 
  36527.      fields are untouched.  LCP: CountryUpdate 
  36528.      bool setDesc(const string &DescSetting) 
  36529.  
  36530.      Set the short description 
  36531.      bool setDescLong(const string &DescLongSetting) 
  36532.  
  36533.      Set the long description 
  36534.      bool setDescNative(const string &DescNativeSetting) 
  36535.  
  36536.      Set the native language description 
  36537.      bool setNetCode(const string &NetCodeSetting) 
  36538.  
  36539.      Set the internet code for this country 
  36540.      bool erase() 
  36541.  
  36542.      Sets all the data members to empty 
  36543.  
  36544.   Get data members 
  36545.      bool getAll(mapString &FieldValues) 
  36546.  
  36547.      Return a mapString of all the data members of this topic. The key is the 
  36548.      variable name.  LCP: CountryAttribs 
  36549.      string getDesc() 
  36550.  
  36551.      Get the short description 
  36552.      string getDescLong() 
  36553.  
  36554.      Get the long description 
  36555.      string getDescNative() 
  36556.  
  36557.      Get the native language description 
  36558.      string getNetCode() 
  36559.  
  36560.      Get the internet code for this country 
  36561.  
  36562.  
  36563. ΓòÉΓòÉΓòÉ <hidden> Cstring variable assignment ΓòÉΓòÉΓòÉ
  36564.  
  36565.  
  36566. lyris_Country Class 
  36567.  
  36568.      class lyris_Country 
  36569.  
  36570.      For determining what countries exist, and what languages are spoken & 
  36571.      preferred in each country 
  36572.  
  36573.      Defined in: COUNTRY.H 
  36574.  
  36575.   Create a new country 
  36576.  
  36577.       bool createNew() 
  36578.  
  36579.      Creates a new country/language table row.  LCP: CountryCreate 
  36580.      bool updateDatabase() 
  36581.  
  36582.      Save the current country with the data members that have changed.  LCP: 
  36583.      CountryUpdate 
  36584.      bool VerifyFields() 
  36585.  
  36586.      Verify that all required fields are filled in. 
  36587.  
  36588.   Retrieve data from the database 
  36589.      bool fetchAllCountries(vecString &AllCountries) 
  36590.  
  36591.      Fetch a list of all countries.  LCP: CountryAll 
  36592.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36593.  
  36594.      Fetch a paired list of countries and their native language descriptions, 
  36595.      sorted by english description.  LCP: CountryEngNat 
  36596.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36597.  
  36598.      Fetch a paired list of native language country descriptions, and the 
  36599.      english name of the country. 
  36600.      bool retrieveFromNetCode() 
  36601.  
  36602.      Determine the country that uses the currently set NetCode.  Fills all the 
  36603.      other country attributes with values. LCP: CountryAttNetCode 
  36604.      bool retrieveFromDesc() 
  36605.  
  36606.      Determine the country that uses the currently set description.  Fills all 
  36607.      the other country attributes with values.  LCP: CountryAttribs 
  36608.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36609.  
  36610.      Determine the primary language of the current country.  "Desc" must be 
  36611.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36612.      CountryPrimLang 
  36613.      bool getAllLanguages(vecString &Languages) 
  36614.  
  36615.      Determine all the languages used by the current country.  "Desc" must be 
  36616.      already set.  The result is returned in priority order (highest priority 
  36617.      first) in vecString &Languages.  LCP: CountryLanguages 
  36618.      bool getLanguageList(vecString &Languages) 
  36619.  
  36620.      Get a list of all possible languages, in alphabetical order, returned in 
  36621.      vecString &Languages.  LCP: CountryLangList 
  36622.      bool getLanguageListEngNat(mapString &Languages) 
  36623.  
  36624.      Get a map of all possible languages, their native description in 
  36625.      alphabetical order by english description, returned in in vecString 
  36626.      &Languages.  LCP: CountryLangListEngNat 
  36627.  
  36628.   Delete a country 
  36629.      bool deleteFromDesc() 
  36630.  
  36631.      Delete the country that uses the currently set description.  LCP: 
  36632.      CountryDelete 
  36633.  
  36634.   Set data members 
  36635.      bool setAll(mapString &FieldValues) 
  36636.  
  36637.      Sets all the data members of a topic using the mapString which is passed 
  36638.      to it.  Only the fields present in the mapString are updated, the other 
  36639.      fields are untouched.  LCP: CountryUpdate 
  36640.      bool setDesc(const string &DescSetting) 
  36641.  
  36642.      Set the short description 
  36643.      bool setDescLong(const string &DescLongSetting) 
  36644.  
  36645.      Set the long description 
  36646.      bool setDescNative(const string &DescNativeSetting) 
  36647.  
  36648.      Set the native language description 
  36649.      bool setNetCode(const string &NetCodeSetting) 
  36650.  
  36651.      Set the internet code for this country 
  36652.      bool erase() 
  36653.  
  36654.      Sets all the data members to empty 
  36655.  
  36656.   Get data members 
  36657.      bool getAll(mapString &FieldValues) 
  36658.  
  36659.      Return a mapString of all the data members of this topic. The key is the 
  36660.      variable name.  LCP: CountryAttribs 
  36661.      string getDesc() 
  36662.  
  36663.      Get the short description 
  36664.      string getDescLong() 
  36665.  
  36666.      Get the long description 
  36667.      string getDescNative() 
  36668.  
  36669.      Get the native language description 
  36670.      string getNetCode() 
  36671.  
  36672.      Get the internet code for this country 
  36673.  
  36674.  
  36675. ΓòÉΓòÉΓòÉ <hidden> DSites.dbf ΓòÉΓòÉΓòÉ
  36676.  
  36677.  
  36678. lyris_Country Class 
  36679.  
  36680.      class lyris_Country 
  36681.  
  36682.      For determining what countries exist, and what languages are spoken & 
  36683.      preferred in each country 
  36684.  
  36685.      Defined in: COUNTRY.H 
  36686.  
  36687.   Create a new country 
  36688.  
  36689.       bool createNew() 
  36690.  
  36691.      Creates a new country/language table row.  LCP: CountryCreate 
  36692.      bool updateDatabase() 
  36693.  
  36694.      Save the current country with the data members that have changed.  LCP: 
  36695.      CountryUpdate 
  36696.      bool VerifyFields() 
  36697.  
  36698.      Verify that all required fields are filled in. 
  36699.  
  36700.   Retrieve data from the database 
  36701.      bool fetchAllCountries(vecString &AllCountries) 
  36702.  
  36703.      Fetch a list of all countries.  LCP: CountryAll 
  36704.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36705.  
  36706.      Fetch a paired list of countries and their native language descriptions, 
  36707.      sorted by english description.  LCP: CountryEngNat 
  36708.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36709.  
  36710.      Fetch a paired list of native language country descriptions, and the 
  36711.      english name of the country. 
  36712.      bool retrieveFromNetCode() 
  36713.  
  36714.      Determine the country that uses the currently set NetCode.  Fills all the 
  36715.      other country attributes with values. LCP: CountryAttNetCode 
  36716.      bool retrieveFromDesc() 
  36717.  
  36718.      Determine the country that uses the currently set description.  Fills all 
  36719.      the other country attributes with values.  LCP: CountryAttribs 
  36720.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36721.  
  36722.      Determine the primary language of the current country.  "Desc" must be 
  36723.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36724.      CountryPrimLang 
  36725.      bool getAllLanguages(vecString &Languages) 
  36726.  
  36727.      Determine all the languages used by the current country.  "Desc" must be 
  36728.      already set.  The result is returned in priority order (highest priority 
  36729.      first) in vecString &Languages.  LCP: CountryLanguages 
  36730.      bool getLanguageList(vecString &Languages) 
  36731.  
  36732.      Get a list of all possible languages, in alphabetical order, returned in 
  36733.      vecString &Languages.  LCP: CountryLangList 
  36734.      bool getLanguageListEngNat(mapString &Languages) 
  36735.  
  36736.      Get a map of all possible languages, their native description in 
  36737.      alphabetical order by english description, returned in in vecString 
  36738.      &Languages.  LCP: CountryLangListEngNat 
  36739.  
  36740.   Delete a country 
  36741.      bool deleteFromDesc() 
  36742.  
  36743.      Delete the country that uses the currently set description.  LCP: 
  36744.      CountryDelete 
  36745.  
  36746.   Set data members 
  36747.      bool setAll(mapString &FieldValues) 
  36748.  
  36749.      Sets all the data members of a topic using the mapString which is passed 
  36750.      to it.  Only the fields present in the mapString are updated, the other 
  36751.      fields are untouched.  LCP: CountryUpdate 
  36752.      bool setDesc(const string &DescSetting) 
  36753.  
  36754.      Set the short description 
  36755.      bool setDescLong(const string &DescLongSetting) 
  36756.  
  36757.      Set the long description 
  36758.      bool setDescNative(const string &DescNativeSetting) 
  36759.  
  36760.      Set the native language description 
  36761.      bool setNetCode(const string &NetCodeSetting) 
  36762.  
  36763.      Set the internet code for this country 
  36764.      bool erase() 
  36765.  
  36766.      Sets all the data members to empty 
  36767.  
  36768.   Get data members 
  36769.      bool getAll(mapString &FieldValues) 
  36770.  
  36771.      Return a mapString of all the data members of this topic. The key is the 
  36772.      variable name.  LCP: CountryAttribs 
  36773.      string getDesc() 
  36774.  
  36775.      Get the short description 
  36776.      string getDescLong() 
  36777.  
  36778.      Get the long description 
  36779.      string getDescNative() 
  36780.  
  36781.      Get the native language description 
  36782.      string getNetCode() 
  36783.  
  36784.      Get the internet code for this country 
  36785.  
  36786.  
  36787. ΓòÉΓòÉΓòÉ <hidden> ESiteCreate ΓòÉΓòÉΓòÉ
  36788.  
  36789.  
  36790. lyris_Country Class 
  36791.  
  36792.      class lyris_Country 
  36793.  
  36794.      For determining what countries exist, and what languages are spoken & 
  36795.      preferred in each country 
  36796.  
  36797.      Defined in: COUNTRY.H 
  36798.  
  36799.   Create a new country 
  36800.  
  36801.       bool createNew() 
  36802.  
  36803.      Creates a new country/language table row.  LCP: CountryCreate 
  36804.      bool updateDatabase() 
  36805.  
  36806.      Save the current country with the data members that have changed.  LCP: 
  36807.      CountryUpdate 
  36808.      bool VerifyFields() 
  36809.  
  36810.      Verify that all required fields are filled in. 
  36811.  
  36812.   Retrieve data from the database 
  36813.      bool fetchAllCountries(vecString &AllCountries) 
  36814.  
  36815.      Fetch a list of all countries.  LCP: CountryAll 
  36816.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36817.  
  36818.      Fetch a paired list of countries and their native language descriptions, 
  36819.      sorted by english description.  LCP: CountryEngNat 
  36820.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36821.  
  36822.      Fetch a paired list of native language country descriptions, and the 
  36823.      english name of the country. 
  36824.      bool retrieveFromNetCode() 
  36825.  
  36826.      Determine the country that uses the currently set NetCode.  Fills all the 
  36827.      other country attributes with values. LCP: CountryAttNetCode 
  36828.      bool retrieveFromDesc() 
  36829.  
  36830.      Determine the country that uses the currently set description.  Fills all 
  36831.      the other country attributes with values.  LCP: CountryAttribs 
  36832.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36833.  
  36834.      Determine the primary language of the current country.  "Desc" must be 
  36835.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36836.      CountryPrimLang 
  36837.      bool getAllLanguages(vecString &Languages) 
  36838.  
  36839.      Determine all the languages used by the current country.  "Desc" must be 
  36840.      already set.  The result is returned in priority order (highest priority 
  36841.      first) in vecString &Languages.  LCP: CountryLanguages 
  36842.      bool getLanguageList(vecString &Languages) 
  36843.  
  36844.      Get a list of all possible languages, in alphabetical order, returned in 
  36845.      vecString &Languages.  LCP: CountryLangList 
  36846.      bool getLanguageListEngNat(mapString &Languages) 
  36847.  
  36848.      Get a map of all possible languages, their native description in 
  36849.      alphabetical order by english description, returned in in vecString 
  36850.      &Languages.  LCP: CountryLangListEngNat 
  36851.  
  36852.   Delete a country 
  36853.      bool deleteFromDesc() 
  36854.  
  36855.      Delete the country that uses the currently set description.  LCP: 
  36856.      CountryDelete 
  36857.  
  36858.   Set data members 
  36859.      bool setAll(mapString &FieldValues) 
  36860.  
  36861.      Sets all the data members of a topic using the mapString which is passed 
  36862.      to it.  Only the fields present in the mapString are updated, the other 
  36863.      fields are untouched.  LCP: CountryUpdate 
  36864.      bool setDesc(const string &DescSetting) 
  36865.  
  36866.      Set the short description 
  36867.      bool setDescLong(const string &DescLongSetting) 
  36868.  
  36869.      Set the long description 
  36870.      bool setDescNative(const string &DescNativeSetting) 
  36871.  
  36872.      Set the native language description 
  36873.      bool setNetCode(const string &NetCodeSetting) 
  36874.  
  36875.      Set the internet code for this country 
  36876.      bool erase() 
  36877.  
  36878.      Sets all the data members to empty 
  36879.  
  36880.   Get data members 
  36881.      bool getAll(mapString &FieldValues) 
  36882.  
  36883.      Return a mapString of all the data members of this topic. The key is the 
  36884.      variable name.  LCP: CountryAttribs 
  36885.      string getDesc() 
  36886.  
  36887.      Get the short description 
  36888.      string getDescLong() 
  36889.  
  36890.      Get the long description 
  36891.      string getDescNative() 
  36892.  
  36893.      Get the native language description 
  36894.      string getNetCode() 
  36895.  
  36896.      Get the internet code for this country 
  36897.  
  36898.  
  36899. ΓòÉΓòÉΓòÉ <hidden> FSiteAll ΓòÉΓòÉΓòÉ
  36900.  
  36901.  
  36902. lyris_Country Class 
  36903.  
  36904.      class lyris_Country 
  36905.  
  36906.      For determining what countries exist, and what languages are spoken & 
  36907.      preferred in each country 
  36908.  
  36909.      Defined in: COUNTRY.H 
  36910.  
  36911.   Create a new country 
  36912.  
  36913.       bool createNew() 
  36914.  
  36915.      Creates a new country/language table row.  LCP: CountryCreate 
  36916.      bool updateDatabase() 
  36917.  
  36918.      Save the current country with the data members that have changed.  LCP: 
  36919.      CountryUpdate 
  36920.      bool VerifyFields() 
  36921.  
  36922.      Verify that all required fields are filled in. 
  36923.  
  36924.   Retrieve data from the database 
  36925.      bool fetchAllCountries(vecString &AllCountries) 
  36926.  
  36927.      Fetch a list of all countries.  LCP: CountryAll 
  36928.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  36929.  
  36930.      Fetch a paired list of countries and their native language descriptions, 
  36931.      sorted by english description.  LCP: CountryEngNat 
  36932.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  36933.  
  36934.      Fetch a paired list of native language country descriptions, and the 
  36935.      english name of the country. 
  36936.      bool retrieveFromNetCode() 
  36937.  
  36938.      Determine the country that uses the currently set NetCode.  Fills all the 
  36939.      other country attributes with values. LCP: CountryAttNetCode 
  36940.      bool retrieveFromDesc() 
  36941.  
  36942.      Determine the country that uses the currently set description.  Fills all 
  36943.      the other country attributes with values.  LCP: CountryAttribs 
  36944.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  36945.  
  36946.      Determine the primary language of the current country.  "Desc" must be 
  36947.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  36948.      CountryPrimLang 
  36949.      bool getAllLanguages(vecString &Languages) 
  36950.  
  36951.      Determine all the languages used by the current country.  "Desc" must be 
  36952.      already set.  The result is returned in priority order (highest priority 
  36953.      first) in vecString &Languages.  LCP: CountryLanguages 
  36954.      bool getLanguageList(vecString &Languages) 
  36955.  
  36956.      Get a list of all possible languages, in alphabetical order, returned in 
  36957.      vecString &Languages.  LCP: CountryLangList 
  36958.      bool getLanguageListEngNat(mapString &Languages) 
  36959.  
  36960.      Get a map of all possible languages, their native description in 
  36961.      alphabetical order by english description, returned in in vecString 
  36962.      &Languages.  LCP: CountryLangListEngNat 
  36963.  
  36964.   Delete a country 
  36965.      bool deleteFromDesc() 
  36966.  
  36967.      Delete the country that uses the currently set description.  LCP: 
  36968.      CountryDelete 
  36969.  
  36970.   Set data members 
  36971.      bool setAll(mapString &FieldValues) 
  36972.  
  36973.      Sets all the data members of a topic using the mapString which is passed 
  36974.      to it.  Only the fields present in the mapString are updated, the other 
  36975.      fields are untouched.  LCP: CountryUpdate 
  36976.      bool setDesc(const string &DescSetting) 
  36977.  
  36978.      Set the short description 
  36979.      bool setDescLong(const string &DescLongSetting) 
  36980.  
  36981.      Set the long description 
  36982.      bool setDescNative(const string &DescNativeSetting) 
  36983.  
  36984.      Set the native language description 
  36985.      bool setNetCode(const string &NetCodeSetting) 
  36986.  
  36987.      Set the internet code for this country 
  36988.      bool erase() 
  36989.  
  36990.      Sets all the data members to empty 
  36991.  
  36992.   Get data members 
  36993.      bool getAll(mapString &FieldValues) 
  36994.  
  36995.      Return a mapString of all the data members of this topic. The key is the 
  36996.      variable name.  LCP: CountryAttribs 
  36997.      string getDesc() 
  36998.  
  36999.      Get the short description 
  37000.      string getDescLong() 
  37001.  
  37002.      Get the long description 
  37003.      string getDescNative() 
  37004.  
  37005.      Get the native language description 
  37006.      string getNetCode() 
  37007.  
  37008.      Get the internet code for this country 
  37009.  
  37010.  
  37011. ΓòÉΓòÉΓòÉ <hidden> GRespondUpdate ΓòÉΓòÉΓòÉ
  37012.  
  37013.  
  37014. lyris_Country Class 
  37015.  
  37016.      class lyris_Country 
  37017.  
  37018.      For determining what countries exist, and what languages are spoken & 
  37019.      preferred in each country 
  37020.  
  37021.      Defined in: COUNTRY.H 
  37022.  
  37023.   Create a new country 
  37024.  
  37025.       bool createNew() 
  37026.  
  37027.      Creates a new country/language table row.  LCP: CountryCreate 
  37028.      bool updateDatabase() 
  37029.  
  37030.      Save the current country with the data members that have changed.  LCP: 
  37031.      CountryUpdate 
  37032.      bool VerifyFields() 
  37033.  
  37034.      Verify that all required fields are filled in. 
  37035.  
  37036.   Retrieve data from the database 
  37037.      bool fetchAllCountries(vecString &AllCountries) 
  37038.  
  37039.      Fetch a list of all countries.  LCP: CountryAll 
  37040.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37041.  
  37042.      Fetch a paired list of countries and their native language descriptions, 
  37043.      sorted by english description.  LCP: CountryEngNat 
  37044.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37045.  
  37046.      Fetch a paired list of native language country descriptions, and the 
  37047.      english name of the country. 
  37048.      bool retrieveFromNetCode() 
  37049.  
  37050.      Determine the country that uses the currently set NetCode.  Fills all the 
  37051.      other country attributes with values. LCP: CountryAttNetCode 
  37052.      bool retrieveFromDesc() 
  37053.  
  37054.      Determine the country that uses the currently set description.  Fills all 
  37055.      the other country attributes with values.  LCP: CountryAttribs 
  37056.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37057.  
  37058.      Determine the primary language of the current country.  "Desc" must be 
  37059.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37060.      CountryPrimLang 
  37061.      bool getAllLanguages(vecString &Languages) 
  37062.  
  37063.      Determine all the languages used by the current country.  "Desc" must be 
  37064.      already set.  The result is returned in priority order (highest priority 
  37065.      first) in vecString &Languages.  LCP: CountryLanguages 
  37066.      bool getLanguageList(vecString &Languages) 
  37067.  
  37068.      Get a list of all possible languages, in alphabetical order, returned in 
  37069.      vecString &Languages.  LCP: CountryLangList 
  37070.      bool getLanguageListEngNat(mapString &Languages) 
  37071.  
  37072.      Get a map of all possible languages, their native description in 
  37073.      alphabetical order by english description, returned in in vecString 
  37074.      &Languages.  LCP: CountryLangListEngNat 
  37075.  
  37076.   Delete a country 
  37077.      bool deleteFromDesc() 
  37078.  
  37079.      Delete the country that uses the currently set description.  LCP: 
  37080.      CountryDelete 
  37081.  
  37082.   Set data members 
  37083.      bool setAll(mapString &FieldValues) 
  37084.  
  37085.      Sets all the data members of a topic using the mapString which is passed 
  37086.      to it.  Only the fields present in the mapString are updated, the other 
  37087.      fields are untouched.  LCP: CountryUpdate 
  37088.      bool setDesc(const string &DescSetting) 
  37089.  
  37090.      Set the short description 
  37091.      bool setDescLong(const string &DescLongSetting) 
  37092.  
  37093.      Set the long description 
  37094.      bool setDescNative(const string &DescNativeSetting) 
  37095.  
  37096.      Set the native language description 
  37097.      bool setNetCode(const string &NetCodeSetting) 
  37098.  
  37099.      Set the internet code for this country 
  37100.      bool erase() 
  37101.  
  37102.      Sets all the data members to empty 
  37103.  
  37104.   Get data members 
  37105.      bool getAll(mapString &FieldValues) 
  37106.  
  37107.      Return a mapString of all the data members of this topic. The key is the 
  37108.      variable name.  LCP: CountryAttribs 
  37109.      string getDesc() 
  37110.  
  37111.      Get the short description 
  37112.      string getDescLong() 
  37113.  
  37114.      Get the long description 
  37115.      string getDescNative() 
  37116.  
  37117.      Get the native language description 
  37118.      string getNetCode() 
  37119.  
  37120.      Get the internet code for this country 
  37121.  
  37122.  
  37123. ΓòÉΓòÉΓòÉ <hidden> HRespondDelete ΓòÉΓòÉΓòÉ
  37124.  
  37125.  
  37126. lyris_Country Class 
  37127.  
  37128.      class lyris_Country 
  37129.  
  37130.      For determining what countries exist, and what languages are spoken & 
  37131.      preferred in each country 
  37132.  
  37133.      Defined in: COUNTRY.H 
  37134.  
  37135.   Create a new country 
  37136.  
  37137.       bool createNew() 
  37138.  
  37139.      Creates a new country/language table row.  LCP: CountryCreate 
  37140.      bool updateDatabase() 
  37141.  
  37142.      Save the current country with the data members that have changed.  LCP: 
  37143.      CountryUpdate 
  37144.      bool VerifyFields() 
  37145.  
  37146.      Verify that all required fields are filled in. 
  37147.  
  37148.   Retrieve data from the database 
  37149.      bool fetchAllCountries(vecString &AllCountries) 
  37150.  
  37151.      Fetch a list of all countries.  LCP: CountryAll 
  37152.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37153.  
  37154.      Fetch a paired list of countries and their native language descriptions, 
  37155.      sorted by english description.  LCP: CountryEngNat 
  37156.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37157.  
  37158.      Fetch a paired list of native language country descriptions, and the 
  37159.      english name of the country. 
  37160.      bool retrieveFromNetCode() 
  37161.  
  37162.      Determine the country that uses the currently set NetCode.  Fills all the 
  37163.      other country attributes with values. LCP: CountryAttNetCode 
  37164.      bool retrieveFromDesc() 
  37165.  
  37166.      Determine the country that uses the currently set description.  Fills all 
  37167.      the other country attributes with values.  LCP: CountryAttribs 
  37168.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37169.  
  37170.      Determine the primary language of the current country.  "Desc" must be 
  37171.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37172.      CountryPrimLang 
  37173.      bool getAllLanguages(vecString &Languages) 
  37174.  
  37175.      Determine all the languages used by the current country.  "Desc" must be 
  37176.      already set.  The result is returned in priority order (highest priority 
  37177.      first) in vecString &Languages.  LCP: CountryLanguages 
  37178.      bool getLanguageList(vecString &Languages) 
  37179.  
  37180.      Get a list of all possible languages, in alphabetical order, returned in 
  37181.      vecString &Languages.  LCP: CountryLangList 
  37182.      bool getLanguageListEngNat(mapString &Languages) 
  37183.  
  37184.      Get a map of all possible languages, their native description in 
  37185.      alphabetical order by english description, returned in in vecString 
  37186.      &Languages.  LCP: CountryLangListEngNat 
  37187.  
  37188.   Delete a country 
  37189.      bool deleteFromDesc() 
  37190.  
  37191.      Delete the country that uses the currently set description.  LCP: 
  37192.      CountryDelete 
  37193.  
  37194.   Set data members 
  37195.      bool setAll(mapString &FieldValues) 
  37196.  
  37197.      Sets all the data members of a topic using the mapString which is passed 
  37198.      to it.  Only the fields present in the mapString are updated, the other 
  37199.      fields are untouched.  LCP: CountryUpdate 
  37200.      bool setDesc(const string &DescSetting) 
  37201.  
  37202.      Set the short description 
  37203.      bool setDescLong(const string &DescLongSetting) 
  37204.  
  37205.      Set the long description 
  37206.      bool setDescNative(const string &DescNativeSetting) 
  37207.  
  37208.      Set the native language description 
  37209.      bool setNetCode(const string &NetCodeSetting) 
  37210.  
  37211.      Set the internet code for this country 
  37212.      bool erase() 
  37213.  
  37214.      Sets all the data members to empty 
  37215.  
  37216.   Get data members 
  37217.      bool getAll(mapString &FieldValues) 
  37218.  
  37219.      Return a mapString of all the data members of this topic. The key is the 
  37220.      variable name.  LCP: CountryAttribs 
  37221.      string getDesc() 
  37222.  
  37223.      Get the short description 
  37224.      string getDescLong() 
  37225.  
  37226.      Get the long description 
  37227.      string getDescNative() 
  37228.  
  37229.      Get the native language description 
  37230.      string getNetCode() 
  37231.  
  37232.      Get the internet code for this country 
  37233.  
  37234.  
  37235. ΓòÉΓòÉΓòÉ <hidden> IRespondBySite ΓòÉΓòÉΓòÉ
  37236.  
  37237.  
  37238. lyris_Country Class 
  37239.  
  37240.      class lyris_Country 
  37241.  
  37242.      For determining what countries exist, and what languages are spoken & 
  37243.      preferred in each country 
  37244.  
  37245.      Defined in: COUNTRY.H 
  37246.  
  37247.   Create a new country 
  37248.  
  37249.       bool createNew() 
  37250.  
  37251.      Creates a new country/language table row.  LCP: CountryCreate 
  37252.      bool updateDatabase() 
  37253.  
  37254.      Save the current country with the data members that have changed.  LCP: 
  37255.      CountryUpdate 
  37256.      bool VerifyFields() 
  37257.  
  37258.      Verify that all required fields are filled in. 
  37259.  
  37260.   Retrieve data from the database 
  37261.      bool fetchAllCountries(vecString &AllCountries) 
  37262.  
  37263.      Fetch a list of all countries.  LCP: CountryAll 
  37264.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37265.  
  37266.      Fetch a paired list of countries and their native language descriptions, 
  37267.      sorted by english description.  LCP: CountryEngNat 
  37268.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37269.  
  37270.      Fetch a paired list of native language country descriptions, and the 
  37271.      english name of the country. 
  37272.      bool retrieveFromNetCode() 
  37273.  
  37274.      Determine the country that uses the currently set NetCode.  Fills all the 
  37275.      other country attributes with values. LCP: CountryAttNetCode 
  37276.      bool retrieveFromDesc() 
  37277.  
  37278.      Determine the country that uses the currently set description.  Fills all 
  37279.      the other country attributes with values.  LCP: CountryAttribs 
  37280.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37281.  
  37282.      Determine the primary language of the current country.  "Desc" must be 
  37283.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37284.      CountryPrimLang 
  37285.      bool getAllLanguages(vecString &Languages) 
  37286.  
  37287.      Determine all the languages used by the current country.  "Desc" must be 
  37288.      already set.  The result is returned in priority order (highest priority 
  37289.      first) in vecString &Languages.  LCP: CountryLanguages 
  37290.      bool getLanguageList(vecString &Languages) 
  37291.  
  37292.      Get a list of all possible languages, in alphabetical order, returned in 
  37293.      vecString &Languages.  LCP: CountryLangList 
  37294.      bool getLanguageListEngNat(mapString &Languages) 
  37295.  
  37296.      Get a map of all possible languages, their native description in 
  37297.      alphabetical order by english description, returned in in vecString 
  37298.      &Languages.  LCP: CountryLangListEngNat 
  37299.  
  37300.   Delete a country 
  37301.      bool deleteFromDesc() 
  37302.  
  37303.      Delete the country that uses the currently set description.  LCP: 
  37304.      CountryDelete 
  37305.  
  37306.   Set data members 
  37307.      bool setAll(mapString &FieldValues) 
  37308.  
  37309.      Sets all the data members of a topic using the mapString which is passed 
  37310.      to it.  Only the fields present in the mapString are updated, the other 
  37311.      fields are untouched.  LCP: CountryUpdate 
  37312.      bool setDesc(const string &DescSetting) 
  37313.  
  37314.      Set the short description 
  37315.      bool setDescLong(const string &DescLongSetting) 
  37316.  
  37317.      Set the long description 
  37318.      bool setDescNative(const string &DescNativeSetting) 
  37319.  
  37320.      Set the native language description 
  37321.      bool setNetCode(const string &NetCodeSetting) 
  37322.  
  37323.      Set the internet code for this country 
  37324.      bool erase() 
  37325.  
  37326.      Sets all the data members to empty 
  37327.  
  37328.   Get data members 
  37329.      bool getAll(mapString &FieldValues) 
  37330.  
  37331.      Return a mapString of all the data members of this topic. The key is the 
  37332.      variable name.  LCP: CountryAttribs 
  37333.      string getDesc() 
  37334.  
  37335.      Get the short description 
  37336.      string getDescLong() 
  37337.  
  37338.      Get the long description 
  37339.      string getDescNative() 
  37340.  
  37341.      Get the native language description 
  37342.      string getNetCode() 
  37343.  
  37344.      Get the internet code for this country 
  37345.  
  37346.  
  37347. ΓòÉΓòÉΓòÉ <hidden> JRespondAttribs ΓòÉΓòÉΓòÉ
  37348.  
  37349.  
  37350. lyris_Country Class 
  37351.  
  37352.      class lyris_Country 
  37353.  
  37354.      For determining what countries exist, and what languages are spoken & 
  37355.      preferred in each country 
  37356.  
  37357.      Defined in: COUNTRY.H 
  37358.  
  37359.   Create a new country 
  37360.  
  37361.       bool createNew() 
  37362.  
  37363.      Creates a new country/language table row.  LCP: CountryCreate 
  37364.      bool updateDatabase() 
  37365.  
  37366.      Save the current country with the data members that have changed.  LCP: 
  37367.      CountryUpdate 
  37368.      bool VerifyFields() 
  37369.  
  37370.      Verify that all required fields are filled in. 
  37371.  
  37372.   Retrieve data from the database 
  37373.      bool fetchAllCountries(vecString &AllCountries) 
  37374.  
  37375.      Fetch a list of all countries.  LCP: CountryAll 
  37376.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37377.  
  37378.      Fetch a paired list of countries and their native language descriptions, 
  37379.      sorted by english description.  LCP: CountryEngNat 
  37380.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37381.  
  37382.      Fetch a paired list of native language country descriptions, and the 
  37383.      english name of the country. 
  37384.      bool retrieveFromNetCode() 
  37385.  
  37386.      Determine the country that uses the currently set NetCode.  Fills all the 
  37387.      other country attributes with values. LCP: CountryAttNetCode 
  37388.      bool retrieveFromDesc() 
  37389.  
  37390.      Determine the country that uses the currently set description.  Fills all 
  37391.      the other country attributes with values.  LCP: CountryAttribs 
  37392.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37393.  
  37394.      Determine the primary language of the current country.  "Desc" must be 
  37395.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37396.      CountryPrimLang 
  37397.      bool getAllLanguages(vecString &Languages) 
  37398.  
  37399.      Determine all the languages used by the current country.  "Desc" must be 
  37400.      already set.  The result is returned in priority order (highest priority 
  37401.      first) in vecString &Languages.  LCP: CountryLanguages 
  37402.      bool getLanguageList(vecString &Languages) 
  37403.  
  37404.      Get a list of all possible languages, in alphabetical order, returned in 
  37405.      vecString &Languages.  LCP: CountryLangList 
  37406.      bool getLanguageListEngNat(mapString &Languages) 
  37407.  
  37408.      Get a map of all possible languages, their native description in 
  37409.      alphabetical order by english description, returned in in vecString 
  37410.      &Languages.  LCP: CountryLangListEngNat 
  37411.  
  37412.   Delete a country 
  37413.      bool deleteFromDesc() 
  37414.  
  37415.      Delete the country that uses the currently set description.  LCP: 
  37416.      CountryDelete 
  37417.  
  37418.   Set data members 
  37419.      bool setAll(mapString &FieldValues) 
  37420.  
  37421.      Sets all the data members of a topic using the mapString which is passed 
  37422.      to it.  Only the fields present in the mapString are updated, the other 
  37423.      fields are untouched.  LCP: CountryUpdate 
  37424.      bool setDesc(const string &DescSetting) 
  37425.  
  37426.      Set the short description 
  37427.      bool setDescLong(const string &DescLongSetting) 
  37428.  
  37429.      Set the long description 
  37430.      bool setDescNative(const string &DescNativeSetting) 
  37431.  
  37432.      Set the native language description 
  37433.      bool setNetCode(const string &NetCodeSetting) 
  37434.  
  37435.      Set the internet code for this country 
  37436.      bool erase() 
  37437.  
  37438.      Sets all the data members to empty 
  37439.  
  37440.   Get data members 
  37441.      bool getAll(mapString &FieldValues) 
  37442.  
  37443.      Return a mapString of all the data members of this topic. The key is the 
  37444.      variable name.  LCP: CountryAttribs 
  37445.      string getDesc() 
  37446.  
  37447.      Get the short description 
  37448.      string getDescLong() 
  37449.  
  37450.      Get the long description 
  37451.      string getDescNative() 
  37452.  
  37453.      Get the native language description 
  37454.      string getNetCode() 
  37455.  
  37456.      Get the internet code for this country 
  37457.  
  37458.  
  37459. ΓòÉΓòÉΓòÉ <hidden> KRespond.dbf ΓòÉΓòÉΓòÉ
  37460.  
  37461.  
  37462. lyris_Country Class 
  37463.  
  37464.      class lyris_Country 
  37465.  
  37466.      For determining what countries exist, and what languages are spoken & 
  37467.      preferred in each country 
  37468.  
  37469.      Defined in: COUNTRY.H 
  37470.  
  37471.   Create a new country 
  37472.  
  37473.       bool createNew() 
  37474.  
  37475.      Creates a new country/language table row.  LCP: CountryCreate 
  37476.      bool updateDatabase() 
  37477.  
  37478.      Save the current country with the data members that have changed.  LCP: 
  37479.      CountryUpdate 
  37480.      bool VerifyFields() 
  37481.  
  37482.      Verify that all required fields are filled in. 
  37483.  
  37484.   Retrieve data from the database 
  37485.      bool fetchAllCountries(vecString &AllCountries) 
  37486.  
  37487.      Fetch a list of all countries.  LCP: CountryAll 
  37488.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37489.  
  37490.      Fetch a paired list of countries and their native language descriptions, 
  37491.      sorted by english description.  LCP: CountryEngNat 
  37492.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37493.  
  37494.      Fetch a paired list of native language country descriptions, and the 
  37495.      english name of the country. 
  37496.      bool retrieveFromNetCode() 
  37497.  
  37498.      Determine the country that uses the currently set NetCode.  Fills all the 
  37499.      other country attributes with values. LCP: CountryAttNetCode 
  37500.      bool retrieveFromDesc() 
  37501.  
  37502.      Determine the country that uses the currently set description.  Fills all 
  37503.      the other country attributes with values.  LCP: CountryAttribs 
  37504.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37505.  
  37506.      Determine the primary language of the current country.  "Desc" must be 
  37507.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37508.      CountryPrimLang 
  37509.      bool getAllLanguages(vecString &Languages) 
  37510.  
  37511.      Determine all the languages used by the current country.  "Desc" must be 
  37512.      already set.  The result is returned in priority order (highest priority 
  37513.      first) in vecString &Languages.  LCP: CountryLanguages 
  37514.      bool getLanguageList(vecString &Languages) 
  37515.  
  37516.      Get a list of all possible languages, in alphabetical order, returned in 
  37517.      vecString &Languages.  LCP: CountryLangList 
  37518.      bool getLanguageListEngNat(mapString &Languages) 
  37519.  
  37520.      Get a map of all possible languages, their native description in 
  37521.      alphabetical order by english description, returned in in vecString 
  37522.      &Languages.  LCP: CountryLangListEngNat 
  37523.  
  37524.   Delete a country 
  37525.      bool deleteFromDesc() 
  37526.  
  37527.      Delete the country that uses the currently set description.  LCP: 
  37528.      CountryDelete 
  37529.  
  37530.   Set data members 
  37531.      bool setAll(mapString &FieldValues) 
  37532.  
  37533.      Sets all the data members of a topic using the mapString which is passed 
  37534.      to it.  Only the fields present in the mapString are updated, the other 
  37535.      fields are untouched.  LCP: CountryUpdate 
  37536.      bool setDesc(const string &DescSetting) 
  37537.  
  37538.      Set the short description 
  37539.      bool setDescLong(const string &DescLongSetting) 
  37540.  
  37541.      Set the long description 
  37542.      bool setDescNative(const string &DescNativeSetting) 
  37543.  
  37544.      Set the native language description 
  37545.      bool setNetCode(const string &NetCodeSetting) 
  37546.  
  37547.      Set the internet code for this country 
  37548.      bool erase() 
  37549.  
  37550.      Sets all the data members to empty 
  37551.  
  37552.   Get data members 
  37553.      bool getAll(mapString &FieldValues) 
  37554.  
  37555.      Return a mapString of all the data members of this topic. The key is the 
  37556.      variable name.  LCP: CountryAttribs 
  37557.      string getDesc() 
  37558.  
  37559.      Get the short description 
  37560.      string getDescLong() 
  37561.  
  37562.      Get the long description 
  37563.      string getDescNative() 
  37564.  
  37565.      Get the native language description 
  37566.      string getNetCode() 
  37567.  
  37568.      Get the internet code for this country 
  37569.  
  37570.  
  37571. ΓòÉΓòÉΓòÉ <hidden> LPhraseUpdate ΓòÉΓòÉΓòÉ
  37572.  
  37573.  
  37574. lyris_Country Class 
  37575.  
  37576.      class lyris_Country 
  37577.  
  37578.      For determining what countries exist, and what languages are spoken & 
  37579.      preferred in each country 
  37580.  
  37581.      Defined in: COUNTRY.H 
  37582.  
  37583.   Create a new country 
  37584.  
  37585.       bool createNew() 
  37586.  
  37587.      Creates a new country/language table row.  LCP: CountryCreate 
  37588.      bool updateDatabase() 
  37589.  
  37590.      Save the current country with the data members that have changed.  LCP: 
  37591.      CountryUpdate 
  37592.      bool VerifyFields() 
  37593.  
  37594.      Verify that all required fields are filled in. 
  37595.  
  37596.   Retrieve data from the database 
  37597.      bool fetchAllCountries(vecString &AllCountries) 
  37598.  
  37599.      Fetch a list of all countries.  LCP: CountryAll 
  37600.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37601.  
  37602.      Fetch a paired list of countries and their native language descriptions, 
  37603.      sorted by english description.  LCP: CountryEngNat 
  37604.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37605.  
  37606.      Fetch a paired list of native language country descriptions, and the 
  37607.      english name of the country. 
  37608.      bool retrieveFromNetCode() 
  37609.  
  37610.      Determine the country that uses the currently set NetCode.  Fills all the 
  37611.      other country attributes with values. LCP: CountryAttNetCode 
  37612.      bool retrieveFromDesc() 
  37613.  
  37614.      Determine the country that uses the currently set description.  Fills all 
  37615.      the other country attributes with values.  LCP: CountryAttribs 
  37616.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37617.  
  37618.      Determine the primary language of the current country.  "Desc" must be 
  37619.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37620.      CountryPrimLang 
  37621.      bool getAllLanguages(vecString &Languages) 
  37622.  
  37623.      Determine all the languages used by the current country.  "Desc" must be 
  37624.      already set.  The result is returned in priority order (highest priority 
  37625.      first) in vecString &Languages.  LCP: CountryLanguages 
  37626.      bool getLanguageList(vecString &Languages) 
  37627.  
  37628.      Get a list of all possible languages, in alphabetical order, returned in 
  37629.      vecString &Languages.  LCP: CountryLangList 
  37630.      bool getLanguageListEngNat(mapString &Languages) 
  37631.  
  37632.      Get a map of all possible languages, their native description in 
  37633.      alphabetical order by english description, returned in in vecString 
  37634.      &Languages.  LCP: CountryLangListEngNat 
  37635.  
  37636.   Delete a country 
  37637.      bool deleteFromDesc() 
  37638.  
  37639.      Delete the country that uses the currently set description.  LCP: 
  37640.      CountryDelete 
  37641.  
  37642.   Set data members 
  37643.      bool setAll(mapString &FieldValues) 
  37644.  
  37645.      Sets all the data members of a topic using the mapString which is passed 
  37646.      to it.  Only the fields present in the mapString are updated, the other 
  37647.      fields are untouched.  LCP: CountryUpdate 
  37648.      bool setDesc(const string &DescSetting) 
  37649.  
  37650.      Set the short description 
  37651.      bool setDescLong(const string &DescLongSetting) 
  37652.  
  37653.      Set the long description 
  37654.      bool setDescNative(const string &DescNativeSetting) 
  37655.  
  37656.      Set the native language description 
  37657.      bool setNetCode(const string &NetCodeSetting) 
  37658.  
  37659.      Set the internet code for this country 
  37660.      bool erase() 
  37661.  
  37662.      Sets all the data members to empty 
  37663.  
  37664.   Get data members 
  37665.      bool getAll(mapString &FieldValues) 
  37666.  
  37667.      Return a mapString of all the data members of this topic. The key is the 
  37668.      variable name.  LCP: CountryAttribs 
  37669.      string getDesc() 
  37670.  
  37671.      Get the short description 
  37672.      string getDescLong() 
  37673.  
  37674.      Get the long description 
  37675.      string getDescNative() 
  37676.  
  37677.      Get the native language description 
  37678.      string getNetCode() 
  37679.  
  37680.      Get the internet code for this country 
  37681.  
  37682.  
  37683. ΓòÉΓòÉΓòÉ <hidden> MPhrases ΓòÉΓòÉΓòÉ
  37684.  
  37685.  
  37686. lyris_Country Class 
  37687.  
  37688.      class lyris_Country 
  37689.  
  37690.      For determining what countries exist, and what languages are spoken & 
  37691.      preferred in each country 
  37692.  
  37693.      Defined in: COUNTRY.H 
  37694.  
  37695.   Create a new country 
  37696.  
  37697.       bool createNew() 
  37698.  
  37699.      Creates a new country/language table row.  LCP: CountryCreate 
  37700.      bool updateDatabase() 
  37701.  
  37702.      Save the current country with the data members that have changed.  LCP: 
  37703.      CountryUpdate 
  37704.      bool VerifyFields() 
  37705.  
  37706.      Verify that all required fields are filled in. 
  37707.  
  37708.   Retrieve data from the database 
  37709.      bool fetchAllCountries(vecString &AllCountries) 
  37710.  
  37711.      Fetch a list of all countries.  LCP: CountryAll 
  37712.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37713.  
  37714.      Fetch a paired list of countries and their native language descriptions, 
  37715.      sorted by english description.  LCP: CountryEngNat 
  37716.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37717.  
  37718.      Fetch a paired list of native language country descriptions, and the 
  37719.      english name of the country. 
  37720.      bool retrieveFromNetCode() 
  37721.  
  37722.      Determine the country that uses the currently set NetCode.  Fills all the 
  37723.      other country attributes with values. LCP: CountryAttNetCode 
  37724.      bool retrieveFromDesc() 
  37725.  
  37726.      Determine the country that uses the currently set description.  Fills all 
  37727.      the other country attributes with values.  LCP: CountryAttribs 
  37728.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37729.  
  37730.      Determine the primary language of the current country.  "Desc" must be 
  37731.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37732.      CountryPrimLang 
  37733.      bool getAllLanguages(vecString &Languages) 
  37734.  
  37735.      Determine all the languages used by the current country.  "Desc" must be 
  37736.      already set.  The result is returned in priority order (highest priority 
  37737.      first) in vecString &Languages.  LCP: CountryLanguages 
  37738.      bool getLanguageList(vecString &Languages) 
  37739.  
  37740.      Get a list of all possible languages, in alphabetical order, returned in 
  37741.      vecString &Languages.  LCP: CountryLangList 
  37742.      bool getLanguageListEngNat(mapString &Languages) 
  37743.  
  37744.      Get a map of all possible languages, their native description in 
  37745.      alphabetical order by english description, returned in in vecString 
  37746.      &Languages.  LCP: CountryLangListEngNat 
  37747.  
  37748.   Delete a country 
  37749.      bool deleteFromDesc() 
  37750.  
  37751.      Delete the country that uses the currently set description.  LCP: 
  37752.      CountryDelete 
  37753.  
  37754.   Set data members 
  37755.      bool setAll(mapString &FieldValues) 
  37756.  
  37757.      Sets all the data members of a topic using the mapString which is passed 
  37758.      to it.  Only the fields present in the mapString are updated, the other 
  37759.      fields are untouched.  LCP: CountryUpdate 
  37760.      bool setDesc(const string &DescSetting) 
  37761.  
  37762.      Set the short description 
  37763.      bool setDescLong(const string &DescLongSetting) 
  37764.  
  37765.      Set the long description 
  37766.      bool setDescNative(const string &DescNativeSetting) 
  37767.  
  37768.      Set the native language description 
  37769.      bool setNetCode(const string &NetCodeSetting) 
  37770.  
  37771.      Set the internet code for this country 
  37772.      bool erase() 
  37773.  
  37774.      Sets all the data members to empty 
  37775.  
  37776.   Get data members 
  37777.      bool getAll(mapString &FieldValues) 
  37778.  
  37779.      Return a mapString of all the data members of this topic. The key is the 
  37780.      variable name.  LCP: CountryAttribs 
  37781.      string getDesc() 
  37782.  
  37783.      Get the short description 
  37784.      string getDescLong() 
  37785.  
  37786.      Get the long description 
  37787.      string getDescNative() 
  37788.  
  37789.      Get the native language description 
  37790.      string getNetCode() 
  37791.  
  37792.      Get the internet code for this country 
  37793.  
  37794.  
  37795. ΓòÉΓòÉΓòÉ <hidden> NPhraseFromContext ΓòÉΓòÉΓòÉ
  37796.  
  37797.  
  37798. lyris_Country Class 
  37799.  
  37800.      class lyris_Country 
  37801.  
  37802.      For determining what countries exist, and what languages are spoken & 
  37803.      preferred in each country 
  37804.  
  37805.      Defined in: COUNTRY.H 
  37806.  
  37807.   Create a new country 
  37808.  
  37809.       bool createNew() 
  37810.  
  37811.      Creates a new country/language table row.  LCP: CountryCreate 
  37812.      bool updateDatabase() 
  37813.  
  37814.      Save the current country with the data members that have changed.  LCP: 
  37815.      CountryUpdate 
  37816.      bool VerifyFields() 
  37817.  
  37818.      Verify that all required fields are filled in. 
  37819.  
  37820.   Retrieve data from the database 
  37821.      bool fetchAllCountries(vecString &AllCountries) 
  37822.  
  37823.      Fetch a list of all countries.  LCP: CountryAll 
  37824.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37825.  
  37826.      Fetch a paired list of countries and their native language descriptions, 
  37827.      sorted by english description.  LCP: CountryEngNat 
  37828.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37829.  
  37830.      Fetch a paired list of native language country descriptions, and the 
  37831.      english name of the country. 
  37832.      bool retrieveFromNetCode() 
  37833.  
  37834.      Determine the country that uses the currently set NetCode.  Fills all the 
  37835.      other country attributes with values. LCP: CountryAttNetCode 
  37836.      bool retrieveFromDesc() 
  37837.  
  37838.      Determine the country that uses the currently set description.  Fills all 
  37839.      the other country attributes with values.  LCP: CountryAttribs 
  37840.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37841.  
  37842.      Determine the primary language of the current country.  "Desc" must be 
  37843.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37844.      CountryPrimLang 
  37845.      bool getAllLanguages(vecString &Languages) 
  37846.  
  37847.      Determine all the languages used by the current country.  "Desc" must be 
  37848.      already set.  The result is returned in priority order (highest priority 
  37849.      first) in vecString &Languages.  LCP: CountryLanguages 
  37850.      bool getLanguageList(vecString &Languages) 
  37851.  
  37852.      Get a list of all possible languages, in alphabetical order, returned in 
  37853.      vecString &Languages.  LCP: CountryLangList 
  37854.      bool getLanguageListEngNat(mapString &Languages) 
  37855.  
  37856.      Get a map of all possible languages, their native description in 
  37857.      alphabetical order by english description, returned in in vecString 
  37858.      &Languages.  LCP: CountryLangListEngNat 
  37859.  
  37860.   Delete a country 
  37861.      bool deleteFromDesc() 
  37862.  
  37863.      Delete the country that uses the currently set description.  LCP: 
  37864.      CountryDelete 
  37865.  
  37866.   Set data members 
  37867.      bool setAll(mapString &FieldValues) 
  37868.  
  37869.      Sets all the data members of a topic using the mapString which is passed 
  37870.      to it.  Only the fields present in the mapString are updated, the other 
  37871.      fields are untouched.  LCP: CountryUpdate 
  37872.      bool setDesc(const string &DescSetting) 
  37873.  
  37874.      Set the short description 
  37875.      bool setDescLong(const string &DescLongSetting) 
  37876.  
  37877.      Set the long description 
  37878.      bool setDescNative(const string &DescNativeSetting) 
  37879.  
  37880.      Set the native language description 
  37881.      bool setNetCode(const string &NetCodeSetting) 
  37882.  
  37883.      Set the internet code for this country 
  37884.      bool erase() 
  37885.  
  37886.      Sets all the data members to empty 
  37887.  
  37888.   Get data members 
  37889.      bool getAll(mapString &FieldValues) 
  37890.  
  37891.      Return a mapString of all the data members of this topic. The key is the 
  37892.      variable name.  LCP: CountryAttribs 
  37893.      string getDesc() 
  37894.  
  37895.      Get the short description 
  37896.      string getDescLong() 
  37897.  
  37898.      Get the long description 
  37899.      string getDescNative() 
  37900.  
  37901.      Get the native language description 
  37902.      string getNetCode() 
  37903.  
  37904.      Get the internet code for this country 
  37905.  
  37906.  
  37907. ΓòÉΓòÉΓòÉ <hidden> OPhraseDelete ΓòÉΓòÉΓòÉ
  37908.  
  37909.  
  37910. lyris_Country Class 
  37911.  
  37912.      class lyris_Country 
  37913.  
  37914.      For determining what countries exist, and what languages are spoken & 
  37915.      preferred in each country 
  37916.  
  37917.      Defined in: COUNTRY.H 
  37918.  
  37919.   Create a new country 
  37920.  
  37921.       bool createNew() 
  37922.  
  37923.      Creates a new country/language table row.  LCP: CountryCreate 
  37924.      bool updateDatabase() 
  37925.  
  37926.      Save the current country with the data members that have changed.  LCP: 
  37927.      CountryUpdate 
  37928.      bool VerifyFields() 
  37929.  
  37930.      Verify that all required fields are filled in. 
  37931.  
  37932.   Retrieve data from the database 
  37933.      bool fetchAllCountries(vecString &AllCountries) 
  37934.  
  37935.      Fetch a list of all countries.  LCP: CountryAll 
  37936.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  37937.  
  37938.      Fetch a paired list of countries and their native language descriptions, 
  37939.      sorted by english description.  LCP: CountryEngNat 
  37940.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  37941.  
  37942.      Fetch a paired list of native language country descriptions, and the 
  37943.      english name of the country. 
  37944.      bool retrieveFromNetCode() 
  37945.  
  37946.      Determine the country that uses the currently set NetCode.  Fills all the 
  37947.      other country attributes with values. LCP: CountryAttNetCode 
  37948.      bool retrieveFromDesc() 
  37949.  
  37950.      Determine the country that uses the currently set description.  Fills all 
  37951.      the other country attributes with values.  LCP: CountryAttribs 
  37952.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  37953.  
  37954.      Determine the primary language of the current country.  "Desc" must be 
  37955.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  37956.      CountryPrimLang 
  37957.      bool getAllLanguages(vecString &Languages) 
  37958.  
  37959.      Determine all the languages used by the current country.  "Desc" must be 
  37960.      already set.  The result is returned in priority order (highest priority 
  37961.      first) in vecString &Languages.  LCP: CountryLanguages 
  37962.      bool getLanguageList(vecString &Languages) 
  37963.  
  37964.      Get a list of all possible languages, in alphabetical order, returned in 
  37965.      vecString &Languages.  LCP: CountryLangList 
  37966.      bool getLanguageListEngNat(mapString &Languages) 
  37967.  
  37968.      Get a map of all possible languages, their native description in 
  37969.      alphabetical order by english description, returned in in vecString 
  37970.      &Languages.  LCP: CountryLangListEngNat 
  37971.  
  37972.   Delete a country 
  37973.      bool deleteFromDesc() 
  37974.  
  37975.      Delete the country that uses the currently set description.  LCP: 
  37976.      CountryDelete 
  37977.  
  37978.   Set data members 
  37979.      bool setAll(mapString &FieldValues) 
  37980.  
  37981.      Sets all the data members of a topic using the mapString which is passed 
  37982.      to it.  Only the fields present in the mapString are updated, the other 
  37983.      fields are untouched.  LCP: CountryUpdate 
  37984.      bool setDesc(const string &DescSetting) 
  37985.  
  37986.      Set the short description 
  37987.      bool setDescLong(const string &DescLongSetting) 
  37988.  
  37989.      Set the long description 
  37990.      bool setDescNative(const string &DescNativeSetting) 
  37991.  
  37992.      Set the native language description 
  37993.      bool setNetCode(const string &NetCodeSetting) 
  37994.  
  37995.      Set the internet code for this country 
  37996.      bool erase() 
  37997.  
  37998.      Sets all the data members to empty 
  37999.  
  38000.   Get data members 
  38001.      bool getAll(mapString &FieldValues) 
  38002.  
  38003.      Return a mapString of all the data members of this topic. The key is the 
  38004.      variable name.  LCP: CountryAttribs 
  38005.      string getDesc() 
  38006.  
  38007.      Get the short description 
  38008.      string getDescLong() 
  38009.  
  38010.      Get the long description 
  38011.      string getDescNative() 
  38012.  
  38013.      Get the native language description 
  38014.      string getNetCode() 
  38015.  
  38016.      Get the internet code for this country 
  38017.  
  38018.  
  38019. ΓòÉΓòÉΓòÉ <hidden> PPhraseAttribs ΓòÉΓòÉΓòÉ
  38020.  
  38021.  
  38022. lyris_Country Class 
  38023.  
  38024.      class lyris_Country 
  38025.  
  38026.      For determining what countries exist, and what languages are spoken & 
  38027.      preferred in each country 
  38028.  
  38029.      Defined in: COUNTRY.H 
  38030.  
  38031.   Create a new country 
  38032.  
  38033.       bool createNew() 
  38034.  
  38035.      Creates a new country/language table row.  LCP: CountryCreate 
  38036.      bool updateDatabase() 
  38037.  
  38038.      Save the current country with the data members that have changed.  LCP: 
  38039.      CountryUpdate 
  38040.      bool VerifyFields() 
  38041.  
  38042.      Verify that all required fields are filled in. 
  38043.  
  38044.   Retrieve data from the database 
  38045.      bool fetchAllCountries(vecString &AllCountries) 
  38046.  
  38047.      Fetch a list of all countries.  LCP: CountryAll 
  38048.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38049.  
  38050.      Fetch a paired list of countries and their native language descriptions, 
  38051.      sorted by english description.  LCP: CountryEngNat 
  38052.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38053.  
  38054.      Fetch a paired list of native language country descriptions, and the 
  38055.      english name of the country. 
  38056.      bool retrieveFromNetCode() 
  38057.  
  38058.      Determine the country that uses the currently set NetCode.  Fills all the 
  38059.      other country attributes with values. LCP: CountryAttNetCode 
  38060.      bool retrieveFromDesc() 
  38061.  
  38062.      Determine the country that uses the currently set description.  Fills all 
  38063.      the other country attributes with values.  LCP: CountryAttribs 
  38064.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38065.  
  38066.      Determine the primary language of the current country.  "Desc" must be 
  38067.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38068.      CountryPrimLang 
  38069.      bool getAllLanguages(vecString &Languages) 
  38070.  
  38071.      Determine all the languages used by the current country.  "Desc" must be 
  38072.      already set.  The result is returned in priority order (highest priority 
  38073.      first) in vecString &Languages.  LCP: CountryLanguages 
  38074.      bool getLanguageList(vecString &Languages) 
  38075.  
  38076.      Get a list of all possible languages, in alphabetical order, returned in 
  38077.      vecString &Languages.  LCP: CountryLangList 
  38078.      bool getLanguageListEngNat(mapString &Languages) 
  38079.  
  38080.      Get a map of all possible languages, their native description in 
  38081.      alphabetical order by english description, returned in in vecString 
  38082.      &Languages.  LCP: CountryLangListEngNat 
  38083.  
  38084.   Delete a country 
  38085.      bool deleteFromDesc() 
  38086.  
  38087.      Delete the country that uses the currently set description.  LCP: 
  38088.      CountryDelete 
  38089.  
  38090.   Set data members 
  38091.      bool setAll(mapString &FieldValues) 
  38092.  
  38093.      Sets all the data members of a topic using the mapString which is passed 
  38094.      to it.  Only the fields present in the mapString are updated, the other 
  38095.      fields are untouched.  LCP: CountryUpdate 
  38096.      bool setDesc(const string &DescSetting) 
  38097.  
  38098.      Set the short description 
  38099.      bool setDescLong(const string &DescLongSetting) 
  38100.  
  38101.      Set the long description 
  38102.      bool setDescNative(const string &DescNativeSetting) 
  38103.  
  38104.      Set the native language description 
  38105.      bool setNetCode(const string &NetCodeSetting) 
  38106.  
  38107.      Set the internet code for this country 
  38108.      bool erase() 
  38109.  
  38110.      Sets all the data members to empty 
  38111.  
  38112.   Get data members 
  38113.      bool getAll(mapString &FieldValues) 
  38114.  
  38115.      Return a mapString of all the data members of this topic. The key is the 
  38116.      variable name.  LCP: CountryAttribs 
  38117.      string getDesc() 
  38118.  
  38119.      Get the short description 
  38120.      string getDescLong() 
  38121.  
  38122.      Get the long description 
  38123.      string getDescNative() 
  38124.  
  38125.      Get the native language description 
  38126.      string getNetCode() 
  38127.  
  38128.      Get the internet code for this country 
  38129.  
  38130.  
  38131. ΓòÉΓòÉΓòÉ <hidden> QPhraseAll ΓòÉΓòÉΓòÉ
  38132.  
  38133.  
  38134. lyris_Country Class 
  38135.  
  38136.      class lyris_Country 
  38137.  
  38138.      For determining what countries exist, and what languages are spoken & 
  38139.      preferred in each country 
  38140.  
  38141.      Defined in: COUNTRY.H 
  38142.  
  38143.   Create a new country 
  38144.  
  38145.       bool createNew() 
  38146.  
  38147.      Creates a new country/language table row.  LCP: CountryCreate 
  38148.      bool updateDatabase() 
  38149.  
  38150.      Save the current country with the data members that have changed.  LCP: 
  38151.      CountryUpdate 
  38152.      bool VerifyFields() 
  38153.  
  38154.      Verify that all required fields are filled in. 
  38155.  
  38156.   Retrieve data from the database 
  38157.      bool fetchAllCountries(vecString &AllCountries) 
  38158.  
  38159.      Fetch a list of all countries.  LCP: CountryAll 
  38160.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38161.  
  38162.      Fetch a paired list of countries and their native language descriptions, 
  38163.      sorted by english description.  LCP: CountryEngNat 
  38164.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38165.  
  38166.      Fetch a paired list of native language country descriptions, and the 
  38167.      english name of the country. 
  38168.      bool retrieveFromNetCode() 
  38169.  
  38170.      Determine the country that uses the currently set NetCode.  Fills all the 
  38171.      other country attributes with values. LCP: CountryAttNetCode 
  38172.      bool retrieveFromDesc() 
  38173.  
  38174.      Determine the country that uses the currently set description.  Fills all 
  38175.      the other country attributes with values.  LCP: CountryAttribs 
  38176.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38177.  
  38178.      Determine the primary language of the current country.  "Desc" must be 
  38179.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38180.      CountryPrimLang 
  38181.      bool getAllLanguages(vecString &Languages) 
  38182.  
  38183.      Determine all the languages used by the current country.  "Desc" must be 
  38184.      already set.  The result is returned in priority order (highest priority 
  38185.      first) in vecString &Languages.  LCP: CountryLanguages 
  38186.      bool getLanguageList(vecString &Languages) 
  38187.  
  38188.      Get a list of all possible languages, in alphabetical order, returned in 
  38189.      vecString &Languages.  LCP: CountryLangList 
  38190.      bool getLanguageListEngNat(mapString &Languages) 
  38191.  
  38192.      Get a map of all possible languages, their native description in 
  38193.      alphabetical order by english description, returned in in vecString 
  38194.      &Languages.  LCP: CountryLangListEngNat 
  38195.  
  38196.   Delete a country 
  38197.      bool deleteFromDesc() 
  38198.  
  38199.      Delete the country that uses the currently set description.  LCP: 
  38200.      CountryDelete 
  38201.  
  38202.   Set data members 
  38203.      bool setAll(mapString &FieldValues) 
  38204.  
  38205.      Sets all the data members of a topic using the mapString which is passed 
  38206.      to it.  Only the fields present in the mapString are updated, the other 
  38207.      fields are untouched.  LCP: CountryUpdate 
  38208.      bool setDesc(const string &DescSetting) 
  38209.  
  38210.      Set the short description 
  38211.      bool setDescLong(const string &DescLongSetting) 
  38212.  
  38213.      Set the long description 
  38214.      bool setDescNative(const string &DescNativeSetting) 
  38215.  
  38216.      Set the native language description 
  38217.      bool setNetCode(const string &NetCodeSetting) 
  38218.  
  38219.      Set the internet code for this country 
  38220.      bool erase() 
  38221.  
  38222.      Sets all the data members to empty 
  38223.  
  38224.   Get data members 
  38225.      bool getAll(mapString &FieldValues) 
  38226.  
  38227.      Return a mapString of all the data members of this topic. The key is the 
  38228.      variable name.  LCP: CountryAttribs 
  38229.      string getDesc() 
  38230.  
  38231.      Get the short description 
  38232.      string getDescLong() 
  38233.  
  38234.      Get the long description 
  38235.      string getDescNative() 
  38236.  
  38237.      Get the native language description 
  38238.      string getNetCode() 
  38239.  
  38240.      Get the internet code for this country 
  38241.  
  38242.  
  38243. ΓòÉΓòÉΓòÉ <hidden> RPeopleNameEmail ΓòÉΓòÉΓòÉ
  38244.  
  38245.  
  38246. lyris_Country Class 
  38247.  
  38248.      class lyris_Country 
  38249.  
  38250.      For determining what countries exist, and what languages are spoken & 
  38251.      preferred in each country 
  38252.  
  38253.      Defined in: COUNTRY.H 
  38254.  
  38255.   Create a new country 
  38256.  
  38257.       bool createNew() 
  38258.  
  38259.      Creates a new country/language table row.  LCP: CountryCreate 
  38260.      bool updateDatabase() 
  38261.  
  38262.      Save the current country with the data members that have changed.  LCP: 
  38263.      CountryUpdate 
  38264.      bool VerifyFields() 
  38265.  
  38266.      Verify that all required fields are filled in. 
  38267.  
  38268.   Retrieve data from the database 
  38269.      bool fetchAllCountries(vecString &AllCountries) 
  38270.  
  38271.      Fetch a list of all countries.  LCP: CountryAll 
  38272.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38273.  
  38274.      Fetch a paired list of countries and their native language descriptions, 
  38275.      sorted by english description.  LCP: CountryEngNat 
  38276.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38277.  
  38278.      Fetch a paired list of native language country descriptions, and the 
  38279.      english name of the country. 
  38280.      bool retrieveFromNetCode() 
  38281.  
  38282.      Determine the country that uses the currently set NetCode.  Fills all the 
  38283.      other country attributes with values. LCP: CountryAttNetCode 
  38284.      bool retrieveFromDesc() 
  38285.  
  38286.      Determine the country that uses the currently set description.  Fills all 
  38287.      the other country attributes with values.  LCP: CountryAttribs 
  38288.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38289.  
  38290.      Determine the primary language of the current country.  "Desc" must be 
  38291.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38292.      CountryPrimLang 
  38293.      bool getAllLanguages(vecString &Languages) 
  38294.  
  38295.      Determine all the languages used by the current country.  "Desc" must be 
  38296.      already set.  The result is returned in priority order (highest priority 
  38297.      first) in vecString &Languages.  LCP: CountryLanguages 
  38298.      bool getLanguageList(vecString &Languages) 
  38299.  
  38300.      Get a list of all possible languages, in alphabetical order, returned in 
  38301.      vecString &Languages.  LCP: CountryLangList 
  38302.      bool getLanguageListEngNat(mapString &Languages) 
  38303.  
  38304.      Get a map of all possible languages, their native description in 
  38305.      alphabetical order by english description, returned in in vecString 
  38306.      &Languages.  LCP: CountryLangListEngNat 
  38307.  
  38308.   Delete a country 
  38309.      bool deleteFromDesc() 
  38310.  
  38311.      Delete the country that uses the currently set description.  LCP: 
  38312.      CountryDelete 
  38313.  
  38314.   Set data members 
  38315.      bool setAll(mapString &FieldValues) 
  38316.  
  38317.      Sets all the data members of a topic using the mapString which is passed 
  38318.      to it.  Only the fields present in the mapString are updated, the other 
  38319.      fields are untouched.  LCP: CountryUpdate 
  38320.      bool setDesc(const string &DescSetting) 
  38321.  
  38322.      Set the short description 
  38323.      bool setDescLong(const string &DescLongSetting) 
  38324.  
  38325.      Set the long description 
  38326.      bool setDescNative(const string &DescNativeSetting) 
  38327.  
  38328.      Set the native language description 
  38329.      bool setNetCode(const string &NetCodeSetting) 
  38330.  
  38331.      Set the internet code for this country 
  38332.      bool erase() 
  38333.  
  38334.      Sets all the data members to empty 
  38335.  
  38336.   Get data members 
  38337.      bool getAll(mapString &FieldValues) 
  38338.  
  38339.      Return a mapString of all the data members of this topic. The key is the 
  38340.      variable name.  LCP: CountryAttribs 
  38341.      string getDesc() 
  38342.  
  38343.      Get the short description 
  38344.      string getDescLong() 
  38345.  
  38346.      Get the long description 
  38347.      string getDescNative() 
  38348.  
  38349.      Get the native language description 
  38350.      string getNetCode() 
  38351.  
  38352.      Get the internet code for this country 
  38353.  
  38354.  
  38355. ΓòÉΓòÉΓòÉ <hidden> SPeopleCreate ΓòÉΓòÉΓòÉ
  38356.  
  38357.  
  38358. lyris_Country Class 
  38359.  
  38360.      class lyris_Country 
  38361.  
  38362.      For determining what countries exist, and what languages are spoken & 
  38363.      preferred in each country 
  38364.  
  38365.      Defined in: COUNTRY.H 
  38366.  
  38367.   Create a new country 
  38368.  
  38369.       bool createNew() 
  38370.  
  38371.      Creates a new country/language table row.  LCP: CountryCreate 
  38372.      bool updateDatabase() 
  38373.  
  38374.      Save the current country with the data members that have changed.  LCP: 
  38375.      CountryUpdate 
  38376.      bool VerifyFields() 
  38377.  
  38378.      Verify that all required fields are filled in. 
  38379.  
  38380.   Retrieve data from the database 
  38381.      bool fetchAllCountries(vecString &AllCountries) 
  38382.  
  38383.      Fetch a list of all countries.  LCP: CountryAll 
  38384.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38385.  
  38386.      Fetch a paired list of countries and their native language descriptions, 
  38387.      sorted by english description.  LCP: CountryEngNat 
  38388.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38389.  
  38390.      Fetch a paired list of native language country descriptions, and the 
  38391.      english name of the country. 
  38392.      bool retrieveFromNetCode() 
  38393.  
  38394.      Determine the country that uses the currently set NetCode.  Fills all the 
  38395.      other country attributes with values. LCP: CountryAttNetCode 
  38396.      bool retrieveFromDesc() 
  38397.  
  38398.      Determine the country that uses the currently set description.  Fills all 
  38399.      the other country attributes with values.  LCP: CountryAttribs 
  38400.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38401.  
  38402.      Determine the primary language of the current country.  "Desc" must be 
  38403.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38404.      CountryPrimLang 
  38405.      bool getAllLanguages(vecString &Languages) 
  38406.  
  38407.      Determine all the languages used by the current country.  "Desc" must be 
  38408.      already set.  The result is returned in priority order (highest priority 
  38409.      first) in vecString &Languages.  LCP: CountryLanguages 
  38410.      bool getLanguageList(vecString &Languages) 
  38411.  
  38412.      Get a list of all possible languages, in alphabetical order, returned in 
  38413.      vecString &Languages.  LCP: CountryLangList 
  38414.      bool getLanguageListEngNat(mapString &Languages) 
  38415.  
  38416.      Get a map of all possible languages, their native description in 
  38417.      alphabetical order by english description, returned in in vecString 
  38418.      &Languages.  LCP: CountryLangListEngNat 
  38419.  
  38420.   Delete a country 
  38421.      bool deleteFromDesc() 
  38422.  
  38423.      Delete the country that uses the currently set description.  LCP: 
  38424.      CountryDelete 
  38425.  
  38426.   Set data members 
  38427.      bool setAll(mapString &FieldValues) 
  38428.  
  38429.      Sets all the data members of a topic using the mapString which is passed 
  38430.      to it.  Only the fields present in the mapString are updated, the other 
  38431.      fields are untouched.  LCP: CountryUpdate 
  38432.      bool setDesc(const string &DescSetting) 
  38433.  
  38434.      Set the short description 
  38435.      bool setDescLong(const string &DescLongSetting) 
  38436.  
  38437.      Set the long description 
  38438.      bool setDescNative(const string &DescNativeSetting) 
  38439.  
  38440.      Set the native language description 
  38441.      bool setNetCode(const string &NetCodeSetting) 
  38442.  
  38443.      Set the internet code for this country 
  38444.      bool erase() 
  38445.  
  38446.      Sets all the data members to empty 
  38447.  
  38448.   Get data members 
  38449.      bool getAll(mapString &FieldValues) 
  38450.  
  38451.      Return a mapString of all the data members of this topic. The key is the 
  38452.      variable name.  LCP: CountryAttribs 
  38453.      string getDesc() 
  38454.  
  38455.      Get the short description 
  38456.      string getDescLong() 
  38457.  
  38458.      Get the long description 
  38459.      string getDescNative() 
  38460.  
  38461.      Get the native language description 
  38462.      string getNetCode() 
  38463.  
  38464.      Get the internet code for this country 
  38465.  
  38466.  
  38467. ΓòÉΓòÉΓòÉ <hidden> TPeopleAll ΓòÉΓòÉΓòÉ
  38468.  
  38469.  
  38470. lyris_Country Class 
  38471.  
  38472.      class lyris_Country 
  38473.  
  38474.      For determining what countries exist, and what languages are spoken & 
  38475.      preferred in each country 
  38476.  
  38477.      Defined in: COUNTRY.H 
  38478.  
  38479.   Create a new country 
  38480.  
  38481.       bool createNew() 
  38482.  
  38483.      Creates a new country/language table row.  LCP: CountryCreate 
  38484.      bool updateDatabase() 
  38485.  
  38486.      Save the current country with the data members that have changed.  LCP: 
  38487.      CountryUpdate 
  38488.      bool VerifyFields() 
  38489.  
  38490.      Verify that all required fields are filled in. 
  38491.  
  38492.   Retrieve data from the database 
  38493.      bool fetchAllCountries(vecString &AllCountries) 
  38494.  
  38495.      Fetch a list of all countries.  LCP: CountryAll 
  38496.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38497.  
  38498.      Fetch a paired list of countries and their native language descriptions, 
  38499.      sorted by english description.  LCP: CountryEngNat 
  38500.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38501.  
  38502.      Fetch a paired list of native language country descriptions, and the 
  38503.      english name of the country. 
  38504.      bool retrieveFromNetCode() 
  38505.  
  38506.      Determine the country that uses the currently set NetCode.  Fills all the 
  38507.      other country attributes with values. LCP: CountryAttNetCode 
  38508.      bool retrieveFromDesc() 
  38509.  
  38510.      Determine the country that uses the currently set description.  Fills all 
  38511.      the other country attributes with values.  LCP: CountryAttribs 
  38512.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38513.  
  38514.      Determine the primary language of the current country.  "Desc" must be 
  38515.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38516.      CountryPrimLang 
  38517.      bool getAllLanguages(vecString &Languages) 
  38518.  
  38519.      Determine all the languages used by the current country.  "Desc" must be 
  38520.      already set.  The result is returned in priority order (highest priority 
  38521.      first) in vecString &Languages.  LCP: CountryLanguages 
  38522.      bool getLanguageList(vecString &Languages) 
  38523.  
  38524.      Get a list of all possible languages, in alphabetical order, returned in 
  38525.      vecString &Languages.  LCP: CountryLangList 
  38526.      bool getLanguageListEngNat(mapString &Languages) 
  38527.  
  38528.      Get a map of all possible languages, their native description in 
  38529.      alphabetical order by english description, returned in in vecString 
  38530.      &Languages.  LCP: CountryLangListEngNat 
  38531.  
  38532.   Delete a country 
  38533.      bool deleteFromDesc() 
  38534.  
  38535.      Delete the country that uses the currently set description.  LCP: 
  38536.      CountryDelete 
  38537.  
  38538.   Set data members 
  38539.      bool setAll(mapString &FieldValues) 
  38540.  
  38541.      Sets all the data members of a topic using the mapString which is passed 
  38542.      to it.  Only the fields present in the mapString are updated, the other 
  38543.      fields are untouched.  LCP: CountryUpdate 
  38544.      bool setDesc(const string &DescSetting) 
  38545.  
  38546.      Set the short description 
  38547.      bool setDescLong(const string &DescLongSetting) 
  38548.  
  38549.      Set the long description 
  38550.      bool setDescNative(const string &DescNativeSetting) 
  38551.  
  38552.      Set the native language description 
  38553.      bool setNetCode(const string &NetCodeSetting) 
  38554.  
  38555.      Set the internet code for this country 
  38556.      bool erase() 
  38557.  
  38558.      Sets all the data members to empty 
  38559.  
  38560.   Get data members 
  38561.      bool getAll(mapString &FieldValues) 
  38562.  
  38563.      Return a mapString of all the data members of this topic. The key is the 
  38564.      variable name.  LCP: CountryAttribs 
  38565.      string getDesc() 
  38566.  
  38567.      Get the short description 
  38568.      string getDescLong() 
  38569.  
  38570.      Get the long description 
  38571.      string getDescNative() 
  38572.  
  38573.      Get the native language description 
  38574.      string getNetCode() 
  38575.  
  38576.      Get the internet code for this country 
  38577.  
  38578.  
  38579. ΓòÉΓòÉΓòÉ <hidden> UPeople ΓòÉΓòÉΓòÉ
  38580.  
  38581.  
  38582. lyris_Country Class 
  38583.  
  38584.      class lyris_Country 
  38585.  
  38586.      For determining what countries exist, and what languages are spoken & 
  38587.      preferred in each country 
  38588.  
  38589.      Defined in: COUNTRY.H 
  38590.  
  38591.   Create a new country 
  38592.  
  38593.       bool createNew() 
  38594.  
  38595.      Creates a new country/language table row.  LCP: CountryCreate 
  38596.      bool updateDatabase() 
  38597.  
  38598.      Save the current country with the data members that have changed.  LCP: 
  38599.      CountryUpdate 
  38600.      bool VerifyFields() 
  38601.  
  38602.      Verify that all required fields are filled in. 
  38603.  
  38604.   Retrieve data from the database 
  38605.      bool fetchAllCountries(vecString &AllCountries) 
  38606.  
  38607.      Fetch a list of all countries.  LCP: CountryAll 
  38608.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38609.  
  38610.      Fetch a paired list of countries and their native language descriptions, 
  38611.      sorted by english description.  LCP: CountryEngNat 
  38612.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38613.  
  38614.      Fetch a paired list of native language country descriptions, and the 
  38615.      english name of the country. 
  38616.      bool retrieveFromNetCode() 
  38617.  
  38618.      Determine the country that uses the currently set NetCode.  Fills all the 
  38619.      other country attributes with values. LCP: CountryAttNetCode 
  38620.      bool retrieveFromDesc() 
  38621.  
  38622.      Determine the country that uses the currently set description.  Fills all 
  38623.      the other country attributes with values.  LCP: CountryAttribs 
  38624.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38625.  
  38626.      Determine the primary language of the current country.  "Desc" must be 
  38627.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38628.      CountryPrimLang 
  38629.      bool getAllLanguages(vecString &Languages) 
  38630.  
  38631.      Determine all the languages used by the current country.  "Desc" must be 
  38632.      already set.  The result is returned in priority order (highest priority 
  38633.      first) in vecString &Languages.  LCP: CountryLanguages 
  38634.      bool getLanguageList(vecString &Languages) 
  38635.  
  38636.      Get a list of all possible languages, in alphabetical order, returned in 
  38637.      vecString &Languages.  LCP: CountryLangList 
  38638.      bool getLanguageListEngNat(mapString &Languages) 
  38639.  
  38640.      Get a map of all possible languages, their native description in 
  38641.      alphabetical order by english description, returned in in vecString 
  38642.      &Languages.  LCP: CountryLangListEngNat 
  38643.  
  38644.   Delete a country 
  38645.      bool deleteFromDesc() 
  38646.  
  38647.      Delete the country that uses the currently set description.  LCP: 
  38648.      CountryDelete 
  38649.  
  38650.   Set data members 
  38651.      bool setAll(mapString &FieldValues) 
  38652.  
  38653.      Sets all the data members of a topic using the mapString which is passed 
  38654.      to it.  Only the fields present in the mapString are updated, the other 
  38655.      fields are untouched.  LCP: CountryUpdate 
  38656.      bool setDesc(const string &DescSetting) 
  38657.  
  38658.      Set the short description 
  38659.      bool setDescLong(const string &DescLongSetting) 
  38660.  
  38661.      Set the long description 
  38662.      bool setDescNative(const string &DescNativeSetting) 
  38663.  
  38664.      Set the native language description 
  38665.      bool setNetCode(const string &NetCodeSetting) 
  38666.  
  38667.      Set the internet code for this country 
  38668.      bool erase() 
  38669.  
  38670.      Sets all the data members to empty 
  38671.  
  38672.   Get data members 
  38673.      bool getAll(mapString &FieldValues) 
  38674.  
  38675.      Return a mapString of all the data members of this topic. The key is the 
  38676.      variable name.  LCP: CountryAttribs 
  38677.      string getDesc() 
  38678.  
  38679.      Get the short description 
  38680.      string getDescLong() 
  38681.  
  38682.      Get the long description 
  38683.      string getDescNative() 
  38684.  
  38685.      Get the native language description 
  38686.      string getNetCode() 
  38687.  
  38688.      Get the internet code for this country 
  38689.  
  38690.  
  38691. ΓòÉΓòÉΓòÉ <hidden> VOutMailType ΓòÉΓòÉΓòÉ
  38692.  
  38693.  
  38694. lyris_Country Class 
  38695.  
  38696.      class lyris_Country 
  38697.  
  38698.      For determining what countries exist, and what languages are spoken & 
  38699.      preferred in each country 
  38700.  
  38701.      Defined in: COUNTRY.H 
  38702.  
  38703.   Create a new country 
  38704.  
  38705.       bool createNew() 
  38706.  
  38707.      Creates a new country/language table row.  LCP: CountryCreate 
  38708.      bool updateDatabase() 
  38709.  
  38710.      Save the current country with the data members that have changed.  LCP: 
  38711.      CountryUpdate 
  38712.      bool VerifyFields() 
  38713.  
  38714.      Verify that all required fields are filled in. 
  38715.  
  38716.   Retrieve data from the database 
  38717.      bool fetchAllCountries(vecString &AllCountries) 
  38718.  
  38719.      Fetch a list of all countries.  LCP: CountryAll 
  38720.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38721.  
  38722.      Fetch a paired list of countries and their native language descriptions, 
  38723.      sorted by english description.  LCP: CountryEngNat 
  38724.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38725.  
  38726.      Fetch a paired list of native language country descriptions, and the 
  38727.      english name of the country. 
  38728.      bool retrieveFromNetCode() 
  38729.  
  38730.      Determine the country that uses the currently set NetCode.  Fills all the 
  38731.      other country attributes with values. LCP: CountryAttNetCode 
  38732.      bool retrieveFromDesc() 
  38733.  
  38734.      Determine the country that uses the currently set description.  Fills all 
  38735.      the other country attributes with values.  LCP: CountryAttribs 
  38736.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38737.  
  38738.      Determine the primary language of the current country.  "Desc" must be 
  38739.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38740.      CountryPrimLang 
  38741.      bool getAllLanguages(vecString &Languages) 
  38742.  
  38743.      Determine all the languages used by the current country.  "Desc" must be 
  38744.      already set.  The result is returned in priority order (highest priority 
  38745.      first) in vecString &Languages.  LCP: CountryLanguages 
  38746.      bool getLanguageList(vecString &Languages) 
  38747.  
  38748.      Get a list of all possible languages, in alphabetical order, returned in 
  38749.      vecString &Languages.  LCP: CountryLangList 
  38750.      bool getLanguageListEngNat(mapString &Languages) 
  38751.  
  38752.      Get a map of all possible languages, their native description in 
  38753.      alphabetical order by english description, returned in in vecString 
  38754.      &Languages.  LCP: CountryLangListEngNat 
  38755.  
  38756.   Delete a country 
  38757.      bool deleteFromDesc() 
  38758.  
  38759.      Delete the country that uses the currently set description.  LCP: 
  38760.      CountryDelete 
  38761.  
  38762.   Set data members 
  38763.      bool setAll(mapString &FieldValues) 
  38764.  
  38765.      Sets all the data members of a topic using the mapString which is passed 
  38766.      to it.  Only the fields present in the mapString are updated, the other 
  38767.      fields are untouched.  LCP: CountryUpdate 
  38768.      bool setDesc(const string &DescSetting) 
  38769.  
  38770.      Set the short description 
  38771.      bool setDescLong(const string &DescLongSetting) 
  38772.  
  38773.      Set the long description 
  38774.      bool setDescNative(const string &DescNativeSetting) 
  38775.  
  38776.      Set the native language description 
  38777.      bool setNetCode(const string &NetCodeSetting) 
  38778.  
  38779.      Set the internet code for this country 
  38780.      bool erase() 
  38781.  
  38782.      Sets all the data members to empty 
  38783.  
  38784.   Get data members 
  38785.      bool getAll(mapString &FieldValues) 
  38786.  
  38787.      Return a mapString of all the data members of this topic. The key is the 
  38788.      variable name.  LCP: CountryAttribs 
  38789.      string getDesc() 
  38790.  
  38791.      Get the short description 
  38792.      string getDescLong() 
  38793.  
  38794.      Get the long description 
  38795.      string getDescNative() 
  38796.  
  38797.      Get the native language description 
  38798.      string getNetCode() 
  38799.  
  38800.      Get the internet code for this country 
  38801.  
  38802.  
  38803. ΓòÉΓòÉΓòÉ <hidden> WOutMailList ΓòÉΓòÉΓòÉ
  38804.  
  38805.  
  38806. lyris_Country Class 
  38807.  
  38808.      class lyris_Country 
  38809.  
  38810.      For determining what countries exist, and what languages are spoken & 
  38811.      preferred in each country 
  38812.  
  38813.      Defined in: COUNTRY.H 
  38814.  
  38815.   Create a new country 
  38816.  
  38817.       bool createNew() 
  38818.  
  38819.      Creates a new country/language table row.  LCP: CountryCreate 
  38820.      bool updateDatabase() 
  38821.  
  38822.      Save the current country with the data members that have changed.  LCP: 
  38823.      CountryUpdate 
  38824.      bool VerifyFields() 
  38825.  
  38826.      Verify that all required fields are filled in. 
  38827.  
  38828.   Retrieve data from the database 
  38829.      bool fetchAllCountries(vecString &AllCountries) 
  38830.  
  38831.      Fetch a list of all countries.  LCP: CountryAll 
  38832.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38833.  
  38834.      Fetch a paired list of countries and their native language descriptions, 
  38835.      sorted by english description.  LCP: CountryEngNat 
  38836.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38837.  
  38838.      Fetch a paired list of native language country descriptions, and the 
  38839.      english name of the country. 
  38840.      bool retrieveFromNetCode() 
  38841.  
  38842.      Determine the country that uses the currently set NetCode.  Fills all the 
  38843.      other country attributes with values. LCP: CountryAttNetCode 
  38844.      bool retrieveFromDesc() 
  38845.  
  38846.      Determine the country that uses the currently set description.  Fills all 
  38847.      the other country attributes with values.  LCP: CountryAttribs 
  38848.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38849.  
  38850.      Determine the primary language of the current country.  "Desc" must be 
  38851.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38852.      CountryPrimLang 
  38853.      bool getAllLanguages(vecString &Languages) 
  38854.  
  38855.      Determine all the languages used by the current country.  "Desc" must be 
  38856.      already set.  The result is returned in priority order (highest priority 
  38857.      first) in vecString &Languages.  LCP: CountryLanguages 
  38858.      bool getLanguageList(vecString &Languages) 
  38859.  
  38860.      Get a list of all possible languages, in alphabetical order, returned in 
  38861.      vecString &Languages.  LCP: CountryLangList 
  38862.      bool getLanguageListEngNat(mapString &Languages) 
  38863.  
  38864.      Get a map of all possible languages, their native description in 
  38865.      alphabetical order by english description, returned in in vecString 
  38866.      &Languages.  LCP: CountryLangListEngNat 
  38867.  
  38868.   Delete a country 
  38869.      bool deleteFromDesc() 
  38870.  
  38871.      Delete the country that uses the currently set description.  LCP: 
  38872.      CountryDelete 
  38873.  
  38874.   Set data members 
  38875.      bool setAll(mapString &FieldValues) 
  38876.  
  38877.      Sets all the data members of a topic using the mapString which is passed 
  38878.      to it.  Only the fields present in the mapString are updated, the other 
  38879.      fields are untouched.  LCP: CountryUpdate 
  38880.      bool setDesc(const string &DescSetting) 
  38881.  
  38882.      Set the short description 
  38883.      bool setDescLong(const string &DescLongSetting) 
  38884.  
  38885.      Set the long description 
  38886.      bool setDescNative(const string &DescNativeSetting) 
  38887.  
  38888.      Set the native language description 
  38889.      bool setNetCode(const string &NetCodeSetting) 
  38890.  
  38891.      Set the internet code for this country 
  38892.      bool erase() 
  38893.  
  38894.      Sets all the data members to empty 
  38895.  
  38896.   Get data members 
  38897.      bool getAll(mapString &FieldValues) 
  38898.  
  38899.      Return a mapString of all the data members of this topic. The key is the 
  38900.      variable name.  LCP: CountryAttribs 
  38901.      string getDesc() 
  38902.  
  38903.      Get the short description 
  38904.      string getDescLong() 
  38905.  
  38906.      Get the long description 
  38907.      string getDescNative() 
  38908.  
  38909.      Get the native language description 
  38910.      string getNetCode() 
  38911.  
  38912.      Get the internet code for this country 
  38913.  
  38914.  
  38915. ΓòÉΓòÉΓòÉ <hidden> XOutMailCreate ΓòÉΓòÉΓòÉ
  38916.  
  38917.  
  38918. lyris_Country Class 
  38919.  
  38920.      class lyris_Country 
  38921.  
  38922.      For determining what countries exist, and what languages are spoken & 
  38923.      preferred in each country 
  38924.  
  38925.      Defined in: COUNTRY.H 
  38926.  
  38927.   Create a new country 
  38928.  
  38929.       bool createNew() 
  38930.  
  38931.      Creates a new country/language table row.  LCP: CountryCreate 
  38932.      bool updateDatabase() 
  38933.  
  38934.      Save the current country with the data members that have changed.  LCP: 
  38935.      CountryUpdate 
  38936.      bool VerifyFields() 
  38937.  
  38938.      Verify that all required fields are filled in. 
  38939.  
  38940.   Retrieve data from the database 
  38941.      bool fetchAllCountries(vecString &AllCountries) 
  38942.  
  38943.      Fetch a list of all countries.  LCP: CountryAll 
  38944.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  38945.  
  38946.      Fetch a paired list of countries and their native language descriptions, 
  38947.      sorted by english description.  LCP: CountryEngNat 
  38948.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  38949.  
  38950.      Fetch a paired list of native language country descriptions, and the 
  38951.      english name of the country. 
  38952.      bool retrieveFromNetCode() 
  38953.  
  38954.      Determine the country that uses the currently set NetCode.  Fills all the 
  38955.      other country attributes with values. LCP: CountryAttNetCode 
  38956.      bool retrieveFromDesc() 
  38957.  
  38958.      Determine the country that uses the currently set description.  Fills all 
  38959.      the other country attributes with values.  LCP: CountryAttribs 
  38960.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  38961.  
  38962.      Determine the primary language of the current country.  "Desc" must be 
  38963.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  38964.      CountryPrimLang 
  38965.      bool getAllLanguages(vecString &Languages) 
  38966.  
  38967.      Determine all the languages used by the current country.  "Desc" must be 
  38968.      already set.  The result is returned in priority order (highest priority 
  38969.      first) in vecString &Languages.  LCP: CountryLanguages 
  38970.      bool getLanguageList(vecString &Languages) 
  38971.  
  38972.      Get a list of all possible languages, in alphabetical order, returned in 
  38973.      vecString &Languages.  LCP: CountryLangList 
  38974.      bool getLanguageListEngNat(mapString &Languages) 
  38975.  
  38976.      Get a map of all possible languages, their native description in 
  38977.      alphabetical order by english description, returned in in vecString 
  38978.      &Languages.  LCP: CountryLangListEngNat 
  38979.  
  38980.   Delete a country 
  38981.      bool deleteFromDesc() 
  38982.  
  38983.      Delete the country that uses the currently set description.  LCP: 
  38984.      CountryDelete 
  38985.  
  38986.   Set data members 
  38987.      bool setAll(mapString &FieldValues) 
  38988.  
  38989.      Sets all the data members of a topic using the mapString which is passed 
  38990.      to it.  Only the fields present in the mapString are updated, the other 
  38991.      fields are untouched.  LCP: CountryUpdate 
  38992.      bool setDesc(const string &DescSetting) 
  38993.  
  38994.      Set the short description 
  38995.      bool setDescLong(const string &DescLongSetting) 
  38996.  
  38997.      Set the long description 
  38998.      bool setDescNative(const string &DescNativeSetting) 
  38999.  
  39000.      Set the native language description 
  39001.      bool setNetCode(const string &NetCodeSetting) 
  39002.  
  39003.      Set the internet code for this country 
  39004.      bool erase() 
  39005.  
  39006.      Sets all the data members to empty 
  39007.  
  39008.   Get data members 
  39009.      bool getAll(mapString &FieldValues) 
  39010.  
  39011.      Return a mapString of all the data members of this topic. The key is the 
  39012.      variable name.  LCP: CountryAttribs 
  39013.      string getDesc() 
  39014.  
  39015.      Get the short description 
  39016.      string getDescLong() 
  39017.  
  39018.      Get the long description 
  39019.      string getDescNative() 
  39020.  
  39021.      Get the native language description 
  39022.      string getNetCode() 
  39023.  
  39024.      Get the internet code for this country 
  39025.  
  39026.  
  39027. ΓòÉΓòÉΓòÉ <hidden> YOutMailAll ΓòÉΓòÉΓòÉ
  39028.  
  39029.  
  39030. lyris_Country Class 
  39031.  
  39032.      class lyris_Country 
  39033.  
  39034.      For determining what countries exist, and what languages are spoken & 
  39035.      preferred in each country 
  39036.  
  39037.      Defined in: COUNTRY.H 
  39038.  
  39039.   Create a new country 
  39040.  
  39041.       bool createNew() 
  39042.  
  39043.      Creates a new country/language table row.  LCP: CountryCreate 
  39044.      bool updateDatabase() 
  39045.  
  39046.      Save the current country with the data members that have changed.  LCP: 
  39047.      CountryUpdate 
  39048.      bool VerifyFields() 
  39049.  
  39050.      Verify that all required fields are filled in. 
  39051.  
  39052.   Retrieve data from the database 
  39053.      bool fetchAllCountries(vecString &AllCountries) 
  39054.  
  39055.      Fetch a list of all countries.  LCP: CountryAll 
  39056.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39057.  
  39058.      Fetch a paired list of countries and their native language descriptions, 
  39059.      sorted by english description.  LCP: CountryEngNat 
  39060.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39061.  
  39062.      Fetch a paired list of native language country descriptions, and the 
  39063.      english name of the country. 
  39064.      bool retrieveFromNetCode() 
  39065.  
  39066.      Determine the country that uses the currently set NetCode.  Fills all the 
  39067.      other country attributes with values. LCP: CountryAttNetCode 
  39068.      bool retrieveFromDesc() 
  39069.  
  39070.      Determine the country that uses the currently set description.  Fills all 
  39071.      the other country attributes with values.  LCP: CountryAttribs 
  39072.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39073.  
  39074.      Determine the primary language of the current country.  "Desc" must be 
  39075.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39076.      CountryPrimLang 
  39077.      bool getAllLanguages(vecString &Languages) 
  39078.  
  39079.      Determine all the languages used by the current country.  "Desc" must be 
  39080.      already set.  The result is returned in priority order (highest priority 
  39081.      first) in vecString &Languages.  LCP: CountryLanguages 
  39082.      bool getLanguageList(vecString &Languages) 
  39083.  
  39084.      Get a list of all possible languages, in alphabetical order, returned in 
  39085.      vecString &Languages.  LCP: CountryLangList 
  39086.      bool getLanguageListEngNat(mapString &Languages) 
  39087.  
  39088.      Get a map of all possible languages, their native description in 
  39089.      alphabetical order by english description, returned in in vecString 
  39090.      &Languages.  LCP: CountryLangListEngNat 
  39091.  
  39092.   Delete a country 
  39093.      bool deleteFromDesc() 
  39094.  
  39095.      Delete the country that uses the currently set description.  LCP: 
  39096.      CountryDelete 
  39097.  
  39098.   Set data members 
  39099.      bool setAll(mapString &FieldValues) 
  39100.  
  39101.      Sets all the data members of a topic using the mapString which is passed 
  39102.      to it.  Only the fields present in the mapString are updated, the other 
  39103.      fields are untouched.  LCP: CountryUpdate 
  39104.      bool setDesc(const string &DescSetting) 
  39105.  
  39106.      Set the short description 
  39107.      bool setDescLong(const string &DescLongSetting) 
  39108.  
  39109.      Set the long description 
  39110.      bool setDescNative(const string &DescNativeSetting) 
  39111.  
  39112.      Set the native language description 
  39113.      bool setNetCode(const string &NetCodeSetting) 
  39114.  
  39115.      Set the internet code for this country 
  39116.      bool erase() 
  39117.  
  39118.      Sets all the data members to empty 
  39119.  
  39120.   Get data members 
  39121.      bool getAll(mapString &FieldValues) 
  39122.  
  39123.      Return a mapString of all the data members of this topic. The key is the 
  39124.      variable name.  LCP: CountryAttribs 
  39125.      string getDesc() 
  39126.  
  39127.      Get the short description 
  39128.      string getDescLong() 
  39129.  
  39130.      Get the long description 
  39131.      string getDescNative() 
  39132.  
  39133.      Get the native language description 
  39134.      string getNetCode() 
  39135.  
  39136.      Get the internet code for this country 
  39137.  
  39138.  
  39139. ΓòÉΓòÉΓòÉ <hidden> ZOutgoing Email Messages ΓòÉΓòÉΓòÉ
  39140.  
  39141.  
  39142. lyris_Country Class 
  39143.  
  39144.      class lyris_Country 
  39145.  
  39146.      For determining what countries exist, and what languages are spoken & 
  39147.      preferred in each country 
  39148.  
  39149.      Defined in: COUNTRY.H 
  39150.  
  39151.   Create a new country 
  39152.  
  39153.       bool createNew() 
  39154.  
  39155.      Creates a new country/language table row.  LCP: CountryCreate 
  39156.      bool updateDatabase() 
  39157.  
  39158.      Save the current country with the data members that have changed.  LCP: 
  39159.      CountryUpdate 
  39160.      bool VerifyFields() 
  39161.  
  39162.      Verify that all required fields are filled in. 
  39163.  
  39164.   Retrieve data from the database 
  39165.      bool fetchAllCountries(vecString &AllCountries) 
  39166.  
  39167.      Fetch a list of all countries.  LCP: CountryAll 
  39168.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39169.  
  39170.      Fetch a paired list of countries and their native language descriptions, 
  39171.      sorted by english description.  LCP: CountryEngNat 
  39172.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39173.  
  39174.      Fetch a paired list of native language country descriptions, and the 
  39175.      english name of the country. 
  39176.      bool retrieveFromNetCode() 
  39177.  
  39178.      Determine the country that uses the currently set NetCode.  Fills all the 
  39179.      other country attributes with values. LCP: CountryAttNetCode 
  39180.      bool retrieveFromDesc() 
  39181.  
  39182.      Determine the country that uses the currently set description.  Fills all 
  39183.      the other country attributes with values.  LCP: CountryAttribs 
  39184.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39185.  
  39186.      Determine the primary language of the current country.  "Desc" must be 
  39187.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39188.      CountryPrimLang 
  39189.      bool getAllLanguages(vecString &Languages) 
  39190.  
  39191.      Determine all the languages used by the current country.  "Desc" must be 
  39192.      already set.  The result is returned in priority order (highest priority 
  39193.      first) in vecString &Languages.  LCP: CountryLanguages 
  39194.      bool getLanguageList(vecString &Languages) 
  39195.  
  39196.      Get a list of all possible languages, in alphabetical order, returned in 
  39197.      vecString &Languages.  LCP: CountryLangList 
  39198.      bool getLanguageListEngNat(mapString &Languages) 
  39199.  
  39200.      Get a map of all possible languages, their native description in 
  39201.      alphabetical order by english description, returned in in vecString 
  39202.      &Languages.  LCP: CountryLangListEngNat 
  39203.  
  39204.   Delete a country 
  39205.      bool deleteFromDesc() 
  39206.  
  39207.      Delete the country that uses the currently set description.  LCP: 
  39208.      CountryDelete 
  39209.  
  39210.   Set data members 
  39211.      bool setAll(mapString &FieldValues) 
  39212.  
  39213.      Sets all the data members of a topic using the mapString which is passed 
  39214.      to it.  Only the fields present in the mapString are updated, the other 
  39215.      fields are untouched.  LCP: CountryUpdate 
  39216.      bool setDesc(const string &DescSetting) 
  39217.  
  39218.      Set the short description 
  39219.      bool setDescLong(const string &DescLongSetting) 
  39220.  
  39221.      Set the long description 
  39222.      bool setDescNative(const string &DescNativeSetting) 
  39223.  
  39224.      Set the native language description 
  39225.      bool setNetCode(const string &NetCodeSetting) 
  39226.  
  39227.      Set the internet code for this country 
  39228.      bool erase() 
  39229.  
  39230.      Sets all the data members to empty 
  39231.  
  39232.   Get data members 
  39233.      bool getAll(mapString &FieldValues) 
  39234.  
  39235.      Return a mapString of all the data members of this topic. The key is the 
  39236.      variable name.  LCP: CountryAttribs 
  39237.      string getDesc() 
  39238.  
  39239.      Get the short description 
  39240.      string getDescLong() 
  39241.  
  39242.      Get the long description 
  39243.      string getDescNative() 
  39244.  
  39245.      Get the native language description 
  39246.      string getNetCode() 
  39247.  
  39248.      Get the internet code for this country 
  39249.  
  39250.  
  39251. ΓòÉΓòÉΓòÉ <hidden> [ModerateReject ΓòÉΓòÉΓòÉ
  39252.  
  39253.  
  39254. lyris_Country Class 
  39255.  
  39256.      class lyris_Country 
  39257.  
  39258.      For determining what countries exist, and what languages are spoken & 
  39259.      preferred in each country 
  39260.  
  39261.      Defined in: COUNTRY.H 
  39262.  
  39263.   Create a new country 
  39264.  
  39265.       bool createNew() 
  39266.  
  39267.      Creates a new country/language table row.  LCP: CountryCreate 
  39268.      bool updateDatabase() 
  39269.  
  39270.      Save the current country with the data members that have changed.  LCP: 
  39271.      CountryUpdate 
  39272.      bool VerifyFields() 
  39273.  
  39274.      Verify that all required fields are filled in. 
  39275.  
  39276.   Retrieve data from the database 
  39277.      bool fetchAllCountries(vecString &AllCountries) 
  39278.  
  39279.      Fetch a list of all countries.  LCP: CountryAll 
  39280.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39281.  
  39282.      Fetch a paired list of countries and their native language descriptions, 
  39283.      sorted by english description.  LCP: CountryEngNat 
  39284.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39285.  
  39286.      Fetch a paired list of native language country descriptions, and the 
  39287.      english name of the country. 
  39288.      bool retrieveFromNetCode() 
  39289.  
  39290.      Determine the country that uses the currently set NetCode.  Fills all the 
  39291.      other country attributes with values. LCP: CountryAttNetCode 
  39292.      bool retrieveFromDesc() 
  39293.  
  39294.      Determine the country that uses the currently set description.  Fills all 
  39295.      the other country attributes with values.  LCP: CountryAttribs 
  39296.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39297.  
  39298.      Determine the primary language of the current country.  "Desc" must be 
  39299.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39300.      CountryPrimLang 
  39301.      bool getAllLanguages(vecString &Languages) 
  39302.  
  39303.      Determine all the languages used by the current country.  "Desc" must be 
  39304.      already set.  The result is returned in priority order (highest priority 
  39305.      first) in vecString &Languages.  LCP: CountryLanguages 
  39306.      bool getLanguageList(vecString &Languages) 
  39307.  
  39308.      Get a list of all possible languages, in alphabetical order, returned in 
  39309.      vecString &Languages.  LCP: CountryLangList 
  39310.      bool getLanguageListEngNat(mapString &Languages) 
  39311.  
  39312.      Get a map of all possible languages, their native description in 
  39313.      alphabetical order by english description, returned in in vecString 
  39314.      &Languages.  LCP: CountryLangListEngNat 
  39315.  
  39316.   Delete a country 
  39317.      bool deleteFromDesc() 
  39318.  
  39319.      Delete the country that uses the currently set description.  LCP: 
  39320.      CountryDelete 
  39321.  
  39322.   Set data members 
  39323.      bool setAll(mapString &FieldValues) 
  39324.  
  39325.      Sets all the data members of a topic using the mapString which is passed 
  39326.      to it.  Only the fields present in the mapString are updated, the other 
  39327.      fields are untouched.  LCP: CountryUpdate 
  39328.      bool setDesc(const string &DescSetting) 
  39329.  
  39330.      Set the short description 
  39331.      bool setDescLong(const string &DescLongSetting) 
  39332.  
  39333.      Set the long description 
  39334.      bool setDescNative(const string &DescNativeSetting) 
  39335.  
  39336.      Set the native language description 
  39337.      bool setNetCode(const string &NetCodeSetting) 
  39338.  
  39339.      Set the internet code for this country 
  39340.      bool erase() 
  39341.  
  39342.      Sets all the data members to empty 
  39343.  
  39344.   Get data members 
  39345.      bool getAll(mapString &FieldValues) 
  39346.  
  39347.      Return a mapString of all the data members of this topic. The key is the 
  39348.      variable name.  LCP: CountryAttribs 
  39349.      string getDesc() 
  39350.  
  39351.      Get the short description 
  39352.      string getDescLong() 
  39353.  
  39354.      Get the long description 
  39355.      string getDescNative() 
  39356.  
  39357.      Get the native language description 
  39358.      string getNetCode() 
  39359.  
  39360.      Get the internet code for this country 
  39361.  
  39362.  
  39363. ΓòÉΓòÉΓòÉ <hidden> \Moderated ΓòÉΓòÉΓòÉ
  39364.  
  39365.  
  39366. lyris_Country Class 
  39367.  
  39368.      class lyris_Country 
  39369.  
  39370.      For determining what countries exist, and what languages are spoken & 
  39371.      preferred in each country 
  39372.  
  39373.      Defined in: COUNTRY.H 
  39374.  
  39375.   Create a new country 
  39376.  
  39377.       bool createNew() 
  39378.  
  39379.      Creates a new country/language table row.  LCP: CountryCreate 
  39380.      bool updateDatabase() 
  39381.  
  39382.      Save the current country with the data members that have changed.  LCP: 
  39383.      CountryUpdate 
  39384.      bool VerifyFields() 
  39385.  
  39386.      Verify that all required fields are filled in. 
  39387.  
  39388.   Retrieve data from the database 
  39389.      bool fetchAllCountries(vecString &AllCountries) 
  39390.  
  39391.      Fetch a list of all countries.  LCP: CountryAll 
  39392.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39393.  
  39394.      Fetch a paired list of countries and their native language descriptions, 
  39395.      sorted by english description.  LCP: CountryEngNat 
  39396.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39397.  
  39398.      Fetch a paired list of native language country descriptions, and the 
  39399.      english name of the country. 
  39400.      bool retrieveFromNetCode() 
  39401.  
  39402.      Determine the country that uses the currently set NetCode.  Fills all the 
  39403.      other country attributes with values. LCP: CountryAttNetCode 
  39404.      bool retrieveFromDesc() 
  39405.  
  39406.      Determine the country that uses the currently set description.  Fills all 
  39407.      the other country attributes with values.  LCP: CountryAttribs 
  39408.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39409.  
  39410.      Determine the primary language of the current country.  "Desc" must be 
  39411.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39412.      CountryPrimLang 
  39413.      bool getAllLanguages(vecString &Languages) 
  39414.  
  39415.      Determine all the languages used by the current country.  "Desc" must be 
  39416.      already set.  The result is returned in priority order (highest priority 
  39417.      first) in vecString &Languages.  LCP: CountryLanguages 
  39418.      bool getLanguageList(vecString &Languages) 
  39419.  
  39420.      Get a list of all possible languages, in alphabetical order, returned in 
  39421.      vecString &Languages.  LCP: CountryLangList 
  39422.      bool getLanguageListEngNat(mapString &Languages) 
  39423.  
  39424.      Get a map of all possible languages, their native description in 
  39425.      alphabetical order by english description, returned in in vecString 
  39426.      &Languages.  LCP: CountryLangListEngNat 
  39427.  
  39428.   Delete a country 
  39429.      bool deleteFromDesc() 
  39430.  
  39431.      Delete the country that uses the currently set description.  LCP: 
  39432.      CountryDelete 
  39433.  
  39434.   Set data members 
  39435.      bool setAll(mapString &FieldValues) 
  39436.  
  39437.      Sets all the data members of a topic using the mapString which is passed 
  39438.      to it.  Only the fields present in the mapString are updated, the other 
  39439.      fields are untouched.  LCP: CountryUpdate 
  39440.      bool setDesc(const string &DescSetting) 
  39441.  
  39442.      Set the short description 
  39443.      bool setDescLong(const string &DescLongSetting) 
  39444.  
  39445.      Set the long description 
  39446.      bool setDescNative(const string &DescNativeSetting) 
  39447.  
  39448.      Set the native language description 
  39449.      bool setNetCode(const string &NetCodeSetting) 
  39450.  
  39451.      Set the internet code for this country 
  39452.      bool erase() 
  39453.  
  39454.      Sets all the data members to empty 
  39455.  
  39456.   Get data members 
  39457.      bool getAll(mapString &FieldValues) 
  39458.  
  39459.      Return a mapString of all the data members of this topic. The key is the 
  39460.      variable name.  LCP: CountryAttribs 
  39461.      string getDesc() 
  39462.  
  39463.      Get the short description 
  39464.      string getDescLong() 
  39465.  
  39466.      Get the long description 
  39467.      string getDescNative() 
  39468.  
  39469.      Get the native language description 
  39470.      string getNetCode() 
  39471.  
  39472.      Get the internet code for this country 
  39473.  
  39474.  
  39475. ΓòÉΓòÉΓòÉ <hidden> ]ModerateAttribs ΓòÉΓòÉΓòÉ
  39476.  
  39477.  
  39478. lyris_Country Class 
  39479.  
  39480.      class lyris_Country 
  39481.  
  39482.      For determining what countries exist, and what languages are spoken & 
  39483.      preferred in each country 
  39484.  
  39485.      Defined in: COUNTRY.H 
  39486.  
  39487.   Create a new country 
  39488.  
  39489.       bool createNew() 
  39490.  
  39491.      Creates a new country/language table row.  LCP: CountryCreate 
  39492.      bool updateDatabase() 
  39493.  
  39494.      Save the current country with the data members that have changed.  LCP: 
  39495.      CountryUpdate 
  39496.      bool VerifyFields() 
  39497.  
  39498.      Verify that all required fields are filled in. 
  39499.  
  39500.   Retrieve data from the database 
  39501.      bool fetchAllCountries(vecString &AllCountries) 
  39502.  
  39503.      Fetch a list of all countries.  LCP: CountryAll 
  39504.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39505.  
  39506.      Fetch a paired list of countries and their native language descriptions, 
  39507.      sorted by english description.  LCP: CountryEngNat 
  39508.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39509.  
  39510.      Fetch a paired list of native language country descriptions, and the 
  39511.      english name of the country. 
  39512.      bool retrieveFromNetCode() 
  39513.  
  39514.      Determine the country that uses the currently set NetCode.  Fills all the 
  39515.      other country attributes with values. LCP: CountryAttNetCode 
  39516.      bool retrieveFromDesc() 
  39517.  
  39518.      Determine the country that uses the currently set description.  Fills all 
  39519.      the other country attributes with values.  LCP: CountryAttribs 
  39520.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39521.  
  39522.      Determine the primary language of the current country.  "Desc" must be 
  39523.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39524.      CountryPrimLang 
  39525.      bool getAllLanguages(vecString &Languages) 
  39526.  
  39527.      Determine all the languages used by the current country.  "Desc" must be 
  39528.      already set.  The result is returned in priority order (highest priority 
  39529.      first) in vecString &Languages.  LCP: CountryLanguages 
  39530.      bool getLanguageList(vecString &Languages) 
  39531.  
  39532.      Get a list of all possible languages, in alphabetical order, returned in 
  39533.      vecString &Languages.  LCP: CountryLangList 
  39534.      bool getLanguageListEngNat(mapString &Languages) 
  39535.  
  39536.      Get a map of all possible languages, their native description in 
  39537.      alphabetical order by english description, returned in in vecString 
  39538.      &Languages.  LCP: CountryLangListEngNat 
  39539.  
  39540.   Delete a country 
  39541.      bool deleteFromDesc() 
  39542.  
  39543.      Delete the country that uses the currently set description.  LCP: 
  39544.      CountryDelete 
  39545.  
  39546.   Set data members 
  39547.      bool setAll(mapString &FieldValues) 
  39548.  
  39549.      Sets all the data members of a topic using the mapString which is passed 
  39550.      to it.  Only the fields present in the mapString are updated, the other 
  39551.      fields are untouched.  LCP: CountryUpdate 
  39552.      bool setDesc(const string &DescSetting) 
  39553.  
  39554.      Set the short description 
  39555.      bool setDescLong(const string &DescLongSetting) 
  39556.  
  39557.      Set the long description 
  39558.      bool setDescNative(const string &DescNativeSetting) 
  39559.  
  39560.      Set the native language description 
  39561.      bool setNetCode(const string &NetCodeSetting) 
  39562.  
  39563.      Set the internet code for this country 
  39564.      bool erase() 
  39565.  
  39566.      Sets all the data members to empty 
  39567.  
  39568.   Get data members 
  39569.      bool getAll(mapString &FieldValues) 
  39570.  
  39571.      Return a mapString of all the data members of this topic. The key is the 
  39572.      variable name.  LCP: CountryAttribs 
  39573.      string getDesc() 
  39574.  
  39575.      Get the short description 
  39576.      string getDescLong() 
  39577.  
  39578.      Get the long description 
  39579.      string getDescNative() 
  39580.  
  39581.      Get the native language description 
  39582.      string getNetCode() 
  39583.  
  39584.      Get the internet code for this country 
  39585.  
  39586.  
  39587. ΓòÉΓòÉΓòÉ <hidden> ^ModerateAllText ΓòÉΓòÉΓòÉ
  39588.  
  39589.  
  39590. lyris_Country Class 
  39591.  
  39592.      class lyris_Country 
  39593.  
  39594.      For determining what countries exist, and what languages are spoken & 
  39595.      preferred in each country 
  39596.  
  39597.      Defined in: COUNTRY.H 
  39598.  
  39599.   Create a new country 
  39600.  
  39601.       bool createNew() 
  39602.  
  39603.      Creates a new country/language table row.  LCP: CountryCreate 
  39604.      bool updateDatabase() 
  39605.  
  39606.      Save the current country with the data members that have changed.  LCP: 
  39607.      CountryUpdate 
  39608.      bool VerifyFields() 
  39609.  
  39610.      Verify that all required fields are filled in. 
  39611.  
  39612.   Retrieve data from the database 
  39613.      bool fetchAllCountries(vecString &AllCountries) 
  39614.  
  39615.      Fetch a list of all countries.  LCP: CountryAll 
  39616.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39617.  
  39618.      Fetch a paired list of countries and their native language descriptions, 
  39619.      sorted by english description.  LCP: CountryEngNat 
  39620.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39621.  
  39622.      Fetch a paired list of native language country descriptions, and the 
  39623.      english name of the country. 
  39624.      bool retrieveFromNetCode() 
  39625.  
  39626.      Determine the country that uses the currently set NetCode.  Fills all the 
  39627.      other country attributes with values. LCP: CountryAttNetCode 
  39628.      bool retrieveFromDesc() 
  39629.  
  39630.      Determine the country that uses the currently set description.  Fills all 
  39631.      the other country attributes with values.  LCP: CountryAttribs 
  39632.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39633.  
  39634.      Determine the primary language of the current country.  "Desc" must be 
  39635.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39636.      CountryPrimLang 
  39637.      bool getAllLanguages(vecString &Languages) 
  39638.  
  39639.      Determine all the languages used by the current country.  "Desc" must be 
  39640.      already set.  The result is returned in priority order (highest priority 
  39641.      first) in vecString &Languages.  LCP: CountryLanguages 
  39642.      bool getLanguageList(vecString &Languages) 
  39643.  
  39644.      Get a list of all possible languages, in alphabetical order, returned in 
  39645.      vecString &Languages.  LCP: CountryLangList 
  39646.      bool getLanguageListEngNat(mapString &Languages) 
  39647.  
  39648.      Get a map of all possible languages, their native description in 
  39649.      alphabetical order by english description, returned in in vecString 
  39650.      &Languages.  LCP: CountryLangListEngNat 
  39651.  
  39652.   Delete a country 
  39653.      bool deleteFromDesc() 
  39654.  
  39655.      Delete the country that uses the currently set description.  LCP: 
  39656.      CountryDelete 
  39657.  
  39658.   Set data members 
  39659.      bool setAll(mapString &FieldValues) 
  39660.  
  39661.      Sets all the data members of a topic using the mapString which is passed 
  39662.      to it.  Only the fields present in the mapString are updated, the other 
  39663.      fields are untouched.  LCP: CountryUpdate 
  39664.      bool setDesc(const string &DescSetting) 
  39665.  
  39666.      Set the short description 
  39667.      bool setDescLong(const string &DescLongSetting) 
  39668.  
  39669.      Set the long description 
  39670.      bool setDescNative(const string &DescNativeSetting) 
  39671.  
  39672.      Set the native language description 
  39673.      bool setNetCode(const string &NetCodeSetting) 
  39674.  
  39675.      Set the internet code for this country 
  39676.      bool erase() 
  39677.  
  39678.      Sets all the data members to empty 
  39679.  
  39680.   Get data members 
  39681.      bool getAll(mapString &FieldValues) 
  39682.  
  39683.      Return a mapString of all the data members of this topic. The key is the 
  39684.      variable name.  LCP: CountryAttribs 
  39685.      string getDesc() 
  39686.  
  39687.      Get the short description 
  39688.      string getDescLong() 
  39689.  
  39690.      Get the long description 
  39691.      string getDescNative() 
  39692.  
  39693.      Get the native language description 
  39694.      string getNetCode() 
  39695.  
  39696.      Get the internet code for this country 
  39697.  
  39698.  
  39699. ΓòÉΓòÉΓòÉ <hidden> _Moderate.dbf ΓòÉΓòÉΓòÉ
  39700.  
  39701.  
  39702. lyris_Country Class 
  39703.  
  39704.      class lyris_Country 
  39705.  
  39706.      For determining what countries exist, and what languages are spoken & 
  39707.      preferred in each country 
  39708.  
  39709.      Defined in: COUNTRY.H 
  39710.  
  39711.   Create a new country 
  39712.  
  39713.       bool createNew() 
  39714.  
  39715.      Creates a new country/language table row.  LCP: CountryCreate 
  39716.      bool updateDatabase() 
  39717.  
  39718.      Save the current country with the data members that have changed.  LCP: 
  39719.      CountryUpdate 
  39720.      bool VerifyFields() 
  39721.  
  39722.      Verify that all required fields are filled in. 
  39723.  
  39724.   Retrieve data from the database 
  39725.      bool fetchAllCountries(vecString &AllCountries) 
  39726.  
  39727.      Fetch a list of all countries.  LCP: CountryAll 
  39728.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39729.  
  39730.      Fetch a paired list of countries and their native language descriptions, 
  39731.      sorted by english description.  LCP: CountryEngNat 
  39732.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39733.  
  39734.      Fetch a paired list of native language country descriptions, and the 
  39735.      english name of the country. 
  39736.      bool retrieveFromNetCode() 
  39737.  
  39738.      Determine the country that uses the currently set NetCode.  Fills all the 
  39739.      other country attributes with values. LCP: CountryAttNetCode 
  39740.      bool retrieveFromDesc() 
  39741.  
  39742.      Determine the country that uses the currently set description.  Fills all 
  39743.      the other country attributes with values.  LCP: CountryAttribs 
  39744.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39745.  
  39746.      Determine the primary language of the current country.  "Desc" must be 
  39747.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39748.      CountryPrimLang 
  39749.      bool getAllLanguages(vecString &Languages) 
  39750.  
  39751.      Determine all the languages used by the current country.  "Desc" must be 
  39752.      already set.  The result is returned in priority order (highest priority 
  39753.      first) in vecString &Languages.  LCP: CountryLanguages 
  39754.      bool getLanguageList(vecString &Languages) 
  39755.  
  39756.      Get a list of all possible languages, in alphabetical order, returned in 
  39757.      vecString &Languages.  LCP: CountryLangList 
  39758.      bool getLanguageListEngNat(mapString &Languages) 
  39759.  
  39760.      Get a map of all possible languages, their native description in 
  39761.      alphabetical order by english description, returned in in vecString 
  39762.      &Languages.  LCP: CountryLangListEngNat 
  39763.  
  39764.   Delete a country 
  39765.      bool deleteFromDesc() 
  39766.  
  39767.      Delete the country that uses the currently set description.  LCP: 
  39768.      CountryDelete 
  39769.  
  39770.   Set data members 
  39771.      bool setAll(mapString &FieldValues) 
  39772.  
  39773.      Sets all the data members of a topic using the mapString which is passed 
  39774.      to it.  Only the fields present in the mapString are updated, the other 
  39775.      fields are untouched.  LCP: CountryUpdate 
  39776.      bool setDesc(const string &DescSetting) 
  39777.  
  39778.      Set the short description 
  39779.      bool setDescLong(const string &DescLongSetting) 
  39780.  
  39781.      Set the long description 
  39782.      bool setDescNative(const string &DescNativeSetting) 
  39783.  
  39784.      Set the native language description 
  39785.      bool setNetCode(const string &NetCodeSetting) 
  39786.  
  39787.      Set the internet code for this country 
  39788.      bool erase() 
  39789.  
  39790.      Sets all the data members to empty 
  39791.  
  39792.   Get data members 
  39793.      bool getAll(mapString &FieldValues) 
  39794.  
  39795.      Return a mapString of all the data members of this topic. The key is the 
  39796.      variable name.  LCP: CountryAttribs 
  39797.      string getDesc() 
  39798.  
  39799.      Get the short description 
  39800.      string getDescLong() 
  39801.  
  39802.      Get the long description 
  39803.      string getDescNative() 
  39804.  
  39805.      Get the native language description 
  39806.      string getNetCode() 
  39807.  
  39808.      Get the internet code for this country 
  39809.  
  39810.  
  39811. ΓòÉΓòÉΓòÉ <hidden> `MessageUpdate ΓòÉΓòÉΓòÉ
  39812.  
  39813.  
  39814. lyris_Country Class 
  39815.  
  39816.      class lyris_Country 
  39817.  
  39818.      For determining what countries exist, and what languages are spoken & 
  39819.      preferred in each country 
  39820.  
  39821.      Defined in: COUNTRY.H 
  39822.  
  39823.   Create a new country 
  39824.  
  39825.       bool createNew() 
  39826.  
  39827.      Creates a new country/language table row.  LCP: CountryCreate 
  39828.      bool updateDatabase() 
  39829.  
  39830.      Save the current country with the data members that have changed.  LCP: 
  39831.      CountryUpdate 
  39832.      bool VerifyFields() 
  39833.  
  39834.      Verify that all required fields are filled in. 
  39835.  
  39836.   Retrieve data from the database 
  39837.      bool fetchAllCountries(vecString &AllCountries) 
  39838.  
  39839.      Fetch a list of all countries.  LCP: CountryAll 
  39840.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39841.  
  39842.      Fetch a paired list of countries and their native language descriptions, 
  39843.      sorted by english description.  LCP: CountryEngNat 
  39844.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39845.  
  39846.      Fetch a paired list of native language country descriptions, and the 
  39847.      english name of the country. 
  39848.      bool retrieveFromNetCode() 
  39849.  
  39850.      Determine the country that uses the currently set NetCode.  Fills all the 
  39851.      other country attributes with values. LCP: CountryAttNetCode 
  39852.      bool retrieveFromDesc() 
  39853.  
  39854.      Determine the country that uses the currently set description.  Fills all 
  39855.      the other country attributes with values.  LCP: CountryAttribs 
  39856.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39857.  
  39858.      Determine the primary language of the current country.  "Desc" must be 
  39859.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39860.      CountryPrimLang 
  39861.      bool getAllLanguages(vecString &Languages) 
  39862.  
  39863.      Determine all the languages used by the current country.  "Desc" must be 
  39864.      already set.  The result is returned in priority order (highest priority 
  39865.      first) in vecString &Languages.  LCP: CountryLanguages 
  39866.      bool getLanguageList(vecString &Languages) 
  39867.  
  39868.      Get a list of all possible languages, in alphabetical order, returned in 
  39869.      vecString &Languages.  LCP: CountryLangList 
  39870.      bool getLanguageListEngNat(mapString &Languages) 
  39871.  
  39872.      Get a map of all possible languages, their native description in 
  39873.      alphabetical order by english description, returned in in vecString 
  39874.      &Languages.  LCP: CountryLangListEngNat 
  39875.  
  39876.   Delete a country 
  39877.      bool deleteFromDesc() 
  39878.  
  39879.      Delete the country that uses the currently set description.  LCP: 
  39880.      CountryDelete 
  39881.  
  39882.   Set data members 
  39883.      bool setAll(mapString &FieldValues) 
  39884.  
  39885.      Sets all the data members of a topic using the mapString which is passed 
  39886.      to it.  Only the fields present in the mapString are updated, the other 
  39887.      fields are untouched.  LCP: CountryUpdate 
  39888.      bool setDesc(const string &DescSetting) 
  39889.  
  39890.      Set the short description 
  39891.      bool setDescLong(const string &DescLongSetting) 
  39892.  
  39893.      Set the long description 
  39894.      bool setDescNative(const string &DescNativeSetting) 
  39895.  
  39896.      Set the native language description 
  39897.      bool setNetCode(const string &NetCodeSetting) 
  39898.  
  39899.      Set the internet code for this country 
  39900.      bool erase() 
  39901.  
  39902.      Sets all the data members to empty 
  39903.  
  39904.   Get data members 
  39905.      bool getAll(mapString &FieldValues) 
  39906.  
  39907.      Return a mapString of all the data members of this topic. The key is the 
  39908.      variable name.  LCP: CountryAttribs 
  39909.      string getDesc() 
  39910.  
  39911.      Get the short description 
  39912.      string getDescLong() 
  39913.  
  39914.      Get the long description 
  39915.      string getDescNative() 
  39916.  
  39917.      Get the native language description 
  39918.      string getNetCode() 
  39919.  
  39920.      Get the internet code for this country 
  39921.  
  39922.  
  39923. ΓòÉΓòÉΓòÉ <hidden> aMessages.dbf ΓòÉΓòÉΓòÉ
  39924.  
  39925.  
  39926. lyris_Country Class 
  39927.  
  39928.      class lyris_Country 
  39929.  
  39930.      For determining what countries exist, and what languages are spoken & 
  39931.      preferred in each country 
  39932.  
  39933.      Defined in: COUNTRY.H 
  39934.  
  39935.   Create a new country 
  39936.  
  39937.       bool createNew() 
  39938.  
  39939.      Creates a new country/language table row.  LCP: CountryCreate 
  39940.      bool updateDatabase() 
  39941.  
  39942.      Save the current country with the data members that have changed.  LCP: 
  39943.      CountryUpdate 
  39944.      bool VerifyFields() 
  39945.  
  39946.      Verify that all required fields are filled in. 
  39947.  
  39948.   Retrieve data from the database 
  39949.      bool fetchAllCountries(vecString &AllCountries) 
  39950.  
  39951.      Fetch a list of all countries.  LCP: CountryAll 
  39952.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  39953.  
  39954.      Fetch a paired list of countries and their native language descriptions, 
  39955.      sorted by english description.  LCP: CountryEngNat 
  39956.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  39957.  
  39958.      Fetch a paired list of native language country descriptions, and the 
  39959.      english name of the country. 
  39960.      bool retrieveFromNetCode() 
  39961.  
  39962.      Determine the country that uses the currently set NetCode.  Fills all the 
  39963.      other country attributes with values. LCP: CountryAttNetCode 
  39964.      bool retrieveFromDesc() 
  39965.  
  39966.      Determine the country that uses the currently set description.  Fills all 
  39967.      the other country attributes with values.  LCP: CountryAttribs 
  39968.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  39969.  
  39970.      Determine the primary language of the current country.  "Desc" must be 
  39971.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  39972.      CountryPrimLang 
  39973.      bool getAllLanguages(vecString &Languages) 
  39974.  
  39975.      Determine all the languages used by the current country.  "Desc" must be 
  39976.      already set.  The result is returned in priority order (highest priority 
  39977.      first) in vecString &Languages.  LCP: CountryLanguages 
  39978.      bool getLanguageList(vecString &Languages) 
  39979.  
  39980.      Get a list of all possible languages, in alphabetical order, returned in 
  39981.      vecString &Languages.  LCP: CountryLangList 
  39982.      bool getLanguageListEngNat(mapString &Languages) 
  39983.  
  39984.      Get a map of all possible languages, their native description in 
  39985.      alphabetical order by english description, returned in in vecString 
  39986.      &Languages.  LCP: CountryLangListEngNat 
  39987.  
  39988.   Delete a country 
  39989.      bool deleteFromDesc() 
  39990.  
  39991.      Delete the country that uses the currently set description.  LCP: 
  39992.      CountryDelete 
  39993.  
  39994.   Set data members 
  39995.      bool setAll(mapString &FieldValues) 
  39996.  
  39997.      Sets all the data members of a topic using the mapString which is passed 
  39998.      to it.  Only the fields present in the mapString are updated, the other 
  39999.      fields are untouched.  LCP: CountryUpdate 
  40000.      bool setDesc(const string &DescSetting) 
  40001.  
  40002.      Set the short description 
  40003.      bool setDescLong(const string &DescLongSetting) 
  40004.  
  40005.      Set the long description 
  40006.      bool setDescNative(const string &DescNativeSetting) 
  40007.  
  40008.      Set the native language description 
  40009.      bool setNetCode(const string &NetCodeSetting) 
  40010.  
  40011.      Set the internet code for this country 
  40012.      bool erase() 
  40013.  
  40014.      Sets all the data members to empty 
  40015.  
  40016.   Get data members 
  40017.      bool getAll(mapString &FieldValues) 
  40018.  
  40019.      Return a mapString of all the data members of this topic. The key is the 
  40020.      variable name.  LCP: CountryAttribs 
  40021.      string getDesc() 
  40022.  
  40023.      Get the short description 
  40024.      string getDescLong() 
  40025.  
  40026.      Get the long description 
  40027.      string getDescNative() 
  40028.  
  40029.      Get the native language description 
  40030.      string getNetCode() 
  40031.  
  40032.      Get the internet code for this country 
  40033.  
  40034.  
  40035. ΓòÉΓòÉΓòÉ <hidden> bMessagePreviousText ΓòÉΓòÉΓòÉ
  40036.  
  40037.  
  40038. lyris_Country Class 
  40039.  
  40040.      class lyris_Country 
  40041.  
  40042.      For determining what countries exist, and what languages are spoken & 
  40043.      preferred in each country 
  40044.  
  40045.      Defined in: COUNTRY.H 
  40046.  
  40047.   Create a new country 
  40048.  
  40049.       bool createNew() 
  40050.  
  40051.      Creates a new country/language table row.  LCP: CountryCreate 
  40052.      bool updateDatabase() 
  40053.  
  40054.      Save the current country with the data members that have changed.  LCP: 
  40055.      CountryUpdate 
  40056.      bool VerifyFields() 
  40057.  
  40058.      Verify that all required fields are filled in. 
  40059.  
  40060.   Retrieve data from the database 
  40061.      bool fetchAllCountries(vecString &AllCountries) 
  40062.  
  40063.      Fetch a list of all countries.  LCP: CountryAll 
  40064.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40065.  
  40066.      Fetch a paired list of countries and their native language descriptions, 
  40067.      sorted by english description.  LCP: CountryEngNat 
  40068.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40069.  
  40070.      Fetch a paired list of native language country descriptions, and the 
  40071.      english name of the country. 
  40072.      bool retrieveFromNetCode() 
  40073.  
  40074.      Determine the country that uses the currently set NetCode.  Fills all the 
  40075.      other country attributes with values. LCP: CountryAttNetCode 
  40076.      bool retrieveFromDesc() 
  40077.  
  40078.      Determine the country that uses the currently set description.  Fills all 
  40079.      the other country attributes with values.  LCP: CountryAttribs 
  40080.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40081.  
  40082.      Determine the primary language of the current country.  "Desc" must be 
  40083.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40084.      CountryPrimLang 
  40085.      bool getAllLanguages(vecString &Languages) 
  40086.  
  40087.      Determine all the languages used by the current country.  "Desc" must be 
  40088.      already set.  The result is returned in priority order (highest priority 
  40089.      first) in vecString &Languages.  LCP: CountryLanguages 
  40090.      bool getLanguageList(vecString &Languages) 
  40091.  
  40092.      Get a list of all possible languages, in alphabetical order, returned in 
  40093.      vecString &Languages.  LCP: CountryLangList 
  40094.      bool getLanguageListEngNat(mapString &Languages) 
  40095.  
  40096.      Get a map of all possible languages, their native description in 
  40097.      alphabetical order by english description, returned in in vecString 
  40098.      &Languages.  LCP: CountryLangListEngNat 
  40099.  
  40100.   Delete a country 
  40101.      bool deleteFromDesc() 
  40102.  
  40103.      Delete the country that uses the currently set description.  LCP: 
  40104.      CountryDelete 
  40105.  
  40106.   Set data members 
  40107.      bool setAll(mapString &FieldValues) 
  40108.  
  40109.      Sets all the data members of a topic using the mapString which is passed 
  40110.      to it.  Only the fields present in the mapString are updated, the other 
  40111.      fields are untouched.  LCP: CountryUpdate 
  40112.      bool setDesc(const string &DescSetting) 
  40113.  
  40114.      Set the short description 
  40115.      bool setDescLong(const string &DescLongSetting) 
  40116.  
  40117.      Set the long description 
  40118.      bool setDescNative(const string &DescNativeSetting) 
  40119.  
  40120.      Set the native language description 
  40121.      bool setNetCode(const string &NetCodeSetting) 
  40122.  
  40123.      Set the internet code for this country 
  40124.      bool erase() 
  40125.  
  40126.      Sets all the data members to empty 
  40127.  
  40128.   Get data members 
  40129.      bool getAll(mapString &FieldValues) 
  40130.  
  40131.      Return a mapString of all the data members of this topic. The key is the 
  40132.      variable name.  LCP: CountryAttribs 
  40133.      string getDesc() 
  40134.  
  40135.      Get the short description 
  40136.      string getDescLong() 
  40137.  
  40138.      Get the long description 
  40139.      string getDescNative() 
  40140.  
  40141.      Get the native language description 
  40142.      string getNetCode() 
  40143.  
  40144.      Get the internet code for this country 
  40145.  
  40146.  
  40147. ΓòÉΓòÉΓòÉ <hidden> cMessageNextText ΓòÉΓòÉΓòÉ
  40148.  
  40149.  
  40150. lyris_Country Class 
  40151.  
  40152.      class lyris_Country 
  40153.  
  40154.      For determining what countries exist, and what languages are spoken & 
  40155.      preferred in each country 
  40156.  
  40157.      Defined in: COUNTRY.H 
  40158.  
  40159.   Create a new country 
  40160.  
  40161.       bool createNew() 
  40162.  
  40163.      Creates a new country/language table row.  LCP: CountryCreate 
  40164.      bool updateDatabase() 
  40165.  
  40166.      Save the current country with the data members that have changed.  LCP: 
  40167.      CountryUpdate 
  40168.      bool VerifyFields() 
  40169.  
  40170.      Verify that all required fields are filled in. 
  40171.  
  40172.   Retrieve data from the database 
  40173.      bool fetchAllCountries(vecString &AllCountries) 
  40174.  
  40175.      Fetch a list of all countries.  LCP: CountryAll 
  40176.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40177.  
  40178.      Fetch a paired list of countries and their native language descriptions, 
  40179.      sorted by english description.  LCP: CountryEngNat 
  40180.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40181.  
  40182.      Fetch a paired list of native language country descriptions, and the 
  40183.      english name of the country. 
  40184.      bool retrieveFromNetCode() 
  40185.  
  40186.      Determine the country that uses the currently set NetCode.  Fills all the 
  40187.      other country attributes with values. LCP: CountryAttNetCode 
  40188.      bool retrieveFromDesc() 
  40189.  
  40190.      Determine the country that uses the currently set description.  Fills all 
  40191.      the other country attributes with values.  LCP: CountryAttribs 
  40192.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40193.  
  40194.      Determine the primary language of the current country.  "Desc" must be 
  40195.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40196.      CountryPrimLang 
  40197.      bool getAllLanguages(vecString &Languages) 
  40198.  
  40199.      Determine all the languages used by the current country.  "Desc" must be 
  40200.      already set.  The result is returned in priority order (highest priority 
  40201.      first) in vecString &Languages.  LCP: CountryLanguages 
  40202.      bool getLanguageList(vecString &Languages) 
  40203.  
  40204.      Get a list of all possible languages, in alphabetical order, returned in 
  40205.      vecString &Languages.  LCP: CountryLangList 
  40206.      bool getLanguageListEngNat(mapString &Languages) 
  40207.  
  40208.      Get a map of all possible languages, their native description in 
  40209.      alphabetical order by english description, returned in in vecString 
  40210.      &Languages.  LCP: CountryLangListEngNat 
  40211.  
  40212.   Delete a country 
  40213.      bool deleteFromDesc() 
  40214.  
  40215.      Delete the country that uses the currently set description.  LCP: 
  40216.      CountryDelete 
  40217.  
  40218.   Set data members 
  40219.      bool setAll(mapString &FieldValues) 
  40220.  
  40221.      Sets all the data members of a topic using the mapString which is passed 
  40222.      to it.  Only the fields present in the mapString are updated, the other 
  40223.      fields are untouched.  LCP: CountryUpdate 
  40224.      bool setDesc(const string &DescSetting) 
  40225.  
  40226.      Set the short description 
  40227.      bool setDescLong(const string &DescLongSetting) 
  40228.  
  40229.      Set the long description 
  40230.      bool setDescNative(const string &DescNativeSetting) 
  40231.  
  40232.      Set the native language description 
  40233.      bool setNetCode(const string &NetCodeSetting) 
  40234.  
  40235.      Set the internet code for this country 
  40236.      bool erase() 
  40237.  
  40238.      Sets all the data members to empty 
  40239.  
  40240.   Get data members 
  40241.      bool getAll(mapString &FieldValues) 
  40242.  
  40243.      Return a mapString of all the data members of this topic. The key is the 
  40244.      variable name.  LCP: CountryAttribs 
  40245.      string getDesc() 
  40246.  
  40247.      Get the short description 
  40248.      string getDescLong() 
  40249.  
  40250.      Get the long description 
  40251.      string getDescNative() 
  40252.  
  40253.      Get the native language description 
  40254.      string getNetCode() 
  40255.  
  40256.      Get the internet code for this country 
  40257.  
  40258.  
  40259. ΓòÉΓòÉΓòÉ <hidden> dMessageFromStatus ΓòÉΓòÉΓòÉ
  40260.  
  40261.  
  40262. lyris_Country Class 
  40263.  
  40264.      class lyris_Country 
  40265.  
  40266.      For determining what countries exist, and what languages are spoken & 
  40267.      preferred in each country 
  40268.  
  40269.      Defined in: COUNTRY.H 
  40270.  
  40271.   Create a new country 
  40272.  
  40273.       bool createNew() 
  40274.  
  40275.      Creates a new country/language table row.  LCP: CountryCreate 
  40276.      bool updateDatabase() 
  40277.  
  40278.      Save the current country with the data members that have changed.  LCP: 
  40279.      CountryUpdate 
  40280.      bool VerifyFields() 
  40281.  
  40282.      Verify that all required fields are filled in. 
  40283.  
  40284.   Retrieve data from the database 
  40285.      bool fetchAllCountries(vecString &AllCountries) 
  40286.  
  40287.      Fetch a list of all countries.  LCP: CountryAll 
  40288.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40289.  
  40290.      Fetch a paired list of countries and their native language descriptions, 
  40291.      sorted by english description.  LCP: CountryEngNat 
  40292.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40293.  
  40294.      Fetch a paired list of native language country descriptions, and the 
  40295.      english name of the country. 
  40296.      bool retrieveFromNetCode() 
  40297.  
  40298.      Determine the country that uses the currently set NetCode.  Fills all the 
  40299.      other country attributes with values. LCP: CountryAttNetCode 
  40300.      bool retrieveFromDesc() 
  40301.  
  40302.      Determine the country that uses the currently set description.  Fills all 
  40303.      the other country attributes with values.  LCP: CountryAttribs 
  40304.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40305.  
  40306.      Determine the primary language of the current country.  "Desc" must be 
  40307.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40308.      CountryPrimLang 
  40309.      bool getAllLanguages(vecString &Languages) 
  40310.  
  40311.      Determine all the languages used by the current country.  "Desc" must be 
  40312.      already set.  The result is returned in priority order (highest priority 
  40313.      first) in vecString &Languages.  LCP: CountryLanguages 
  40314.      bool getLanguageList(vecString &Languages) 
  40315.  
  40316.      Get a list of all possible languages, in alphabetical order, returned in 
  40317.      vecString &Languages.  LCP: CountryLangList 
  40318.      bool getLanguageListEngNat(mapString &Languages) 
  40319.  
  40320.      Get a map of all possible languages, their native description in 
  40321.      alphabetical order by english description, returned in in vecString 
  40322.      &Languages.  LCP: CountryLangListEngNat 
  40323.  
  40324.   Delete a country 
  40325.      bool deleteFromDesc() 
  40326.  
  40327.      Delete the country that uses the currently set description.  LCP: 
  40328.      CountryDelete 
  40329.  
  40330.   Set data members 
  40331.      bool setAll(mapString &FieldValues) 
  40332.  
  40333.      Sets all the data members of a topic using the mapString which is passed 
  40334.      to it.  Only the fields present in the mapString are updated, the other 
  40335.      fields are untouched.  LCP: CountryUpdate 
  40336.      bool setDesc(const string &DescSetting) 
  40337.  
  40338.      Set the short description 
  40339.      bool setDescLong(const string &DescLongSetting) 
  40340.  
  40341.      Set the long description 
  40342.      bool setDescNative(const string &DescNativeSetting) 
  40343.  
  40344.      Set the native language description 
  40345.      bool setNetCode(const string &NetCodeSetting) 
  40346.  
  40347.      Set the internet code for this country 
  40348.      bool erase() 
  40349.  
  40350.      Sets all the data members to empty 
  40351.  
  40352.   Get data members 
  40353.      bool getAll(mapString &FieldValues) 
  40354.  
  40355.      Return a mapString of all the data members of this topic. The key is the 
  40356.      variable name.  LCP: CountryAttribs 
  40357.      string getDesc() 
  40358.  
  40359.      Get the short description 
  40360.      string getDescLong() 
  40361.  
  40362.      Get the long description 
  40363.      string getDescNative() 
  40364.  
  40365.      Get the native language description 
  40366.      string getNetCode() 
  40367.  
  40368.      Get the internet code for this country 
  40369.  
  40370.  
  40371. ΓòÉΓòÉΓòÉ <hidden> eMessageFromDate ΓòÉΓòÉΓòÉ
  40372.  
  40373.  
  40374. lyris_Country Class 
  40375.  
  40376.      class lyris_Country 
  40377.  
  40378.      For determining what countries exist, and what languages are spoken & 
  40379.      preferred in each country 
  40380.  
  40381.      Defined in: COUNTRY.H 
  40382.  
  40383.   Create a new country 
  40384.  
  40385.       bool createNew() 
  40386.  
  40387.      Creates a new country/language table row.  LCP: CountryCreate 
  40388.      bool updateDatabase() 
  40389.  
  40390.      Save the current country with the data members that have changed.  LCP: 
  40391.      CountryUpdate 
  40392.      bool VerifyFields() 
  40393.  
  40394.      Verify that all required fields are filled in. 
  40395.  
  40396.   Retrieve data from the database 
  40397.      bool fetchAllCountries(vecString &AllCountries) 
  40398.  
  40399.      Fetch a list of all countries.  LCP: CountryAll 
  40400.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40401.  
  40402.      Fetch a paired list of countries and their native language descriptions, 
  40403.      sorted by english description.  LCP: CountryEngNat 
  40404.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40405.  
  40406.      Fetch a paired list of native language country descriptions, and the 
  40407.      english name of the country. 
  40408.      bool retrieveFromNetCode() 
  40409.  
  40410.      Determine the country that uses the currently set NetCode.  Fills all the 
  40411.      other country attributes with values. LCP: CountryAttNetCode 
  40412.      bool retrieveFromDesc() 
  40413.  
  40414.      Determine the country that uses the currently set description.  Fills all 
  40415.      the other country attributes with values.  LCP: CountryAttribs 
  40416.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40417.  
  40418.      Determine the primary language of the current country.  "Desc" must be 
  40419.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40420.      CountryPrimLang 
  40421.      bool getAllLanguages(vecString &Languages) 
  40422.  
  40423.      Determine all the languages used by the current country.  "Desc" must be 
  40424.      already set.  The result is returned in priority order (highest priority 
  40425.      first) in vecString &Languages.  LCP: CountryLanguages 
  40426.      bool getLanguageList(vecString &Languages) 
  40427.  
  40428.      Get a list of all possible languages, in alphabetical order, returned in 
  40429.      vecString &Languages.  LCP: CountryLangList 
  40430.      bool getLanguageListEngNat(mapString &Languages) 
  40431.  
  40432.      Get a map of all possible languages, their native description in 
  40433.      alphabetical order by english description, returned in in vecString 
  40434.      &Languages.  LCP: CountryLangListEngNat 
  40435.  
  40436.   Delete a country 
  40437.      bool deleteFromDesc() 
  40438.  
  40439.      Delete the country that uses the currently set description.  LCP: 
  40440.      CountryDelete 
  40441.  
  40442.   Set data members 
  40443.      bool setAll(mapString &FieldValues) 
  40444.  
  40445.      Sets all the data members of a topic using the mapString which is passed 
  40446.      to it.  Only the fields present in the mapString are updated, the other 
  40447.      fields are untouched.  LCP: CountryUpdate 
  40448.      bool setDesc(const string &DescSetting) 
  40449.  
  40450.      Set the short description 
  40451.      bool setDescLong(const string &DescLongSetting) 
  40452.  
  40453.      Set the long description 
  40454.      bool setDescNative(const string &DescNativeSetting) 
  40455.  
  40456.      Set the native language description 
  40457.      bool setNetCode(const string &NetCodeSetting) 
  40458.  
  40459.      Set the internet code for this country 
  40460.      bool erase() 
  40461.  
  40462.      Sets all the data members to empty 
  40463.  
  40464.   Get data members 
  40465.      bool getAll(mapString &FieldValues) 
  40466.  
  40467.      Return a mapString of all the data members of this topic. The key is the 
  40468.      variable name.  LCP: CountryAttribs 
  40469.      string getDesc() 
  40470.  
  40471.      Get the short description 
  40472.      string getDescLong() 
  40473.  
  40474.      Get the long description 
  40475.      string getDescNative() 
  40476.  
  40477.      Get the native language description 
  40478.      string getNetCode() 
  40479.  
  40480.      Get the internet code for this country 
  40481.  
  40482.  
  40483. ΓòÉΓòÉΓòÉ <hidden> fMessageFetchSome ΓòÉΓòÉΓòÉ
  40484.  
  40485.  
  40486. lyris_Country Class 
  40487.  
  40488.      class lyris_Country 
  40489.  
  40490.      For determining what countries exist, and what languages are spoken & 
  40491.      preferred in each country 
  40492.  
  40493.      Defined in: COUNTRY.H 
  40494.  
  40495.   Create a new country 
  40496.  
  40497.       bool createNew() 
  40498.  
  40499.      Creates a new country/language table row.  LCP: CountryCreate 
  40500.      bool updateDatabase() 
  40501.  
  40502.      Save the current country with the data members that have changed.  LCP: 
  40503.      CountryUpdate 
  40504.      bool VerifyFields() 
  40505.  
  40506.      Verify that all required fields are filled in. 
  40507.  
  40508.   Retrieve data from the database 
  40509.      bool fetchAllCountries(vecString &AllCountries) 
  40510.  
  40511.      Fetch a list of all countries.  LCP: CountryAll 
  40512.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40513.  
  40514.      Fetch a paired list of countries and their native language descriptions, 
  40515.      sorted by english description.  LCP: CountryEngNat 
  40516.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40517.  
  40518.      Fetch a paired list of native language country descriptions, and the 
  40519.      english name of the country. 
  40520.      bool retrieveFromNetCode() 
  40521.  
  40522.      Determine the country that uses the currently set NetCode.  Fills all the 
  40523.      other country attributes with values. LCP: CountryAttNetCode 
  40524.      bool retrieveFromDesc() 
  40525.  
  40526.      Determine the country that uses the currently set description.  Fills all 
  40527.      the other country attributes with values.  LCP: CountryAttribs 
  40528.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40529.  
  40530.      Determine the primary language of the current country.  "Desc" must be 
  40531.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40532.      CountryPrimLang 
  40533.      bool getAllLanguages(vecString &Languages) 
  40534.  
  40535.      Determine all the languages used by the current country.  "Desc" must be 
  40536.      already set.  The result is returned in priority order (highest priority 
  40537.      first) in vecString &Languages.  LCP: CountryLanguages 
  40538.      bool getLanguageList(vecString &Languages) 
  40539.  
  40540.      Get a list of all possible languages, in alphabetical order, returned in 
  40541.      vecString &Languages.  LCP: CountryLangList 
  40542.      bool getLanguageListEngNat(mapString &Languages) 
  40543.  
  40544.      Get a map of all possible languages, their native description in 
  40545.      alphabetical order by english description, returned in in vecString 
  40546.      &Languages.  LCP: CountryLangListEngNat 
  40547.  
  40548.   Delete a country 
  40549.      bool deleteFromDesc() 
  40550.  
  40551.      Delete the country that uses the currently set description.  LCP: 
  40552.      CountryDelete 
  40553.  
  40554.   Set data members 
  40555.      bool setAll(mapString &FieldValues) 
  40556.  
  40557.      Sets all the data members of a topic using the mapString which is passed 
  40558.      to it.  Only the fields present in the mapString are updated, the other 
  40559.      fields are untouched.  LCP: CountryUpdate 
  40560.      bool setDesc(const string &DescSetting) 
  40561.  
  40562.      Set the short description 
  40563.      bool setDescLong(const string &DescLongSetting) 
  40564.  
  40565.      Set the long description 
  40566.      bool setDescNative(const string &DescNativeSetting) 
  40567.  
  40568.      Set the native language description 
  40569.      bool setNetCode(const string &NetCodeSetting) 
  40570.  
  40571.      Set the internet code for this country 
  40572.      bool erase() 
  40573.  
  40574.      Sets all the data members to empty 
  40575.  
  40576.   Get data members 
  40577.      bool getAll(mapString &FieldValues) 
  40578.  
  40579.      Return a mapString of all the data members of this topic. The key is the 
  40580.      variable name.  LCP: CountryAttribs 
  40581.      string getDesc() 
  40582.  
  40583.      Get the short description 
  40584.      string getDescLong() 
  40585.  
  40586.      Get the long description 
  40587.      string getDescNative() 
  40588.  
  40589.      Get the native language description 
  40590.      string getNetCode() 
  40591.  
  40592.      Get the internet code for this country 
  40593.  
  40594.  
  40595. ΓòÉΓòÉΓòÉ <hidden> gMessageDescripts ΓòÉΓòÉΓòÉ
  40596.  
  40597.  
  40598. lyris_Country Class 
  40599.  
  40600.      class lyris_Country 
  40601.  
  40602.      For determining what countries exist, and what languages are spoken & 
  40603.      preferred in each country 
  40604.  
  40605.      Defined in: COUNTRY.H 
  40606.  
  40607.   Create a new country 
  40608.  
  40609.       bool createNew() 
  40610.  
  40611.      Creates a new country/language table row.  LCP: CountryCreate 
  40612.      bool updateDatabase() 
  40613.  
  40614.      Save the current country with the data members that have changed.  LCP: 
  40615.      CountryUpdate 
  40616.      bool VerifyFields() 
  40617.  
  40618.      Verify that all required fields are filled in. 
  40619.  
  40620.   Retrieve data from the database 
  40621.      bool fetchAllCountries(vecString &AllCountries) 
  40622.  
  40623.      Fetch a list of all countries.  LCP: CountryAll 
  40624.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40625.  
  40626.      Fetch a paired list of countries and their native language descriptions, 
  40627.      sorted by english description.  LCP: CountryEngNat 
  40628.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40629.  
  40630.      Fetch a paired list of native language country descriptions, and the 
  40631.      english name of the country. 
  40632.      bool retrieveFromNetCode() 
  40633.  
  40634.      Determine the country that uses the currently set NetCode.  Fills all the 
  40635.      other country attributes with values. LCP: CountryAttNetCode 
  40636.      bool retrieveFromDesc() 
  40637.  
  40638.      Determine the country that uses the currently set description.  Fills all 
  40639.      the other country attributes with values.  LCP: CountryAttribs 
  40640.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40641.  
  40642.      Determine the primary language of the current country.  "Desc" must be 
  40643.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40644.      CountryPrimLang 
  40645.      bool getAllLanguages(vecString &Languages) 
  40646.  
  40647.      Determine all the languages used by the current country.  "Desc" must be 
  40648.      already set.  The result is returned in priority order (highest priority 
  40649.      first) in vecString &Languages.  LCP: CountryLanguages 
  40650.      bool getLanguageList(vecString &Languages) 
  40651.  
  40652.      Get a list of all possible languages, in alphabetical order, returned in 
  40653.      vecString &Languages.  LCP: CountryLangList 
  40654.      bool getLanguageListEngNat(mapString &Languages) 
  40655.  
  40656.      Get a map of all possible languages, their native description in 
  40657.      alphabetical order by english description, returned in in vecString 
  40658.      &Languages.  LCP: CountryLangListEngNat 
  40659.  
  40660.   Delete a country 
  40661.      bool deleteFromDesc() 
  40662.  
  40663.      Delete the country that uses the currently set description.  LCP: 
  40664.      CountryDelete 
  40665.  
  40666.   Set data members 
  40667.      bool setAll(mapString &FieldValues) 
  40668.  
  40669.      Sets all the data members of a topic using the mapString which is passed 
  40670.      to it.  Only the fields present in the mapString are updated, the other 
  40671.      fields are untouched.  LCP: CountryUpdate 
  40672.      bool setDesc(const string &DescSetting) 
  40673.  
  40674.      Set the short description 
  40675.      bool setDescLong(const string &DescLongSetting) 
  40676.  
  40677.      Set the long description 
  40678.      bool setDescNative(const string &DescNativeSetting) 
  40679.  
  40680.      Set the native language description 
  40681.      bool setNetCode(const string &NetCodeSetting) 
  40682.  
  40683.      Set the internet code for this country 
  40684.      bool erase() 
  40685.  
  40686.      Sets all the data members to empty 
  40687.  
  40688.   Get data members 
  40689.      bool getAll(mapString &FieldValues) 
  40690.  
  40691.      Return a mapString of all the data members of this topic. The key is the 
  40692.      variable name.  LCP: CountryAttribs 
  40693.      string getDesc() 
  40694.  
  40695.      Get the short description 
  40696.      string getDescLong() 
  40697.  
  40698.      Get the long description 
  40699.      string getDescNative() 
  40700.  
  40701.      Get the native language description 
  40702.      string getNetCode() 
  40703.  
  40704.      Get the internet code for this country 
  40705.  
  40706.  
  40707. ΓòÉΓòÉΓòÉ <hidden> hMessageDates ΓòÉΓòÉΓòÉ
  40708.  
  40709.  
  40710. lyris_Country Class 
  40711.  
  40712.      class lyris_Country 
  40713.  
  40714.      For determining what countries exist, and what languages are spoken & 
  40715.      preferred in each country 
  40716.  
  40717.      Defined in: COUNTRY.H 
  40718.  
  40719.   Create a new country 
  40720.  
  40721.       bool createNew() 
  40722.  
  40723.      Creates a new country/language table row.  LCP: CountryCreate 
  40724.      bool updateDatabase() 
  40725.  
  40726.      Save the current country with the data members that have changed.  LCP: 
  40727.      CountryUpdate 
  40728.      bool VerifyFields() 
  40729.  
  40730.      Verify that all required fields are filled in. 
  40731.  
  40732.   Retrieve data from the database 
  40733.      bool fetchAllCountries(vecString &AllCountries) 
  40734.  
  40735.      Fetch a list of all countries.  LCP: CountryAll 
  40736.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40737.  
  40738.      Fetch a paired list of countries and their native language descriptions, 
  40739.      sorted by english description.  LCP: CountryEngNat 
  40740.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40741.  
  40742.      Fetch a paired list of native language country descriptions, and the 
  40743.      english name of the country. 
  40744.      bool retrieveFromNetCode() 
  40745.  
  40746.      Determine the country that uses the currently set NetCode.  Fills all the 
  40747.      other country attributes with values. LCP: CountryAttNetCode 
  40748.      bool retrieveFromDesc() 
  40749.  
  40750.      Determine the country that uses the currently set description.  Fills all 
  40751.      the other country attributes with values.  LCP: CountryAttribs 
  40752.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40753.  
  40754.      Determine the primary language of the current country.  "Desc" must be 
  40755.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40756.      CountryPrimLang 
  40757.      bool getAllLanguages(vecString &Languages) 
  40758.  
  40759.      Determine all the languages used by the current country.  "Desc" must be 
  40760.      already set.  The result is returned in priority order (highest priority 
  40761.      first) in vecString &Languages.  LCP: CountryLanguages 
  40762.      bool getLanguageList(vecString &Languages) 
  40763.  
  40764.      Get a list of all possible languages, in alphabetical order, returned in 
  40765.      vecString &Languages.  LCP: CountryLangList 
  40766.      bool getLanguageListEngNat(mapString &Languages) 
  40767.  
  40768.      Get a map of all possible languages, their native description in 
  40769.      alphabetical order by english description, returned in in vecString 
  40770.      &Languages.  LCP: CountryLangListEngNat 
  40771.  
  40772.   Delete a country 
  40773.      bool deleteFromDesc() 
  40774.  
  40775.      Delete the country that uses the currently set description.  LCP: 
  40776.      CountryDelete 
  40777.  
  40778.   Set data members 
  40779.      bool setAll(mapString &FieldValues) 
  40780.  
  40781.      Sets all the data members of a topic using the mapString which is passed 
  40782.      to it.  Only the fields present in the mapString are updated, the other 
  40783.      fields are untouched.  LCP: CountryUpdate 
  40784.      bool setDesc(const string &DescSetting) 
  40785.  
  40786.      Set the short description 
  40787.      bool setDescLong(const string &DescLongSetting) 
  40788.  
  40789.      Set the long description 
  40790.      bool setDescNative(const string &DescNativeSetting) 
  40791.  
  40792.      Set the native language description 
  40793.      bool setNetCode(const string &NetCodeSetting) 
  40794.  
  40795.      Set the internet code for this country 
  40796.      bool erase() 
  40797.  
  40798.      Sets all the data members to empty 
  40799.  
  40800.   Get data members 
  40801.      bool getAll(mapString &FieldValues) 
  40802.  
  40803.      Return a mapString of all the data members of this topic. The key is the 
  40804.      variable name.  LCP: CountryAttribs 
  40805.      string getDesc() 
  40806.  
  40807.      Get the short description 
  40808.      string getDescLong() 
  40809.  
  40810.      Get the long description 
  40811.      string getDescNative() 
  40812.  
  40813.      Get the native language description 
  40814.      string getNetCode() 
  40815.  
  40816.      Get the internet code for this country 
  40817.  
  40818.  
  40819. ΓòÉΓòÉΓòÉ <hidden> iMessageAttribs ΓòÉΓòÉΓòÉ
  40820.  
  40821.  
  40822. lyris_Country Class 
  40823.  
  40824.      class lyris_Country 
  40825.  
  40826.      For determining what countries exist, and what languages are spoken & 
  40827.      preferred in each country 
  40828.  
  40829.      Defined in: COUNTRY.H 
  40830.  
  40831.   Create a new country 
  40832.  
  40833.       bool createNew() 
  40834.  
  40835.      Creates a new country/language table row.  LCP: CountryCreate 
  40836.      bool updateDatabase() 
  40837.  
  40838.      Save the current country with the data members that have changed.  LCP: 
  40839.      CountryUpdate 
  40840.      bool VerifyFields() 
  40841.  
  40842.      Verify that all required fields are filled in. 
  40843.  
  40844.   Retrieve data from the database 
  40845.      bool fetchAllCountries(vecString &AllCountries) 
  40846.  
  40847.      Fetch a list of all countries.  LCP: CountryAll 
  40848.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40849.  
  40850.      Fetch a paired list of countries and their native language descriptions, 
  40851.      sorted by english description.  LCP: CountryEngNat 
  40852.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40853.  
  40854.      Fetch a paired list of native language country descriptions, and the 
  40855.      english name of the country. 
  40856.      bool retrieveFromNetCode() 
  40857.  
  40858.      Determine the country that uses the currently set NetCode.  Fills all the 
  40859.      other country attributes with values. LCP: CountryAttNetCode 
  40860.      bool retrieveFromDesc() 
  40861.  
  40862.      Determine the country that uses the currently set description.  Fills all 
  40863.      the other country attributes with values.  LCP: CountryAttribs 
  40864.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40865.  
  40866.      Determine the primary language of the current country.  "Desc" must be 
  40867.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40868.      CountryPrimLang 
  40869.      bool getAllLanguages(vecString &Languages) 
  40870.  
  40871.      Determine all the languages used by the current country.  "Desc" must be 
  40872.      already set.  The result is returned in priority order (highest priority 
  40873.      first) in vecString &Languages.  LCP: CountryLanguages 
  40874.      bool getLanguageList(vecString &Languages) 
  40875.  
  40876.      Get a list of all possible languages, in alphabetical order, returned in 
  40877.      vecString &Languages.  LCP: CountryLangList 
  40878.      bool getLanguageListEngNat(mapString &Languages) 
  40879.  
  40880.      Get a map of all possible languages, their native description in 
  40881.      alphabetical order by english description, returned in in vecString 
  40882.      &Languages.  LCP: CountryLangListEngNat 
  40883.  
  40884.   Delete a country 
  40885.      bool deleteFromDesc() 
  40886.  
  40887.      Delete the country that uses the currently set description.  LCP: 
  40888.      CountryDelete 
  40889.  
  40890.   Set data members 
  40891.      bool setAll(mapString &FieldValues) 
  40892.  
  40893.      Sets all the data members of a topic using the mapString which is passed 
  40894.      to it.  Only the fields present in the mapString are updated, the other 
  40895.      fields are untouched.  LCP: CountryUpdate 
  40896.      bool setDesc(const string &DescSetting) 
  40897.  
  40898.      Set the short description 
  40899.      bool setDescLong(const string &DescLongSetting) 
  40900.  
  40901.      Set the long description 
  40902.      bool setDescNative(const string &DescNativeSetting) 
  40903.  
  40904.      Set the native language description 
  40905.      bool setNetCode(const string &NetCodeSetting) 
  40906.  
  40907.      Set the internet code for this country 
  40908.      bool erase() 
  40909.  
  40910.      Sets all the data members to empty 
  40911.  
  40912.   Get data members 
  40913.      bool getAll(mapString &FieldValues) 
  40914.  
  40915.      Return a mapString of all the data members of this topic. The key is the 
  40916.      variable name.  LCP: CountryAttribs 
  40917.      string getDesc() 
  40918.  
  40919.      Get the short description 
  40920.      string getDescLong() 
  40921.  
  40922.      Get the long description 
  40923.      string getDescNative() 
  40924.  
  40925.      Get the native language description 
  40926.      string getNetCode() 
  40927.  
  40928.      Get the internet code for this country 
  40929.  
  40930.  
  40931. ΓòÉΓòÉΓòÉ <hidden> jMemberUpdate ΓòÉΓòÉΓòÉ
  40932.  
  40933.  
  40934. lyris_Country Class 
  40935.  
  40936.      class lyris_Country 
  40937.  
  40938.      For determining what countries exist, and what languages are spoken & 
  40939.      preferred in each country 
  40940.  
  40941.      Defined in: COUNTRY.H 
  40942.  
  40943.   Create a new country 
  40944.  
  40945.       bool createNew() 
  40946.  
  40947.      Creates a new country/language table row.  LCP: CountryCreate 
  40948.      bool updateDatabase() 
  40949.  
  40950.      Save the current country with the data members that have changed.  LCP: 
  40951.      CountryUpdate 
  40952.      bool VerifyFields() 
  40953.  
  40954.      Verify that all required fields are filled in. 
  40955.  
  40956.   Retrieve data from the database 
  40957.      bool fetchAllCountries(vecString &AllCountries) 
  40958.  
  40959.      Fetch a list of all countries.  LCP: CountryAll 
  40960.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  40961.  
  40962.      Fetch a paired list of countries and their native language descriptions, 
  40963.      sorted by english description.  LCP: CountryEngNat 
  40964.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  40965.  
  40966.      Fetch a paired list of native language country descriptions, and the 
  40967.      english name of the country. 
  40968.      bool retrieveFromNetCode() 
  40969.  
  40970.      Determine the country that uses the currently set NetCode.  Fills all the 
  40971.      other country attributes with values. LCP: CountryAttNetCode 
  40972.      bool retrieveFromDesc() 
  40973.  
  40974.      Determine the country that uses the currently set description.  Fills all 
  40975.      the other country attributes with values.  LCP: CountryAttribs 
  40976.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  40977.  
  40978.      Determine the primary language of the current country.  "Desc" must be 
  40979.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  40980.      CountryPrimLang 
  40981.      bool getAllLanguages(vecString &Languages) 
  40982.  
  40983.      Determine all the languages used by the current country.  "Desc" must be 
  40984.      already set.  The result is returned in priority order (highest priority 
  40985.      first) in vecString &Languages.  LCP: CountryLanguages 
  40986.      bool getLanguageList(vecString &Languages) 
  40987.  
  40988.      Get a list of all possible languages, in alphabetical order, returned in 
  40989.      vecString &Languages.  LCP: CountryLangList 
  40990.      bool getLanguageListEngNat(mapString &Languages) 
  40991.  
  40992.      Get a map of all possible languages, their native description in 
  40993.      alphabetical order by english description, returned in in vecString 
  40994.      &Languages.  LCP: CountryLangListEngNat 
  40995.  
  40996.   Delete a country 
  40997.      bool deleteFromDesc() 
  40998.  
  40999.      Delete the country that uses the currently set description.  LCP: 
  41000.      CountryDelete 
  41001.  
  41002.   Set data members 
  41003.      bool setAll(mapString &FieldValues) 
  41004.  
  41005.      Sets all the data members of a topic using the mapString which is passed 
  41006.      to it.  Only the fields present in the mapString are updated, the other 
  41007.      fields are untouched.  LCP: CountryUpdate 
  41008.      bool setDesc(const string &DescSetting) 
  41009.  
  41010.      Set the short description 
  41011.      bool setDescLong(const string &DescLongSetting) 
  41012.  
  41013.      Set the long description 
  41014.      bool setDescNative(const string &DescNativeSetting) 
  41015.  
  41016.      Set the native language description 
  41017.      bool setNetCode(const string &NetCodeSetting) 
  41018.  
  41019.      Set the internet code for this country 
  41020.      bool erase() 
  41021.  
  41022.      Sets all the data members to empty 
  41023.  
  41024.   Get data members 
  41025.      bool getAll(mapString &FieldValues) 
  41026.  
  41027.      Return a mapString of all the data members of this topic. The key is the 
  41028.      variable name.  LCP: CountryAttribs 
  41029.      string getDesc() 
  41030.  
  41031.      Get the short description 
  41032.      string getDescLong() 
  41033.  
  41034.      Get the long description 
  41035.      string getDescNative() 
  41036.  
  41037.      Get the native language description 
  41038.      string getNetCode() 
  41039.  
  41040.      Get the internet code for this country 
  41041.  
  41042.  
  41043. ΓòÉΓòÉΓòÉ <hidden> kMembers ΓòÉΓòÉΓòÉ
  41044.  
  41045.  
  41046. lyris_Country Class 
  41047.  
  41048.      class lyris_Country 
  41049.  
  41050.      For determining what countries exist, and what languages are spoken & 
  41051.      preferred in each country 
  41052.  
  41053.      Defined in: COUNTRY.H 
  41054.  
  41055.   Create a new country 
  41056.  
  41057.       bool createNew() 
  41058.  
  41059.      Creates a new country/language table row.  LCP: CountryCreate 
  41060.      bool updateDatabase() 
  41061.  
  41062.      Save the current country with the data members that have changed.  LCP: 
  41063.      CountryUpdate 
  41064.      bool VerifyFields() 
  41065.  
  41066.      Verify that all required fields are filled in. 
  41067.  
  41068.   Retrieve data from the database 
  41069.      bool fetchAllCountries(vecString &AllCountries) 
  41070.  
  41071.      Fetch a list of all countries.  LCP: CountryAll 
  41072.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41073.  
  41074.      Fetch a paired list of countries and their native language descriptions, 
  41075.      sorted by english description.  LCP: CountryEngNat 
  41076.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41077.  
  41078.      Fetch a paired list of native language country descriptions, and the 
  41079.      english name of the country. 
  41080.      bool retrieveFromNetCode() 
  41081.  
  41082.      Determine the country that uses the currently set NetCode.  Fills all the 
  41083.      other country attributes with values. LCP: CountryAttNetCode 
  41084.      bool retrieveFromDesc() 
  41085.  
  41086.      Determine the country that uses the currently set description.  Fills all 
  41087.      the other country attributes with values.  LCP: CountryAttribs 
  41088.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41089.  
  41090.      Determine the primary language of the current country.  "Desc" must be 
  41091.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41092.      CountryPrimLang 
  41093.      bool getAllLanguages(vecString &Languages) 
  41094.  
  41095.      Determine all the languages used by the current country.  "Desc" must be 
  41096.      already set.  The result is returned in priority order (highest priority 
  41097.      first) in vecString &Languages.  LCP: CountryLanguages 
  41098.      bool getLanguageList(vecString &Languages) 
  41099.  
  41100.      Get a list of all possible languages, in alphabetical order, returned in 
  41101.      vecString &Languages.  LCP: CountryLangList 
  41102.      bool getLanguageListEngNat(mapString &Languages) 
  41103.  
  41104.      Get a map of all possible languages, their native description in 
  41105.      alphabetical order by english description, returned in in vecString 
  41106.      &Languages.  LCP: CountryLangListEngNat 
  41107.  
  41108.   Delete a country 
  41109.      bool deleteFromDesc() 
  41110.  
  41111.      Delete the country that uses the currently set description.  LCP: 
  41112.      CountryDelete 
  41113.  
  41114.   Set data members 
  41115.      bool setAll(mapString &FieldValues) 
  41116.  
  41117.      Sets all the data members of a topic using the mapString which is passed 
  41118.      to it.  Only the fields present in the mapString are updated, the other 
  41119.      fields are untouched.  LCP: CountryUpdate 
  41120.      bool setDesc(const string &DescSetting) 
  41121.  
  41122.      Set the short description 
  41123.      bool setDescLong(const string &DescLongSetting) 
  41124.  
  41125.      Set the long description 
  41126.      bool setDescNative(const string &DescNativeSetting) 
  41127.  
  41128.      Set the native language description 
  41129.      bool setNetCode(const string &NetCodeSetting) 
  41130.  
  41131.      Set the internet code for this country 
  41132.      bool erase() 
  41133.  
  41134.      Sets all the data members to empty 
  41135.  
  41136.   Get data members 
  41137.      bool getAll(mapString &FieldValues) 
  41138.  
  41139.      Return a mapString of all the data members of this topic. The key is the 
  41140.      variable name.  LCP: CountryAttribs 
  41141.      string getDesc() 
  41142.  
  41143.      Get the short description 
  41144.      string getDescLong() 
  41145.  
  41146.      Get the long description 
  41147.      string getDescNative() 
  41148.  
  41149.      Get the native language description 
  41150.      string getNetCode() 
  41151.  
  41152.      Get the internet code for this country 
  41153.  
  41154.  
  41155. ΓòÉΓòÉΓòÉ <hidden> lMemberFromListText ΓòÉΓòÉΓòÉ
  41156.  
  41157.  
  41158. lyris_Country Class 
  41159.  
  41160.      class lyris_Country 
  41161.  
  41162.      For determining what countries exist, and what languages are spoken & 
  41163.      preferred in each country 
  41164.  
  41165.      Defined in: COUNTRY.H 
  41166.  
  41167.   Create a new country 
  41168.  
  41169.       bool createNew() 
  41170.  
  41171.      Creates a new country/language table row.  LCP: CountryCreate 
  41172.      bool updateDatabase() 
  41173.  
  41174.      Save the current country with the data members that have changed.  LCP: 
  41175.      CountryUpdate 
  41176.      bool VerifyFields() 
  41177.  
  41178.      Verify that all required fields are filled in. 
  41179.  
  41180.   Retrieve data from the database 
  41181.      bool fetchAllCountries(vecString &AllCountries) 
  41182.  
  41183.      Fetch a list of all countries.  LCP: CountryAll 
  41184.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41185.  
  41186.      Fetch a paired list of countries and their native language descriptions, 
  41187.      sorted by english description.  LCP: CountryEngNat 
  41188.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41189.  
  41190.      Fetch a paired list of native language country descriptions, and the 
  41191.      english name of the country. 
  41192.      bool retrieveFromNetCode() 
  41193.  
  41194.      Determine the country that uses the currently set NetCode.  Fills all the 
  41195.      other country attributes with values. LCP: CountryAttNetCode 
  41196.      bool retrieveFromDesc() 
  41197.  
  41198.      Determine the country that uses the currently set description.  Fills all 
  41199.      the other country attributes with values.  LCP: CountryAttribs 
  41200.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41201.  
  41202.      Determine the primary language of the current country.  "Desc" must be 
  41203.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41204.      CountryPrimLang 
  41205.      bool getAllLanguages(vecString &Languages) 
  41206.  
  41207.      Determine all the languages used by the current country.  "Desc" must be 
  41208.      already set.  The result is returned in priority order (highest priority 
  41209.      first) in vecString &Languages.  LCP: CountryLanguages 
  41210.      bool getLanguageList(vecString &Languages) 
  41211.  
  41212.      Get a list of all possible languages, in alphabetical order, returned in 
  41213.      vecString &Languages.  LCP: CountryLangList 
  41214.      bool getLanguageListEngNat(mapString &Languages) 
  41215.  
  41216.      Get a map of all possible languages, their native description in 
  41217.      alphabetical order by english description, returned in in vecString 
  41218.      &Languages.  LCP: CountryLangListEngNat 
  41219.  
  41220.   Delete a country 
  41221.      bool deleteFromDesc() 
  41222.  
  41223.      Delete the country that uses the currently set description.  LCP: 
  41224.      CountryDelete 
  41225.  
  41226.   Set data members 
  41227.      bool setAll(mapString &FieldValues) 
  41228.  
  41229.      Sets all the data members of a topic using the mapString which is passed 
  41230.      to it.  Only the fields present in the mapString are updated, the other 
  41231.      fields are untouched.  LCP: CountryUpdate 
  41232.      bool setDesc(const string &DescSetting) 
  41233.  
  41234.      Set the short description 
  41235.      bool setDescLong(const string &DescLongSetting) 
  41236.  
  41237.      Set the long description 
  41238.      bool setDescNative(const string &DescNativeSetting) 
  41239.  
  41240.      Set the native language description 
  41241.      bool setNetCode(const string &NetCodeSetting) 
  41242.  
  41243.      Set the internet code for this country 
  41244.      bool erase() 
  41245.  
  41246.      Sets all the data members to empty 
  41247.  
  41248.   Get data members 
  41249.      bool getAll(mapString &FieldValues) 
  41250.  
  41251.      Return a mapString of all the data members of this topic. The key is the 
  41252.      variable name.  LCP: CountryAttribs 
  41253.      string getDesc() 
  41254.  
  41255.      Get the short description 
  41256.      string getDescLong() 
  41257.  
  41258.      Get the long description 
  41259.      string getDescNative() 
  41260.  
  41261.      Get the native language description 
  41262.      string getNetCode() 
  41263.  
  41264.      Get the internet code for this country 
  41265.  
  41266.  
  41267. ΓòÉΓòÉΓòÉ <hidden> mMemberDelNameList ΓòÉΓòÉΓòÉ
  41268.  
  41269.  
  41270. lyris_Country Class 
  41271.  
  41272.      class lyris_Country 
  41273.  
  41274.      For determining what countries exist, and what languages are spoken & 
  41275.      preferred in each country 
  41276.  
  41277.      Defined in: COUNTRY.H 
  41278.  
  41279.   Create a new country 
  41280.  
  41281.       bool createNew() 
  41282.  
  41283.      Creates a new country/language table row.  LCP: CountryCreate 
  41284.      bool updateDatabase() 
  41285.  
  41286.      Save the current country with the data members that have changed.  LCP: 
  41287.      CountryUpdate 
  41288.      bool VerifyFields() 
  41289.  
  41290.      Verify that all required fields are filled in. 
  41291.  
  41292.   Retrieve data from the database 
  41293.      bool fetchAllCountries(vecString &AllCountries) 
  41294.  
  41295.      Fetch a list of all countries.  LCP: CountryAll 
  41296.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41297.  
  41298.      Fetch a paired list of countries and their native language descriptions, 
  41299.      sorted by english description.  LCP: CountryEngNat 
  41300.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41301.  
  41302.      Fetch a paired list of native language country descriptions, and the 
  41303.      english name of the country. 
  41304.      bool retrieveFromNetCode() 
  41305.  
  41306.      Determine the country that uses the currently set NetCode.  Fills all the 
  41307.      other country attributes with values. LCP: CountryAttNetCode 
  41308.      bool retrieveFromDesc() 
  41309.  
  41310.      Determine the country that uses the currently set description.  Fills all 
  41311.      the other country attributes with values.  LCP: CountryAttribs 
  41312.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41313.  
  41314.      Determine the primary language of the current country.  "Desc" must be 
  41315.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41316.      CountryPrimLang 
  41317.      bool getAllLanguages(vecString &Languages) 
  41318.  
  41319.      Determine all the languages used by the current country.  "Desc" must be 
  41320.      already set.  The result is returned in priority order (highest priority 
  41321.      first) in vecString &Languages.  LCP: CountryLanguages 
  41322.      bool getLanguageList(vecString &Languages) 
  41323.  
  41324.      Get a list of all possible languages, in alphabetical order, returned in 
  41325.      vecString &Languages.  LCP: CountryLangList 
  41326.      bool getLanguageListEngNat(mapString &Languages) 
  41327.  
  41328.      Get a map of all possible languages, their native description in 
  41329.      alphabetical order by english description, returned in in vecString 
  41330.      &Languages.  LCP: CountryLangListEngNat 
  41331.  
  41332.   Delete a country 
  41333.      bool deleteFromDesc() 
  41334.  
  41335.      Delete the country that uses the currently set description.  LCP: 
  41336.      CountryDelete 
  41337.  
  41338.   Set data members 
  41339.      bool setAll(mapString &FieldValues) 
  41340.  
  41341.      Sets all the data members of a topic using the mapString which is passed 
  41342.      to it.  Only the fields present in the mapString are updated, the other 
  41343.      fields are untouched.  LCP: CountryUpdate 
  41344.      bool setDesc(const string &DescSetting) 
  41345.  
  41346.      Set the short description 
  41347.      bool setDescLong(const string &DescLongSetting) 
  41348.  
  41349.      Set the long description 
  41350.      bool setDescNative(const string &DescNativeSetting) 
  41351.  
  41352.      Set the native language description 
  41353.      bool setNetCode(const string &NetCodeSetting) 
  41354.  
  41355.      Set the internet code for this country 
  41356.      bool erase() 
  41357.  
  41358.      Sets all the data members to empty 
  41359.  
  41360.   Get data members 
  41361.      bool getAll(mapString &FieldValues) 
  41362.  
  41363.      Return a mapString of all the data members of this topic. The key is the 
  41364.      variable name.  LCP: CountryAttribs 
  41365.      string getDesc() 
  41366.  
  41367.      Get the short description 
  41368.      string getDescLong() 
  41369.  
  41370.      Get the long description 
  41371.      string getDescNative() 
  41372.  
  41373.      Get the native language description 
  41374.      string getNetCode() 
  41375.  
  41376.      Get the internet code for this country 
  41377.  
  41378.  
  41379. ΓòÉΓòÉΓòÉ <hidden> nMemberDelEmailList ΓòÉΓòÉΓòÉ
  41380.  
  41381.  
  41382. lyris_Country Class 
  41383.  
  41384.      class lyris_Country 
  41385.  
  41386.      For determining what countries exist, and what languages are spoken & 
  41387.      preferred in each country 
  41388.  
  41389.      Defined in: COUNTRY.H 
  41390.  
  41391.   Create a new country 
  41392.  
  41393.       bool createNew() 
  41394.  
  41395.      Creates a new country/language table row.  LCP: CountryCreate 
  41396.      bool updateDatabase() 
  41397.  
  41398.      Save the current country with the data members that have changed.  LCP: 
  41399.      CountryUpdate 
  41400.      bool VerifyFields() 
  41401.  
  41402.      Verify that all required fields are filled in. 
  41403.  
  41404.   Retrieve data from the database 
  41405.      bool fetchAllCountries(vecString &AllCountries) 
  41406.  
  41407.      Fetch a list of all countries.  LCP: CountryAll 
  41408.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41409.  
  41410.      Fetch a paired list of countries and their native language descriptions, 
  41411.      sorted by english description.  LCP: CountryEngNat 
  41412.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41413.  
  41414.      Fetch a paired list of native language country descriptions, and the 
  41415.      english name of the country. 
  41416.      bool retrieveFromNetCode() 
  41417.  
  41418.      Determine the country that uses the currently set NetCode.  Fills all the 
  41419.      other country attributes with values. LCP: CountryAttNetCode 
  41420.      bool retrieveFromDesc() 
  41421.  
  41422.      Determine the country that uses the currently set description.  Fills all 
  41423.      the other country attributes with values.  LCP: CountryAttribs 
  41424.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41425.  
  41426.      Determine the primary language of the current country.  "Desc" must be 
  41427.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41428.      CountryPrimLang 
  41429.      bool getAllLanguages(vecString &Languages) 
  41430.  
  41431.      Determine all the languages used by the current country.  "Desc" must be 
  41432.      already set.  The result is returned in priority order (highest priority 
  41433.      first) in vecString &Languages.  LCP: CountryLanguages 
  41434.      bool getLanguageList(vecString &Languages) 
  41435.  
  41436.      Get a list of all possible languages, in alphabetical order, returned in 
  41437.      vecString &Languages.  LCP: CountryLangList 
  41438.      bool getLanguageListEngNat(mapString &Languages) 
  41439.  
  41440.      Get a map of all possible languages, their native description in 
  41441.      alphabetical order by english description, returned in in vecString 
  41442.      &Languages.  LCP: CountryLangListEngNat 
  41443.  
  41444.   Delete a country 
  41445.      bool deleteFromDesc() 
  41446.  
  41447.      Delete the country that uses the currently set description.  LCP: 
  41448.      CountryDelete 
  41449.  
  41450.   Set data members 
  41451.      bool setAll(mapString &FieldValues) 
  41452.  
  41453.      Sets all the data members of a topic using the mapString which is passed 
  41454.      to it.  Only the fields present in the mapString are updated, the other 
  41455.      fields are untouched.  LCP: CountryUpdate 
  41456.      bool setDesc(const string &DescSetting) 
  41457.  
  41458.      Set the short description 
  41459.      bool setDescLong(const string &DescLongSetting) 
  41460.  
  41461.      Set the long description 
  41462.      bool setDescNative(const string &DescNativeSetting) 
  41463.  
  41464.      Set the native language description 
  41465.      bool setNetCode(const string &NetCodeSetting) 
  41466.  
  41467.      Set the internet code for this country 
  41468.      bool erase() 
  41469.  
  41470.      Sets all the data members to empty 
  41471.  
  41472.   Get data members 
  41473.      bool getAll(mapString &FieldValues) 
  41474.  
  41475.      Return a mapString of all the data members of this topic. The key is the 
  41476.      variable name.  LCP: CountryAttribs 
  41477.      string getDesc() 
  41478.  
  41479.      Get the short description 
  41480.      string getDescLong() 
  41481.  
  41482.      Get the long description 
  41483.      string getDescNative() 
  41484.  
  41485.      Get the native language description 
  41486.      string getNetCode() 
  41487.  
  41488.      Get the internet code for this country 
  41489.  
  41490.  
  41491. ΓòÉΓòÉΓòÉ <hidden> oMemberAttribs ΓòÉΓòÉΓòÉ
  41492.  
  41493.  
  41494. lyris_Country Class 
  41495.  
  41496.      class lyris_Country 
  41497.  
  41498.      For determining what countries exist, and what languages are spoken & 
  41499.      preferred in each country 
  41500.  
  41501.      Defined in: COUNTRY.H 
  41502.  
  41503.   Create a new country 
  41504.  
  41505.       bool createNew() 
  41506.  
  41507.      Creates a new country/language table row.  LCP: CountryCreate 
  41508.      bool updateDatabase() 
  41509.  
  41510.      Save the current country with the data members that have changed.  LCP: 
  41511.      CountryUpdate 
  41512.      bool VerifyFields() 
  41513.  
  41514.      Verify that all required fields are filled in. 
  41515.  
  41516.   Retrieve data from the database 
  41517.      bool fetchAllCountries(vecString &AllCountries) 
  41518.  
  41519.      Fetch a list of all countries.  LCP: CountryAll 
  41520.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41521.  
  41522.      Fetch a paired list of countries and their native language descriptions, 
  41523.      sorted by english description.  LCP: CountryEngNat 
  41524.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41525.  
  41526.      Fetch a paired list of native language country descriptions, and the 
  41527.      english name of the country. 
  41528.      bool retrieveFromNetCode() 
  41529.  
  41530.      Determine the country that uses the currently set NetCode.  Fills all the 
  41531.      other country attributes with values. LCP: CountryAttNetCode 
  41532.      bool retrieveFromDesc() 
  41533.  
  41534.      Determine the country that uses the currently set description.  Fills all 
  41535.      the other country attributes with values.  LCP: CountryAttribs 
  41536.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41537.  
  41538.      Determine the primary language of the current country.  "Desc" must be 
  41539.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41540.      CountryPrimLang 
  41541.      bool getAllLanguages(vecString &Languages) 
  41542.  
  41543.      Determine all the languages used by the current country.  "Desc" must be 
  41544.      already set.  The result is returned in priority order (highest priority 
  41545.      first) in vecString &Languages.  LCP: CountryLanguages 
  41546.      bool getLanguageList(vecString &Languages) 
  41547.  
  41548.      Get a list of all possible languages, in alphabetical order, returned in 
  41549.      vecString &Languages.  LCP: CountryLangList 
  41550.      bool getLanguageListEngNat(mapString &Languages) 
  41551.  
  41552.      Get a map of all possible languages, their native description in 
  41553.      alphabetical order by english description, returned in in vecString 
  41554.      &Languages.  LCP: CountryLangListEngNat 
  41555.  
  41556.   Delete a country 
  41557.      bool deleteFromDesc() 
  41558.  
  41559.      Delete the country that uses the currently set description.  LCP: 
  41560.      CountryDelete 
  41561.  
  41562.   Set data members 
  41563.      bool setAll(mapString &FieldValues) 
  41564.  
  41565.      Sets all the data members of a topic using the mapString which is passed 
  41566.      to it.  Only the fields present in the mapString are updated, the other 
  41567.      fields are untouched.  LCP: CountryUpdate 
  41568.      bool setDesc(const string &DescSetting) 
  41569.  
  41570.      Set the short description 
  41571.      bool setDescLong(const string &DescLongSetting) 
  41572.  
  41573.      Set the long description 
  41574.      bool setDescNative(const string &DescNativeSetting) 
  41575.  
  41576.      Set the native language description 
  41577.      bool setNetCode(const string &NetCodeSetting) 
  41578.  
  41579.      Set the internet code for this country 
  41580.      bool erase() 
  41581.  
  41582.      Sets all the data members to empty 
  41583.  
  41584.   Get data members 
  41585.      bool getAll(mapString &FieldValues) 
  41586.  
  41587.      Return a mapString of all the data members of this topic. The key is the 
  41588.      variable name.  LCP: CountryAttribs 
  41589.      string getDesc() 
  41590.  
  41591.      Get the short description 
  41592.      string getDescLong() 
  41593.  
  41594.      Get the long description 
  41595.      string getDescNative() 
  41596.  
  41597.      Get the native language description 
  41598.      string getNetCode() 
  41599.  
  41600.      Get the internet code for this country 
  41601.  
  41602.  
  41603. ΓòÉΓòÉΓòÉ <hidden> pMemberAttEmailList ΓòÉΓòÉΓòÉ
  41604.  
  41605.  
  41606. lyris_Country Class 
  41607.  
  41608.      class lyris_Country 
  41609.  
  41610.      For determining what countries exist, and what languages are spoken & 
  41611.      preferred in each country 
  41612.  
  41613.      Defined in: COUNTRY.H 
  41614.  
  41615.   Create a new country 
  41616.  
  41617.       bool createNew() 
  41618.  
  41619.      Creates a new country/language table row.  LCP: CountryCreate 
  41620.      bool updateDatabase() 
  41621.  
  41622.      Save the current country with the data members that have changed.  LCP: 
  41623.      CountryUpdate 
  41624.      bool VerifyFields() 
  41625.  
  41626.      Verify that all required fields are filled in. 
  41627.  
  41628.   Retrieve data from the database 
  41629.      bool fetchAllCountries(vecString &AllCountries) 
  41630.  
  41631.      Fetch a list of all countries.  LCP: CountryAll 
  41632.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41633.  
  41634.      Fetch a paired list of countries and their native language descriptions, 
  41635.      sorted by english description.  LCP: CountryEngNat 
  41636.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41637.  
  41638.      Fetch a paired list of native language country descriptions, and the 
  41639.      english name of the country. 
  41640.      bool retrieveFromNetCode() 
  41641.  
  41642.      Determine the country that uses the currently set NetCode.  Fills all the 
  41643.      other country attributes with values. LCP: CountryAttNetCode 
  41644.      bool retrieveFromDesc() 
  41645.  
  41646.      Determine the country that uses the currently set description.  Fills all 
  41647.      the other country attributes with values.  LCP: CountryAttribs 
  41648.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41649.  
  41650.      Determine the primary language of the current country.  "Desc" must be 
  41651.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41652.      CountryPrimLang 
  41653.      bool getAllLanguages(vecString &Languages) 
  41654.  
  41655.      Determine all the languages used by the current country.  "Desc" must be 
  41656.      already set.  The result is returned in priority order (highest priority 
  41657.      first) in vecString &Languages.  LCP: CountryLanguages 
  41658.      bool getLanguageList(vecString &Languages) 
  41659.  
  41660.      Get a list of all possible languages, in alphabetical order, returned in 
  41661.      vecString &Languages.  LCP: CountryLangList 
  41662.      bool getLanguageListEngNat(mapString &Languages) 
  41663.  
  41664.      Get a map of all possible languages, their native description in 
  41665.      alphabetical order by english description, returned in in vecString 
  41666.      &Languages.  LCP: CountryLangListEngNat 
  41667.  
  41668.   Delete a country 
  41669.      bool deleteFromDesc() 
  41670.  
  41671.      Delete the country that uses the currently set description.  LCP: 
  41672.      CountryDelete 
  41673.  
  41674.   Set data members 
  41675.      bool setAll(mapString &FieldValues) 
  41676.  
  41677.      Sets all the data members of a topic using the mapString which is passed 
  41678.      to it.  Only the fields present in the mapString are updated, the other 
  41679.      fields are untouched.  LCP: CountryUpdate 
  41680.      bool setDesc(const string &DescSetting) 
  41681.  
  41682.      Set the short description 
  41683.      bool setDescLong(const string &DescLongSetting) 
  41684.  
  41685.      Set the long description 
  41686.      bool setDescNative(const string &DescNativeSetting) 
  41687.  
  41688.      Set the native language description 
  41689.      bool setNetCode(const string &NetCodeSetting) 
  41690.  
  41691.      Set the internet code for this country 
  41692.      bool erase() 
  41693.  
  41694.      Sets all the data members to empty 
  41695.  
  41696.   Get data members 
  41697.      bool getAll(mapString &FieldValues) 
  41698.  
  41699.      Return a mapString of all the data members of this topic. The key is the 
  41700.      variable name.  LCP: CountryAttribs 
  41701.      string getDesc() 
  41702.  
  41703.      Get the short description 
  41704.      string getDescLong() 
  41705.  
  41706.      Get the long description 
  41707.      string getDescNative() 
  41708.  
  41709.      Get the native language description 
  41710.      string getNetCode() 
  41711.  
  41712.      Get the internet code for this country 
  41713.  
  41714.  
  41715. ΓòÉΓòÉΓòÉ <hidden> qMemberAllNameEmail ΓòÉΓòÉΓòÉ
  41716.  
  41717.  
  41718. lyris_Country Class 
  41719.  
  41720.      class lyris_Country 
  41721.  
  41722.      For determining what countries exist, and what languages are spoken & 
  41723.      preferred in each country 
  41724.  
  41725.      Defined in: COUNTRY.H 
  41726.  
  41727.   Create a new country 
  41728.  
  41729.       bool createNew() 
  41730.  
  41731.      Creates a new country/language table row.  LCP: CountryCreate 
  41732.      bool updateDatabase() 
  41733.  
  41734.      Save the current country with the data members that have changed.  LCP: 
  41735.      CountryUpdate 
  41736.      bool VerifyFields() 
  41737.  
  41738.      Verify that all required fields are filled in. 
  41739.  
  41740.   Retrieve data from the database 
  41741.      bool fetchAllCountries(vecString &AllCountries) 
  41742.  
  41743.      Fetch a list of all countries.  LCP: CountryAll 
  41744.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41745.  
  41746.      Fetch a paired list of countries and their native language descriptions, 
  41747.      sorted by english description.  LCP: CountryEngNat 
  41748.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41749.  
  41750.      Fetch a paired list of native language country descriptions, and the 
  41751.      english name of the country. 
  41752.      bool retrieveFromNetCode() 
  41753.  
  41754.      Determine the country that uses the currently set NetCode.  Fills all the 
  41755.      other country attributes with values. LCP: CountryAttNetCode 
  41756.      bool retrieveFromDesc() 
  41757.  
  41758.      Determine the country that uses the currently set description.  Fills all 
  41759.      the other country attributes with values.  LCP: CountryAttribs 
  41760.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41761.  
  41762.      Determine the primary language of the current country.  "Desc" must be 
  41763.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41764.      CountryPrimLang 
  41765.      bool getAllLanguages(vecString &Languages) 
  41766.  
  41767.      Determine all the languages used by the current country.  "Desc" must be 
  41768.      already set.  The result is returned in priority order (highest priority 
  41769.      first) in vecString &Languages.  LCP: CountryLanguages 
  41770.      bool getLanguageList(vecString &Languages) 
  41771.  
  41772.      Get a list of all possible languages, in alphabetical order, returned in 
  41773.      vecString &Languages.  LCP: CountryLangList 
  41774.      bool getLanguageListEngNat(mapString &Languages) 
  41775.  
  41776.      Get a map of all possible languages, their native description in 
  41777.      alphabetical order by english description, returned in in vecString 
  41778.      &Languages.  LCP: CountryLangListEngNat 
  41779.  
  41780.   Delete a country 
  41781.      bool deleteFromDesc() 
  41782.  
  41783.      Delete the country that uses the currently set description.  LCP: 
  41784.      CountryDelete 
  41785.  
  41786.   Set data members 
  41787.      bool setAll(mapString &FieldValues) 
  41788.  
  41789.      Sets all the data members of a topic using the mapString which is passed 
  41790.      to it.  Only the fields present in the mapString are updated, the other 
  41791.      fields are untouched.  LCP: CountryUpdate 
  41792.      bool setDesc(const string &DescSetting) 
  41793.  
  41794.      Set the short description 
  41795.      bool setDescLong(const string &DescLongSetting) 
  41796.  
  41797.      Set the long description 
  41798.      bool setDescNative(const string &DescNativeSetting) 
  41799.  
  41800.      Set the native language description 
  41801.      bool setNetCode(const string &NetCodeSetting) 
  41802.  
  41803.      Set the internet code for this country 
  41804.      bool erase() 
  41805.  
  41806.      Sets all the data members to empty 
  41807.  
  41808.   Get data members 
  41809.      bool getAll(mapString &FieldValues) 
  41810.  
  41811.      Return a mapString of all the data members of this topic. The key is the 
  41812.      variable name.  LCP: CountryAttribs 
  41813.      string getDesc() 
  41814.  
  41815.      Get the short description 
  41816.      string getDescLong() 
  41817.  
  41818.      Get the long description 
  41819.      string getDescNative() 
  41820.  
  41821.      Get the native language description 
  41822.      string getNetCode() 
  41823.  
  41824.      Get the internet code for this country 
  41825.  
  41826.  
  41827. ΓòÉΓòÉΓòÉ <hidden> rMailing lists ΓòÉΓòÉΓòÉ
  41828.  
  41829.  
  41830. lyris_Country Class 
  41831.  
  41832.      class lyris_Country 
  41833.  
  41834.      For determining what countries exist, and what languages are spoken & 
  41835.      preferred in each country 
  41836.  
  41837.      Defined in: COUNTRY.H 
  41838.  
  41839.   Create a new country 
  41840.  
  41841.       bool createNew() 
  41842.  
  41843.      Creates a new country/language table row.  LCP: CountryCreate 
  41844.      bool updateDatabase() 
  41845.  
  41846.      Save the current country with the data members that have changed.  LCP: 
  41847.      CountryUpdate 
  41848.      bool VerifyFields() 
  41849.  
  41850.      Verify that all required fields are filled in. 
  41851.  
  41852.   Retrieve data from the database 
  41853.      bool fetchAllCountries(vecString &AllCountries) 
  41854.  
  41855.      Fetch a list of all countries.  LCP: CountryAll 
  41856.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41857.  
  41858.      Fetch a paired list of countries and their native language descriptions, 
  41859.      sorted by english description.  LCP: CountryEngNat 
  41860.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41861.  
  41862.      Fetch a paired list of native language country descriptions, and the 
  41863.      english name of the country. 
  41864.      bool retrieveFromNetCode() 
  41865.  
  41866.      Determine the country that uses the currently set NetCode.  Fills all the 
  41867.      other country attributes with values. LCP: CountryAttNetCode 
  41868.      bool retrieveFromDesc() 
  41869.  
  41870.      Determine the country that uses the currently set description.  Fills all 
  41871.      the other country attributes with values.  LCP: CountryAttribs 
  41872.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41873.  
  41874.      Determine the primary language of the current country.  "Desc" must be 
  41875.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41876.      CountryPrimLang 
  41877.      bool getAllLanguages(vecString &Languages) 
  41878.  
  41879.      Determine all the languages used by the current country.  "Desc" must be 
  41880.      already set.  The result is returned in priority order (highest priority 
  41881.      first) in vecString &Languages.  LCP: CountryLanguages 
  41882.      bool getLanguageList(vecString &Languages) 
  41883.  
  41884.      Get a list of all possible languages, in alphabetical order, returned in 
  41885.      vecString &Languages.  LCP: CountryLangList 
  41886.      bool getLanguageListEngNat(mapString &Languages) 
  41887.  
  41888.      Get a map of all possible languages, their native description in 
  41889.      alphabetical order by english description, returned in in vecString 
  41890.      &Languages.  LCP: CountryLangListEngNat 
  41891.  
  41892.   Delete a country 
  41893.      bool deleteFromDesc() 
  41894.  
  41895.      Delete the country that uses the currently set description.  LCP: 
  41896.      CountryDelete 
  41897.  
  41898.   Set data members 
  41899.      bool setAll(mapString &FieldValues) 
  41900.  
  41901.      Sets all the data members of a topic using the mapString which is passed 
  41902.      to it.  Only the fields present in the mapString are updated, the other 
  41903.      fields are untouched.  LCP: CountryUpdate 
  41904.      bool setDesc(const string &DescSetting) 
  41905.  
  41906.      Set the short description 
  41907.      bool setDescLong(const string &DescLongSetting) 
  41908.  
  41909.      Set the long description 
  41910.      bool setDescNative(const string &DescNativeSetting) 
  41911.  
  41912.      Set the native language description 
  41913.      bool setNetCode(const string &NetCodeSetting) 
  41914.  
  41915.      Set the internet code for this country 
  41916.      bool erase() 
  41917.  
  41918.      Sets all the data members to empty 
  41919.  
  41920.   Get data members 
  41921.      bool getAll(mapString &FieldValues) 
  41922.  
  41923.      Return a mapString of all the data members of this topic. The key is the 
  41924.      variable name.  LCP: CountryAttribs 
  41925.      string getDesc() 
  41926.  
  41927.      Get the short description 
  41928.      string getDescLong() 
  41929.  
  41930.      Get the long description 
  41931.      string getDescNative() 
  41932.  
  41933.      Get the native language description 
  41934.      string getNetCode() 
  41935.  
  41936.      Get the internet code for this country 
  41937.  
  41938.  
  41939. ΓòÉΓòÉΓòÉ <hidden> sLogMinMax ΓòÉΓòÉΓòÉ
  41940.  
  41941.  
  41942. lyris_Country Class 
  41943.  
  41944.      class lyris_Country 
  41945.  
  41946.      For determining what countries exist, and what languages are spoken & 
  41947.      preferred in each country 
  41948.  
  41949.      Defined in: COUNTRY.H 
  41950.  
  41951.   Create a new country 
  41952.  
  41953.       bool createNew() 
  41954.  
  41955.      Creates a new country/language table row.  LCP: CountryCreate 
  41956.      bool updateDatabase() 
  41957.  
  41958.      Save the current country with the data members that have changed.  LCP: 
  41959.      CountryUpdate 
  41960.      bool VerifyFields() 
  41961.  
  41962.      Verify that all required fields are filled in. 
  41963.  
  41964.   Retrieve data from the database 
  41965.      bool fetchAllCountries(vecString &AllCountries) 
  41966.  
  41967.      Fetch a list of all countries.  LCP: CountryAll 
  41968.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  41969.  
  41970.      Fetch a paired list of countries and their native language descriptions, 
  41971.      sorted by english description.  LCP: CountryEngNat 
  41972.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  41973.  
  41974.      Fetch a paired list of native language country descriptions, and the 
  41975.      english name of the country. 
  41976.      bool retrieveFromNetCode() 
  41977.  
  41978.      Determine the country that uses the currently set NetCode.  Fills all the 
  41979.      other country attributes with values. LCP: CountryAttNetCode 
  41980.      bool retrieveFromDesc() 
  41981.  
  41982.      Determine the country that uses the currently set description.  Fills all 
  41983.      the other country attributes with values.  LCP: CountryAttribs 
  41984.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  41985.  
  41986.      Determine the primary language of the current country.  "Desc" must be 
  41987.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  41988.      CountryPrimLang 
  41989.      bool getAllLanguages(vecString &Languages) 
  41990.  
  41991.      Determine all the languages used by the current country.  "Desc" must be 
  41992.      already set.  The result is returned in priority order (highest priority 
  41993.      first) in vecString &Languages.  LCP: CountryLanguages 
  41994.      bool getLanguageList(vecString &Languages) 
  41995.  
  41996.      Get a list of all possible languages, in alphabetical order, returned in 
  41997.      vecString &Languages.  LCP: CountryLangList 
  41998.      bool getLanguageListEngNat(mapString &Languages) 
  41999.  
  42000.      Get a map of all possible languages, their native description in 
  42001.      alphabetical order by english description, returned in in vecString 
  42002.      &Languages.  LCP: CountryLangListEngNat 
  42003.  
  42004.   Delete a country 
  42005.      bool deleteFromDesc() 
  42006.  
  42007.      Delete the country that uses the currently set description.  LCP: 
  42008.      CountryDelete 
  42009.  
  42010.   Set data members 
  42011.      bool setAll(mapString &FieldValues) 
  42012.  
  42013.      Sets all the data members of a topic using the mapString which is passed 
  42014.      to it.  Only the fields present in the mapString are updated, the other 
  42015.      fields are untouched.  LCP: CountryUpdate 
  42016.      bool setDesc(const string &DescSetting) 
  42017.  
  42018.      Set the short description 
  42019.      bool setDescLong(const string &DescLongSetting) 
  42020.  
  42021.      Set the long description 
  42022.      bool setDescNative(const string &DescNativeSetting) 
  42023.  
  42024.      Set the native language description 
  42025.      bool setNetCode(const string &NetCodeSetting) 
  42026.  
  42027.      Set the internet code for this country 
  42028.      bool erase() 
  42029.  
  42030.      Sets all the data members to empty 
  42031.  
  42032.   Get data members 
  42033.      bool getAll(mapString &FieldValues) 
  42034.  
  42035.      Return a mapString of all the data members of this topic. The key is the 
  42036.      variable name.  LCP: CountryAttribs 
  42037.      string getDesc() 
  42038.  
  42039.      Get the short description 
  42040.      string getDescLong() 
  42041.  
  42042.      Get the long description 
  42043.      string getDescNative() 
  42044.  
  42045.      Get the native language description 
  42046.      string getNetCode() 
  42047.  
  42048.      Get the internet code for this country 
  42049.  
  42050.  
  42051. ΓòÉΓòÉΓòÉ <hidden> tLogFromSource ΓòÉΓòÉΓòÉ
  42052.  
  42053.  
  42054. lyris_Country Class 
  42055.  
  42056.      class lyris_Country 
  42057.  
  42058.      For determining what countries exist, and what languages are spoken & 
  42059.      preferred in each country 
  42060.  
  42061.      Defined in: COUNTRY.H 
  42062.  
  42063.   Create a new country 
  42064.  
  42065.       bool createNew() 
  42066.  
  42067.      Creates a new country/language table row.  LCP: CountryCreate 
  42068.      bool updateDatabase() 
  42069.  
  42070.      Save the current country with the data members that have changed.  LCP: 
  42071.      CountryUpdate 
  42072.      bool VerifyFields() 
  42073.  
  42074.      Verify that all required fields are filled in. 
  42075.  
  42076.   Retrieve data from the database 
  42077.      bool fetchAllCountries(vecString &AllCountries) 
  42078.  
  42079.      Fetch a list of all countries.  LCP: CountryAll 
  42080.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42081.  
  42082.      Fetch a paired list of countries and their native language descriptions, 
  42083.      sorted by english description.  LCP: CountryEngNat 
  42084.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42085.  
  42086.      Fetch a paired list of native language country descriptions, and the 
  42087.      english name of the country. 
  42088.      bool retrieveFromNetCode() 
  42089.  
  42090.      Determine the country that uses the currently set NetCode.  Fills all the 
  42091.      other country attributes with values. LCP: CountryAttNetCode 
  42092.      bool retrieveFromDesc() 
  42093.  
  42094.      Determine the country that uses the currently set description.  Fills all 
  42095.      the other country attributes with values.  LCP: CountryAttribs 
  42096.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42097.  
  42098.      Determine the primary language of the current country.  "Desc" must be 
  42099.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42100.      CountryPrimLang 
  42101.      bool getAllLanguages(vecString &Languages) 
  42102.  
  42103.      Determine all the languages used by the current country.  "Desc" must be 
  42104.      already set.  The result is returned in priority order (highest priority 
  42105.      first) in vecString &Languages.  LCP: CountryLanguages 
  42106.      bool getLanguageList(vecString &Languages) 
  42107.  
  42108.      Get a list of all possible languages, in alphabetical order, returned in 
  42109.      vecString &Languages.  LCP: CountryLangList 
  42110.      bool getLanguageListEngNat(mapString &Languages) 
  42111.  
  42112.      Get a map of all possible languages, their native description in 
  42113.      alphabetical order by english description, returned in in vecString 
  42114.      &Languages.  LCP: CountryLangListEngNat 
  42115.  
  42116.   Delete a country 
  42117.      bool deleteFromDesc() 
  42118.  
  42119.      Delete the country that uses the currently set description.  LCP: 
  42120.      CountryDelete 
  42121.  
  42122.   Set data members 
  42123.      bool setAll(mapString &FieldValues) 
  42124.  
  42125.      Sets all the data members of a topic using the mapString which is passed 
  42126.      to it.  Only the fields present in the mapString are updated, the other 
  42127.      fields are untouched.  LCP: CountryUpdate 
  42128.      bool setDesc(const string &DescSetting) 
  42129.  
  42130.      Set the short description 
  42131.      bool setDescLong(const string &DescLongSetting) 
  42132.  
  42133.      Set the long description 
  42134.      bool setDescNative(const string &DescNativeSetting) 
  42135.  
  42136.      Set the native language description 
  42137.      bool setNetCode(const string &NetCodeSetting) 
  42138.  
  42139.      Set the internet code for this country 
  42140.      bool erase() 
  42141.  
  42142.      Sets all the data members to empty 
  42143.  
  42144.   Get data members 
  42145.      bool getAll(mapString &FieldValues) 
  42146.  
  42147.      Return a mapString of all the data members of this topic. The key is the 
  42148.      variable name.  LCP: CountryAttribs 
  42149.      string getDesc() 
  42150.  
  42151.      Get the short description 
  42152.      string getDescLong() 
  42153.  
  42154.      Get the long description 
  42155.      string getDescNative() 
  42156.  
  42157.      Get the native language description 
  42158.      string getNetCode() 
  42159.  
  42160.      Get the internet code for this country 
  42161.  
  42162.  
  42163. ΓòÉΓòÉΓòÉ <hidden> uLogFromReferer ΓòÉΓòÉΓòÉ
  42164.  
  42165.  
  42166. lyris_Country Class 
  42167.  
  42168.      class lyris_Country 
  42169.  
  42170.      For determining what countries exist, and what languages are spoken & 
  42171.      preferred in each country 
  42172.  
  42173.      Defined in: COUNTRY.H 
  42174.  
  42175.   Create a new country 
  42176.  
  42177.       bool createNew() 
  42178.  
  42179.      Creates a new country/language table row.  LCP: CountryCreate 
  42180.      bool updateDatabase() 
  42181.  
  42182.      Save the current country with the data members that have changed.  LCP: 
  42183.      CountryUpdate 
  42184.      bool VerifyFields() 
  42185.  
  42186.      Verify that all required fields are filled in. 
  42187.  
  42188.   Retrieve data from the database 
  42189.      bool fetchAllCountries(vecString &AllCountries) 
  42190.  
  42191.      Fetch a list of all countries.  LCP: CountryAll 
  42192.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42193.  
  42194.      Fetch a paired list of countries and their native language descriptions, 
  42195.      sorted by english description.  LCP: CountryEngNat 
  42196.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42197.  
  42198.      Fetch a paired list of native language country descriptions, and the 
  42199.      english name of the country. 
  42200.      bool retrieveFromNetCode() 
  42201.  
  42202.      Determine the country that uses the currently set NetCode.  Fills all the 
  42203.      other country attributes with values. LCP: CountryAttNetCode 
  42204.      bool retrieveFromDesc() 
  42205.  
  42206.      Determine the country that uses the currently set description.  Fills all 
  42207.      the other country attributes with values.  LCP: CountryAttribs 
  42208.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42209.  
  42210.      Determine the primary language of the current country.  "Desc" must be 
  42211.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42212.      CountryPrimLang 
  42213.      bool getAllLanguages(vecString &Languages) 
  42214.  
  42215.      Determine all the languages used by the current country.  "Desc" must be 
  42216.      already set.  The result is returned in priority order (highest priority 
  42217.      first) in vecString &Languages.  LCP: CountryLanguages 
  42218.      bool getLanguageList(vecString &Languages) 
  42219.  
  42220.      Get a list of all possible languages, in alphabetical order, returned in 
  42221.      vecString &Languages.  LCP: CountryLangList 
  42222.      bool getLanguageListEngNat(mapString &Languages) 
  42223.  
  42224.      Get a map of all possible languages, their native description in 
  42225.      alphabetical order by english description, returned in in vecString 
  42226.      &Languages.  LCP: CountryLangListEngNat 
  42227.  
  42228.   Delete a country 
  42229.      bool deleteFromDesc() 
  42230.  
  42231.      Delete the country that uses the currently set description.  LCP: 
  42232.      CountryDelete 
  42233.  
  42234.   Set data members 
  42235.      bool setAll(mapString &FieldValues) 
  42236.  
  42237.      Sets all the data members of a topic using the mapString which is passed 
  42238.      to it.  Only the fields present in the mapString are updated, the other 
  42239.      fields are untouched.  LCP: CountryUpdate 
  42240.      bool setDesc(const string &DescSetting) 
  42241.  
  42242.      Set the short description 
  42243.      bool setDescLong(const string &DescLongSetting) 
  42244.  
  42245.      Set the long description 
  42246.      bool setDescNative(const string &DescNativeSetting) 
  42247.  
  42248.      Set the native language description 
  42249.      bool setNetCode(const string &NetCodeSetting) 
  42250.  
  42251.      Set the internet code for this country 
  42252.      bool erase() 
  42253.  
  42254.      Sets all the data members to empty 
  42255.  
  42256.   Get data members 
  42257.      bool getAll(mapString &FieldValues) 
  42258.  
  42259.      Return a mapString of all the data members of this topic. The key is the 
  42260.      variable name.  LCP: CountryAttribs 
  42261.      string getDesc() 
  42262.  
  42263.      Get the short description 
  42264.      string getDescLong() 
  42265.  
  42266.      Get the long description 
  42267.      string getDescNative() 
  42268.  
  42269.      Get the native language description 
  42270.      string getNetCode() 
  42271.  
  42272.      Get the internet code for this country 
  42273.  
  42274.  
  42275. ΓòÉΓòÉΓòÉ <hidden> vLogDelete ΓòÉΓòÉΓòÉ
  42276.  
  42277.  
  42278. lyris_Country Class 
  42279.  
  42280.      class lyris_Country 
  42281.  
  42282.      For determining what countries exist, and what languages are spoken & 
  42283.      preferred in each country 
  42284.  
  42285.      Defined in: COUNTRY.H 
  42286.  
  42287.   Create a new country 
  42288.  
  42289.       bool createNew() 
  42290.  
  42291.      Creates a new country/language table row.  LCP: CountryCreate 
  42292.      bool updateDatabase() 
  42293.  
  42294.      Save the current country with the data members that have changed.  LCP: 
  42295.      CountryUpdate 
  42296.      bool VerifyFields() 
  42297.  
  42298.      Verify that all required fields are filled in. 
  42299.  
  42300.   Retrieve data from the database 
  42301.      bool fetchAllCountries(vecString &AllCountries) 
  42302.  
  42303.      Fetch a list of all countries.  LCP: CountryAll 
  42304.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42305.  
  42306.      Fetch a paired list of countries and their native language descriptions, 
  42307.      sorted by english description.  LCP: CountryEngNat 
  42308.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42309.  
  42310.      Fetch a paired list of native language country descriptions, and the 
  42311.      english name of the country. 
  42312.      bool retrieveFromNetCode() 
  42313.  
  42314.      Determine the country that uses the currently set NetCode.  Fills all the 
  42315.      other country attributes with values. LCP: CountryAttNetCode 
  42316.      bool retrieveFromDesc() 
  42317.  
  42318.      Determine the country that uses the currently set description.  Fills all 
  42319.      the other country attributes with values.  LCP: CountryAttribs 
  42320.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42321.  
  42322.      Determine the primary language of the current country.  "Desc" must be 
  42323.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42324.      CountryPrimLang 
  42325.      bool getAllLanguages(vecString &Languages) 
  42326.  
  42327.      Determine all the languages used by the current country.  "Desc" must be 
  42328.      already set.  The result is returned in priority order (highest priority 
  42329.      first) in vecString &Languages.  LCP: CountryLanguages 
  42330.      bool getLanguageList(vecString &Languages) 
  42331.  
  42332.      Get a list of all possible languages, in alphabetical order, returned in 
  42333.      vecString &Languages.  LCP: CountryLangList 
  42334.      bool getLanguageListEngNat(mapString &Languages) 
  42335.  
  42336.      Get a map of all possible languages, their native description in 
  42337.      alphabetical order by english description, returned in in vecString 
  42338.      &Languages.  LCP: CountryLangListEngNat 
  42339.  
  42340.   Delete a country 
  42341.      bool deleteFromDesc() 
  42342.  
  42343.      Delete the country that uses the currently set description.  LCP: 
  42344.      CountryDelete 
  42345.  
  42346.   Set data members 
  42347.      bool setAll(mapString &FieldValues) 
  42348.  
  42349.      Sets all the data members of a topic using the mapString which is passed 
  42350.      to it.  Only the fields present in the mapString are updated, the other 
  42351.      fields are untouched.  LCP: CountryUpdate 
  42352.      bool setDesc(const string &DescSetting) 
  42353.  
  42354.      Set the short description 
  42355.      bool setDescLong(const string &DescLongSetting) 
  42356.  
  42357.      Set the long description 
  42358.      bool setDescNative(const string &DescNativeSetting) 
  42359.  
  42360.      Set the native language description 
  42361.      bool setNetCode(const string &NetCodeSetting) 
  42362.  
  42363.      Set the internet code for this country 
  42364.      bool erase() 
  42365.  
  42366.      Sets all the data members to empty 
  42367.  
  42368.   Get data members 
  42369.      bool getAll(mapString &FieldValues) 
  42370.  
  42371.      Return a mapString of all the data members of this topic. The key is the 
  42372.      variable name.  LCP: CountryAttribs 
  42373.      string getDesc() 
  42374.  
  42375.      Get the short description 
  42376.      string getDescLong() 
  42377.  
  42378.      Get the long description 
  42379.      string getDescNative() 
  42380.  
  42381.      Get the native language description 
  42382.      string getNetCode() 
  42383.  
  42384.      Get the internet code for this country 
  42385.  
  42386.  
  42387. ΓòÉΓòÉΓòÉ <hidden> wLogAttribs ΓòÉΓòÉΓòÉ
  42388.  
  42389.  
  42390. lyris_Country Class 
  42391.  
  42392.      class lyris_Country 
  42393.  
  42394.      For determining what countries exist, and what languages are spoken & 
  42395.      preferred in each country 
  42396.  
  42397.      Defined in: COUNTRY.H 
  42398.  
  42399.   Create a new country 
  42400.  
  42401.       bool createNew() 
  42402.  
  42403.      Creates a new country/language table row.  LCP: CountryCreate 
  42404.      bool updateDatabase() 
  42405.  
  42406.      Save the current country with the data members that have changed.  LCP: 
  42407.      CountryUpdate 
  42408.      bool VerifyFields() 
  42409.  
  42410.      Verify that all required fields are filled in. 
  42411.  
  42412.   Retrieve data from the database 
  42413.      bool fetchAllCountries(vecString &AllCountries) 
  42414.  
  42415.      Fetch a list of all countries.  LCP: CountryAll 
  42416.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42417.  
  42418.      Fetch a paired list of countries and their native language descriptions, 
  42419.      sorted by english description.  LCP: CountryEngNat 
  42420.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42421.  
  42422.      Fetch a paired list of native language country descriptions, and the 
  42423.      english name of the country. 
  42424.      bool retrieveFromNetCode() 
  42425.  
  42426.      Determine the country that uses the currently set NetCode.  Fills all the 
  42427.      other country attributes with values. LCP: CountryAttNetCode 
  42428.      bool retrieveFromDesc() 
  42429.  
  42430.      Determine the country that uses the currently set description.  Fills all 
  42431.      the other country attributes with values.  LCP: CountryAttribs 
  42432.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42433.  
  42434.      Determine the primary language of the current country.  "Desc" must be 
  42435.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42436.      CountryPrimLang 
  42437.      bool getAllLanguages(vecString &Languages) 
  42438.  
  42439.      Determine all the languages used by the current country.  "Desc" must be 
  42440.      already set.  The result is returned in priority order (highest priority 
  42441.      first) in vecString &Languages.  LCP: CountryLanguages 
  42442.      bool getLanguageList(vecString &Languages) 
  42443.  
  42444.      Get a list of all possible languages, in alphabetical order, returned in 
  42445.      vecString &Languages.  LCP: CountryLangList 
  42446.      bool getLanguageListEngNat(mapString &Languages) 
  42447.  
  42448.      Get a map of all possible languages, their native description in 
  42449.      alphabetical order by english description, returned in in vecString 
  42450.      &Languages.  LCP: CountryLangListEngNat 
  42451.  
  42452.   Delete a country 
  42453.      bool deleteFromDesc() 
  42454.  
  42455.      Delete the country that uses the currently set description.  LCP: 
  42456.      CountryDelete 
  42457.  
  42458.   Set data members 
  42459.      bool setAll(mapString &FieldValues) 
  42460.  
  42461.      Sets all the data members of a topic using the mapString which is passed 
  42462.      to it.  Only the fields present in the mapString are updated, the other 
  42463.      fields are untouched.  LCP: CountryUpdate 
  42464.      bool setDesc(const string &DescSetting) 
  42465.  
  42466.      Set the short description 
  42467.      bool setDescLong(const string &DescLongSetting) 
  42468.  
  42469.      Set the long description 
  42470.      bool setDescNative(const string &DescNativeSetting) 
  42471.  
  42472.      Set the native language description 
  42473.      bool setNetCode(const string &NetCodeSetting) 
  42474.  
  42475.      Set the internet code for this country 
  42476.      bool erase() 
  42477.  
  42478.      Sets all the data members to empty 
  42479.  
  42480.   Get data members 
  42481.      bool getAll(mapString &FieldValues) 
  42482.  
  42483.      Return a mapString of all the data members of this topic. The key is the 
  42484.      variable name.  LCP: CountryAttribs 
  42485.      string getDesc() 
  42486.  
  42487.      Get the short description 
  42488.      string getDescLong() 
  42489.  
  42490.      Get the long description 
  42491.      string getDescNative() 
  42492.  
  42493.      Get the native language description 
  42494.      string getNetCode() 
  42495.  
  42496.      Get the internet code for this country 
  42497.  
  42498.  
  42499. ΓòÉΓòÉΓòÉ <hidden> xLogAllRange ΓòÉΓòÉΓòÉ
  42500.  
  42501.  
  42502. lyris_Country Class 
  42503.  
  42504.      class lyris_Country 
  42505.  
  42506.      For determining what countries exist, and what languages are spoken & 
  42507.      preferred in each country 
  42508.  
  42509.      Defined in: COUNTRY.H 
  42510.  
  42511.   Create a new country 
  42512.  
  42513.       bool createNew() 
  42514.  
  42515.      Creates a new country/language table row.  LCP: CountryCreate 
  42516.      bool updateDatabase() 
  42517.  
  42518.      Save the current country with the data members that have changed.  LCP: 
  42519.      CountryUpdate 
  42520.      bool VerifyFields() 
  42521.  
  42522.      Verify that all required fields are filled in. 
  42523.  
  42524.   Retrieve data from the database 
  42525.      bool fetchAllCountries(vecString &AllCountries) 
  42526.  
  42527.      Fetch a list of all countries.  LCP: CountryAll 
  42528.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42529.  
  42530.      Fetch a paired list of countries and their native language descriptions, 
  42531.      sorted by english description.  LCP: CountryEngNat 
  42532.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42533.  
  42534.      Fetch a paired list of native language country descriptions, and the 
  42535.      english name of the country. 
  42536.      bool retrieveFromNetCode() 
  42537.  
  42538.      Determine the country that uses the currently set NetCode.  Fills all the 
  42539.      other country attributes with values. LCP: CountryAttNetCode 
  42540.      bool retrieveFromDesc() 
  42541.  
  42542.      Determine the country that uses the currently set description.  Fills all 
  42543.      the other country attributes with values.  LCP: CountryAttribs 
  42544.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42545.  
  42546.      Determine the primary language of the current country.  "Desc" must be 
  42547.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42548.      CountryPrimLang 
  42549.      bool getAllLanguages(vecString &Languages) 
  42550.  
  42551.      Determine all the languages used by the current country.  "Desc" must be 
  42552.      already set.  The result is returned in priority order (highest priority 
  42553.      first) in vecString &Languages.  LCP: CountryLanguages 
  42554.      bool getLanguageList(vecString &Languages) 
  42555.  
  42556.      Get a list of all possible languages, in alphabetical order, returned in 
  42557.      vecString &Languages.  LCP: CountryLangList 
  42558.      bool getLanguageListEngNat(mapString &Languages) 
  42559.  
  42560.      Get a map of all possible languages, their native description in 
  42561.      alphabetical order by english description, returned in in vecString 
  42562.      &Languages.  LCP: CountryLangListEngNat 
  42563.  
  42564.   Delete a country 
  42565.      bool deleteFromDesc() 
  42566.  
  42567.      Delete the country that uses the currently set description.  LCP: 
  42568.      CountryDelete 
  42569.  
  42570.   Set data members 
  42571.      bool setAll(mapString &FieldValues) 
  42572.  
  42573.      Sets all the data members of a topic using the mapString which is passed 
  42574.      to it.  Only the fields present in the mapString are updated, the other 
  42575.      fields are untouched.  LCP: CountryUpdate 
  42576.      bool setDesc(const string &DescSetting) 
  42577.  
  42578.      Set the short description 
  42579.      bool setDescLong(const string &DescLongSetting) 
  42580.  
  42581.      Set the long description 
  42582.      bool setDescNative(const string &DescNativeSetting) 
  42583.  
  42584.      Set the native language description 
  42585.      bool setNetCode(const string &NetCodeSetting) 
  42586.  
  42587.      Set the internet code for this country 
  42588.      bool erase() 
  42589.  
  42590.      Sets all the data members to empty 
  42591.  
  42592.   Get data members 
  42593.      bool getAll(mapString &FieldValues) 
  42594.  
  42595.      Return a mapString of all the data members of this topic. The key is the 
  42596.      variable name.  LCP: CountryAttribs 
  42597.      string getDesc() 
  42598.  
  42599.      Get the short description 
  42600.      string getDescLong() 
  42601.  
  42602.      Get the long description 
  42603.      string getDescNative() 
  42604.  
  42605.      Get the native language description 
  42606.      string getNetCode() 
  42607.  
  42608.      Get the internet code for this country 
  42609.  
  42610.  
  42611. ΓòÉΓòÉΓòÉ <hidden> yLog.dbf ΓòÉΓòÉΓòÉ
  42612.  
  42613.  
  42614. lyris_Country Class 
  42615.  
  42616.      class lyris_Country 
  42617.  
  42618.      For determining what countries exist, and what languages are spoken & 
  42619.      preferred in each country 
  42620.  
  42621.      Defined in: COUNTRY.H 
  42622.  
  42623.   Create a new country 
  42624.  
  42625.       bool createNew() 
  42626.  
  42627.      Creates a new country/language table row.  LCP: CountryCreate 
  42628.      bool updateDatabase() 
  42629.  
  42630.      Save the current country with the data members that have changed.  LCP: 
  42631.      CountryUpdate 
  42632.      bool VerifyFields() 
  42633.  
  42634.      Verify that all required fields are filled in. 
  42635.  
  42636.   Retrieve data from the database 
  42637.      bool fetchAllCountries(vecString &AllCountries) 
  42638.  
  42639.      Fetch a list of all countries.  LCP: CountryAll 
  42640.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42641.  
  42642.      Fetch a paired list of countries and their native language descriptions, 
  42643.      sorted by english description.  LCP: CountryEngNat 
  42644.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42645.  
  42646.      Fetch a paired list of native language country descriptions, and the 
  42647.      english name of the country. 
  42648.      bool retrieveFromNetCode() 
  42649.  
  42650.      Determine the country that uses the currently set NetCode.  Fills all the 
  42651.      other country attributes with values. LCP: CountryAttNetCode 
  42652.      bool retrieveFromDesc() 
  42653.  
  42654.      Determine the country that uses the currently set description.  Fills all 
  42655.      the other country attributes with values.  LCP: CountryAttribs 
  42656.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42657.  
  42658.      Determine the primary language of the current country.  "Desc" must be 
  42659.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42660.      CountryPrimLang 
  42661.      bool getAllLanguages(vecString &Languages) 
  42662.  
  42663.      Determine all the languages used by the current country.  "Desc" must be 
  42664.      already set.  The result is returned in priority order (highest priority 
  42665.      first) in vecString &Languages.  LCP: CountryLanguages 
  42666.      bool getLanguageList(vecString &Languages) 
  42667.  
  42668.      Get a list of all possible languages, in alphabetical order, returned in 
  42669.      vecString &Languages.  LCP: CountryLangList 
  42670.      bool getLanguageListEngNat(mapString &Languages) 
  42671.  
  42672.      Get a map of all possible languages, their native description in 
  42673.      alphabetical order by english description, returned in in vecString 
  42674.      &Languages.  LCP: CountryLangListEngNat 
  42675.  
  42676.   Delete a country 
  42677.      bool deleteFromDesc() 
  42678.  
  42679.      Delete the country that uses the currently set description.  LCP: 
  42680.      CountryDelete 
  42681.  
  42682.   Set data members 
  42683.      bool setAll(mapString &FieldValues) 
  42684.  
  42685.      Sets all the data members of a topic using the mapString which is passed 
  42686.      to it.  Only the fields present in the mapString are updated, the other 
  42687.      fields are untouched.  LCP: CountryUpdate 
  42688.      bool setDesc(const string &DescSetting) 
  42689.  
  42690.      Set the short description 
  42691.      bool setDescLong(const string &DescLongSetting) 
  42692.  
  42693.      Set the long description 
  42694.      bool setDescNative(const string &DescNativeSetting) 
  42695.  
  42696.      Set the native language description 
  42697.      bool setNetCode(const string &NetCodeSetting) 
  42698.  
  42699.      Set the internet code for this country 
  42700.      bool erase() 
  42701.  
  42702.      Sets all the data members to empty 
  42703.  
  42704.   Get data members 
  42705.      bool getAll(mapString &FieldValues) 
  42706.  
  42707.      Return a mapString of all the data members of this topic. The key is the 
  42708.      variable name.  LCP: CountryAttribs 
  42709.      string getDesc() 
  42710.  
  42711.      Get the short description 
  42712.      string getDescLong() 
  42713.  
  42714.      Get the long description 
  42715.      string getDescNative() 
  42716.  
  42717.      Get the native language description 
  42718.      string getNetCode() 
  42719.  
  42720.      Get the internet code for this country 
  42721.  
  42722.  
  42723. ΓòÉΓòÉΓòÉ <hidden> zLiteral strings with no slash-substitution ΓòÉΓòÉΓòÉ
  42724.  
  42725.  
  42726. lyris_Country Class 
  42727.  
  42728.      class lyris_Country 
  42729.  
  42730.      For determining what countries exist, and what languages are spoken & 
  42731.      preferred in each country 
  42732.  
  42733.      Defined in: COUNTRY.H 
  42734.  
  42735.   Create a new country 
  42736.  
  42737.       bool createNew() 
  42738.  
  42739.      Creates a new country/language table row.  LCP: CountryCreate 
  42740.      bool updateDatabase() 
  42741.  
  42742.      Save the current country with the data members that have changed.  LCP: 
  42743.      CountryUpdate 
  42744.      bool VerifyFields() 
  42745.  
  42746.      Verify that all required fields are filled in. 
  42747.  
  42748.   Retrieve data from the database 
  42749.      bool fetchAllCountries(vecString &AllCountries) 
  42750.  
  42751.      Fetch a list of all countries.  LCP: CountryAll 
  42752.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42753.  
  42754.      Fetch a paired list of countries and their native language descriptions, 
  42755.      sorted by english description.  LCP: CountryEngNat 
  42756.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42757.  
  42758.      Fetch a paired list of native language country descriptions, and the 
  42759.      english name of the country. 
  42760.      bool retrieveFromNetCode() 
  42761.  
  42762.      Determine the country that uses the currently set NetCode.  Fills all the 
  42763.      other country attributes with values. LCP: CountryAttNetCode 
  42764.      bool retrieveFromDesc() 
  42765.  
  42766.      Determine the country that uses the currently set description.  Fills all 
  42767.      the other country attributes with values.  LCP: CountryAttribs 
  42768.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42769.  
  42770.      Determine the primary language of the current country.  "Desc" must be 
  42771.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42772.      CountryPrimLang 
  42773.      bool getAllLanguages(vecString &Languages) 
  42774.  
  42775.      Determine all the languages used by the current country.  "Desc" must be 
  42776.      already set.  The result is returned in priority order (highest priority 
  42777.      first) in vecString &Languages.  LCP: CountryLanguages 
  42778.      bool getLanguageList(vecString &Languages) 
  42779.  
  42780.      Get a list of all possible languages, in alphabetical order, returned in 
  42781.      vecString &Languages.  LCP: CountryLangList 
  42782.      bool getLanguageListEngNat(mapString &Languages) 
  42783.  
  42784.      Get a map of all possible languages, their native description in 
  42785.      alphabetical order by english description, returned in in vecString 
  42786.      &Languages.  LCP: CountryLangListEngNat 
  42787.  
  42788.   Delete a country 
  42789.      bool deleteFromDesc() 
  42790.  
  42791.      Delete the country that uses the currently set description.  LCP: 
  42792.      CountryDelete 
  42793.  
  42794.   Set data members 
  42795.      bool setAll(mapString &FieldValues) 
  42796.  
  42797.      Sets all the data members of a topic using the mapString which is passed 
  42798.      to it.  Only the fields present in the mapString are updated, the other 
  42799.      fields are untouched.  LCP: CountryUpdate 
  42800.      bool setDesc(const string &DescSetting) 
  42801.  
  42802.      Set the short description 
  42803.      bool setDescLong(const string &DescLongSetting) 
  42804.  
  42805.      Set the long description 
  42806.      bool setDescNative(const string &DescNativeSetting) 
  42807.  
  42808.      Set the native language description 
  42809.      bool setNetCode(const string &NetCodeSetting) 
  42810.  
  42811.      Set the internet code for this country 
  42812.      bool erase() 
  42813.  
  42814.      Sets all the data members to empty 
  42815.  
  42816.   Get data members 
  42817.      bool getAll(mapString &FieldValues) 
  42818.  
  42819.      Return a mapString of all the data members of this topic. The key is the 
  42820.      variable name.  LCP: CountryAttribs 
  42821.      string getDesc() 
  42822.  
  42823.      Get the short description 
  42824.      string getDescLong() 
  42825.  
  42826.      Get the long description 
  42827.      string getDescNative() 
  42828.  
  42829.      Get the native language description 
  42830.      string getNetCode() 
  42831.  
  42832.      Get the internet code for this country 
  42833.  
  42834.  
  42835. ΓòÉΓòÉΓòÉ <hidden> {ListUpdate ΓòÉΓòÉΓòÉ
  42836.  
  42837.  
  42838. lyris_Country Class 
  42839.  
  42840.      class lyris_Country 
  42841.  
  42842.      For determining what countries exist, and what languages are spoken & 
  42843.      preferred in each country 
  42844.  
  42845.      Defined in: COUNTRY.H 
  42846.  
  42847.   Create a new country 
  42848.  
  42849.       bool createNew() 
  42850.  
  42851.      Creates a new country/language table row.  LCP: CountryCreate 
  42852.      bool updateDatabase() 
  42853.  
  42854.      Save the current country with the data members that have changed.  LCP: 
  42855.      CountryUpdate 
  42856.      bool VerifyFields() 
  42857.  
  42858.      Verify that all required fields are filled in. 
  42859.  
  42860.   Retrieve data from the database 
  42861.      bool fetchAllCountries(vecString &AllCountries) 
  42862.  
  42863.      Fetch a list of all countries.  LCP: CountryAll 
  42864.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42865.  
  42866.      Fetch a paired list of countries and their native language descriptions, 
  42867.      sorted by english description.  LCP: CountryEngNat 
  42868.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42869.  
  42870.      Fetch a paired list of native language country descriptions, and the 
  42871.      english name of the country. 
  42872.      bool retrieveFromNetCode() 
  42873.  
  42874.      Determine the country that uses the currently set NetCode.  Fills all the 
  42875.      other country attributes with values. LCP: CountryAttNetCode 
  42876.      bool retrieveFromDesc() 
  42877.  
  42878.      Determine the country that uses the currently set description.  Fills all 
  42879.      the other country attributes with values.  LCP: CountryAttribs 
  42880.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42881.  
  42882.      Determine the primary language of the current country.  "Desc" must be 
  42883.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42884.      CountryPrimLang 
  42885.      bool getAllLanguages(vecString &Languages) 
  42886.  
  42887.      Determine all the languages used by the current country.  "Desc" must be 
  42888.      already set.  The result is returned in priority order (highest priority 
  42889.      first) in vecString &Languages.  LCP: CountryLanguages 
  42890.      bool getLanguageList(vecString &Languages) 
  42891.  
  42892.      Get a list of all possible languages, in alphabetical order, returned in 
  42893.      vecString &Languages.  LCP: CountryLangList 
  42894.      bool getLanguageListEngNat(mapString &Languages) 
  42895.  
  42896.      Get a map of all possible languages, their native description in 
  42897.      alphabetical order by english description, returned in in vecString 
  42898.      &Languages.  LCP: CountryLangListEngNat 
  42899.  
  42900.   Delete a country 
  42901.      bool deleteFromDesc() 
  42902.  
  42903.      Delete the country that uses the currently set description.  LCP: 
  42904.      CountryDelete 
  42905.  
  42906.   Set data members 
  42907.      bool setAll(mapString &FieldValues) 
  42908.  
  42909.      Sets all the data members of a topic using the mapString which is passed 
  42910.      to it.  Only the fields present in the mapString are updated, the other 
  42911.      fields are untouched.  LCP: CountryUpdate 
  42912.      bool setDesc(const string &DescSetting) 
  42913.  
  42914.      Set the short description 
  42915.      bool setDescLong(const string &DescLongSetting) 
  42916.  
  42917.      Set the long description 
  42918.      bool setDescNative(const string &DescNativeSetting) 
  42919.  
  42920.      Set the native language description 
  42921.      bool setNetCode(const string &NetCodeSetting) 
  42922.  
  42923.      Set the internet code for this country 
  42924.      bool erase() 
  42925.  
  42926.      Sets all the data members to empty 
  42927.  
  42928.   Get data members 
  42929.      bool getAll(mapString &FieldValues) 
  42930.  
  42931.      Return a mapString of all the data members of this topic. The key is the 
  42932.      variable name.  LCP: CountryAttribs 
  42933.      string getDesc() 
  42934.  
  42935.      Get the short description 
  42936.      string getDescLong() 
  42937.  
  42938.      Get the long description 
  42939.      string getDescNative() 
  42940.  
  42941.      Get the native language description 
  42942.      string getNetCode() 
  42943.  
  42944.      Get the internet code for this country 
  42945.  
  42946.  
  42947. ΓòÉΓòÉΓòÉ <hidden> |ListForTopicLogo ΓòÉΓòÉΓòÉ
  42948.  
  42949.  
  42950. lyris_Country Class 
  42951.  
  42952.      class lyris_Country 
  42953.  
  42954.      For determining what countries exist, and what languages are spoken & 
  42955.      preferred in each country 
  42956.  
  42957.      Defined in: COUNTRY.H 
  42958.  
  42959.   Create a new country 
  42960.  
  42961.       bool createNew() 
  42962.  
  42963.      Creates a new country/language table row.  LCP: CountryCreate 
  42964.      bool updateDatabase() 
  42965.  
  42966.      Save the current country with the data members that have changed.  LCP: 
  42967.      CountryUpdate 
  42968.      bool VerifyFields() 
  42969.  
  42970.      Verify that all required fields are filled in. 
  42971.  
  42972.   Retrieve data from the database 
  42973.      bool fetchAllCountries(vecString &AllCountries) 
  42974.  
  42975.      Fetch a list of all countries.  LCP: CountryAll 
  42976.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  42977.  
  42978.      Fetch a paired list of countries and their native language descriptions, 
  42979.      sorted by english description.  LCP: CountryEngNat 
  42980.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  42981.  
  42982.      Fetch a paired list of native language country descriptions, and the 
  42983.      english name of the country. 
  42984.      bool retrieveFromNetCode() 
  42985.  
  42986.      Determine the country that uses the currently set NetCode.  Fills all the 
  42987.      other country attributes with values. LCP: CountryAttNetCode 
  42988.      bool retrieveFromDesc() 
  42989.  
  42990.      Determine the country that uses the currently set description.  Fills all 
  42991.      the other country attributes with values.  LCP: CountryAttribs 
  42992.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  42993.  
  42994.      Determine the primary language of the current country.  "Desc" must be 
  42995.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  42996.      CountryPrimLang 
  42997.      bool getAllLanguages(vecString &Languages) 
  42998.  
  42999.      Determine all the languages used by the current country.  "Desc" must be 
  43000.      already set.  The result is returned in priority order (highest priority 
  43001.      first) in vecString &Languages.  LCP: CountryLanguages 
  43002.      bool getLanguageList(vecString &Languages) 
  43003.  
  43004.      Get a list of all possible languages, in alphabetical order, returned in 
  43005.      vecString &Languages.  LCP: CountryLangList 
  43006.      bool getLanguageListEngNat(mapString &Languages) 
  43007.  
  43008.      Get a map of all possible languages, their native description in 
  43009.      alphabetical order by english description, returned in in vecString 
  43010.      &Languages.  LCP: CountryLangListEngNat 
  43011.  
  43012.   Delete a country 
  43013.      bool deleteFromDesc() 
  43014.  
  43015.      Delete the country that uses the currently set description.  LCP: 
  43016.      CountryDelete 
  43017.  
  43018.   Set data members 
  43019.      bool setAll(mapString &FieldValues) 
  43020.  
  43021.      Sets all the data members of a topic using the mapString which is passed 
  43022.      to it.  Only the fields present in the mapString are updated, the other 
  43023.      fields are untouched.  LCP: CountryUpdate 
  43024.      bool setDesc(const string &DescSetting) 
  43025.  
  43026.      Set the short description 
  43027.      bool setDescLong(const string &DescLongSetting) 
  43028.  
  43029.      Set the long description 
  43030.      bool setDescNative(const string &DescNativeSetting) 
  43031.  
  43032.      Set the native language description 
  43033.      bool setNetCode(const string &NetCodeSetting) 
  43034.  
  43035.      Set the internet code for this country 
  43036.      bool erase() 
  43037.  
  43038.      Sets all the data members to empty 
  43039.  
  43040.   Get data members 
  43041.      bool getAll(mapString &FieldValues) 
  43042.  
  43043.      Return a mapString of all the data members of this topic. The key is the 
  43044.      variable name.  LCP: CountryAttribs 
  43045.      string getDesc() 
  43046.  
  43047.      Get the short description 
  43048.      string getDescLong() 
  43049.  
  43050.      Get the long description 
  43051.      string getDescNative() 
  43052.  
  43053.      Get the native language description 
  43054.      string getNetCode() 
  43055.  
  43056.      Get the internet code for this country 
  43057.  
  43058.  
  43059. ΓòÉΓòÉΓòÉ <hidden> }ListForSite ΓòÉΓòÉΓòÉ
  43060.  
  43061.  
  43062. lyris_Country Class 
  43063.  
  43064.      class lyris_Country 
  43065.  
  43066.      For determining what countries exist, and what languages are spoken & 
  43067.      preferred in each country 
  43068.  
  43069.      Defined in: COUNTRY.H 
  43070.  
  43071.   Create a new country 
  43072.  
  43073.       bool createNew() 
  43074.  
  43075.      Creates a new country/language table row.  LCP: CountryCreate 
  43076.      bool updateDatabase() 
  43077.  
  43078.      Save the current country with the data members that have changed.  LCP: 
  43079.      CountryUpdate 
  43080.      bool VerifyFields() 
  43081.  
  43082.      Verify that all required fields are filled in. 
  43083.  
  43084.   Retrieve data from the database 
  43085.      bool fetchAllCountries(vecString &AllCountries) 
  43086.  
  43087.      Fetch a list of all countries.  LCP: CountryAll 
  43088.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43089.  
  43090.      Fetch a paired list of countries and their native language descriptions, 
  43091.      sorted by english description.  LCP: CountryEngNat 
  43092.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43093.  
  43094.      Fetch a paired list of native language country descriptions, and the 
  43095.      english name of the country. 
  43096.      bool retrieveFromNetCode() 
  43097.  
  43098.      Determine the country that uses the currently set NetCode.  Fills all the 
  43099.      other country attributes with values. LCP: CountryAttNetCode 
  43100.      bool retrieveFromDesc() 
  43101.  
  43102.      Determine the country that uses the currently set description.  Fills all 
  43103.      the other country attributes with values.  LCP: CountryAttribs 
  43104.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43105.  
  43106.      Determine the primary language of the current country.  "Desc" must be 
  43107.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43108.      CountryPrimLang 
  43109.      bool getAllLanguages(vecString &Languages) 
  43110.  
  43111.      Determine all the languages used by the current country.  "Desc" must be 
  43112.      already set.  The result is returned in priority order (highest priority 
  43113.      first) in vecString &Languages.  LCP: CountryLanguages 
  43114.      bool getLanguageList(vecString &Languages) 
  43115.  
  43116.      Get a list of all possible languages, in alphabetical order, returned in 
  43117.      vecString &Languages.  LCP: CountryLangList 
  43118.      bool getLanguageListEngNat(mapString &Languages) 
  43119.  
  43120.      Get a map of all possible languages, their native description in 
  43121.      alphabetical order by english description, returned in in vecString 
  43122.      &Languages.  LCP: CountryLangListEngNat 
  43123.  
  43124.   Delete a country 
  43125.      bool deleteFromDesc() 
  43126.  
  43127.      Delete the country that uses the currently set description.  LCP: 
  43128.      CountryDelete 
  43129.  
  43130.   Set data members 
  43131.      bool setAll(mapString &FieldValues) 
  43132.  
  43133.      Sets all the data members of a topic using the mapString which is passed 
  43134.      to it.  Only the fields present in the mapString are updated, the other 
  43135.      fields are untouched.  LCP: CountryUpdate 
  43136.      bool setDesc(const string &DescSetting) 
  43137.  
  43138.      Set the short description 
  43139.      bool setDescLong(const string &DescLongSetting) 
  43140.  
  43141.      Set the long description 
  43142.      bool setDescNative(const string &DescNativeSetting) 
  43143.  
  43144.      Set the native language description 
  43145.      bool setNetCode(const string &NetCodeSetting) 
  43146.  
  43147.      Set the internet code for this country 
  43148.      bool erase() 
  43149.  
  43150.      Sets all the data members to empty 
  43151.  
  43152.   Get data members 
  43153.      bool getAll(mapString &FieldValues) 
  43154.  
  43155.      Return a mapString of all the data members of this topic. The key is the 
  43156.      variable name.  LCP: CountryAttribs 
  43157.      string getDesc() 
  43158.  
  43159.      Get the short description 
  43160.      string getDescLong() 
  43161.  
  43162.      Get the long description 
  43163.      string getDescNative() 
  43164.  
  43165.      Get the native language description 
  43166.      string getNetCode() 
  43167.  
  43168.      Get the internet code for this country 
  43169.  
  43170.  
  43171. ΓòÉΓòÉΓòÉ <hidden> ~ListCreate ΓòÉΓòÉΓòÉ
  43172.  
  43173.  
  43174. lyris_Country Class 
  43175.  
  43176.      class lyris_Country 
  43177.  
  43178.      For determining what countries exist, and what languages are spoken & 
  43179.      preferred in each country 
  43180.  
  43181.      Defined in: COUNTRY.H 
  43182.  
  43183.   Create a new country 
  43184.  
  43185.       bool createNew() 
  43186.  
  43187.      Creates a new country/language table row.  LCP: CountryCreate 
  43188.      bool updateDatabase() 
  43189.  
  43190.      Save the current country with the data members that have changed.  LCP: 
  43191.      CountryUpdate 
  43192.      bool VerifyFields() 
  43193.  
  43194.      Verify that all required fields are filled in. 
  43195.  
  43196.   Retrieve data from the database 
  43197.      bool fetchAllCountries(vecString &AllCountries) 
  43198.  
  43199.      Fetch a list of all countries.  LCP: CountryAll 
  43200.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43201.  
  43202.      Fetch a paired list of countries and their native language descriptions, 
  43203.      sorted by english description.  LCP: CountryEngNat 
  43204.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43205.  
  43206.      Fetch a paired list of native language country descriptions, and the 
  43207.      english name of the country. 
  43208.      bool retrieveFromNetCode() 
  43209.  
  43210.      Determine the country that uses the currently set NetCode.  Fills all the 
  43211.      other country attributes with values. LCP: CountryAttNetCode 
  43212.      bool retrieveFromDesc() 
  43213.  
  43214.      Determine the country that uses the currently set description.  Fills all 
  43215.      the other country attributes with values.  LCP: CountryAttribs 
  43216.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43217.  
  43218.      Determine the primary language of the current country.  "Desc" must be 
  43219.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43220.      CountryPrimLang 
  43221.      bool getAllLanguages(vecString &Languages) 
  43222.  
  43223.      Determine all the languages used by the current country.  "Desc" must be 
  43224.      already set.  The result is returned in priority order (highest priority 
  43225.      first) in vecString &Languages.  LCP: CountryLanguages 
  43226.      bool getLanguageList(vecString &Languages) 
  43227.  
  43228.      Get a list of all possible languages, in alphabetical order, returned in 
  43229.      vecString &Languages.  LCP: CountryLangList 
  43230.      bool getLanguageListEngNat(mapString &Languages) 
  43231.  
  43232.      Get a map of all possible languages, their native description in 
  43233.      alphabetical order by english description, returned in in vecString 
  43234.      &Languages.  LCP: CountryLangListEngNat 
  43235.  
  43236.   Delete a country 
  43237.      bool deleteFromDesc() 
  43238.  
  43239.      Delete the country that uses the currently set description.  LCP: 
  43240.      CountryDelete 
  43241.  
  43242.   Set data members 
  43243.      bool setAll(mapString &FieldValues) 
  43244.  
  43245.      Sets all the data members of a topic using the mapString which is passed 
  43246.      to it.  Only the fields present in the mapString are updated, the other 
  43247.      fields are untouched.  LCP: CountryUpdate 
  43248.      bool setDesc(const string &DescSetting) 
  43249.  
  43250.      Set the short description 
  43251.      bool setDescLong(const string &DescLongSetting) 
  43252.  
  43253.      Set the long description 
  43254.      bool setDescNative(const string &DescNativeSetting) 
  43255.  
  43256.      Set the native language description 
  43257.      bool setNetCode(const string &NetCodeSetting) 
  43258.  
  43259.      Set the internet code for this country 
  43260.      bool erase() 
  43261.  
  43262.      Sets all the data members to empty 
  43263.  
  43264.   Get data members 
  43265.      bool getAll(mapString &FieldValues) 
  43266.  
  43267.      Return a mapString of all the data members of this topic. The key is the 
  43268.      variable name.  LCP: CountryAttribs 
  43269.      string getDesc() 
  43270.  
  43271.      Get the short description 
  43272.      string getDescLong() 
  43273.  
  43274.      Get the long description 
  43275.      string getDescNative() 
  43276.  
  43277.      Get the native language description 
  43278.      string getNetCode() 
  43279.  
  43280.      Get the internet code for this country 
  43281.  
  43282.  
  43283. ΓòÉΓòÉΓòÉ <hidden> ListAll ΓòÉΓòÉΓòÉ
  43284.  
  43285.  
  43286. lyris_Country Class 
  43287.  
  43288.      class lyris_Country 
  43289.  
  43290.      For determining what countries exist, and what languages are spoken & 
  43291.      preferred in each country 
  43292.  
  43293.      Defined in: COUNTRY.H 
  43294.  
  43295.   Create a new country 
  43296.  
  43297.       bool createNew() 
  43298.  
  43299.      Creates a new country/language table row.  LCP: CountryCreate 
  43300.      bool updateDatabase() 
  43301.  
  43302.      Save the current country with the data members that have changed.  LCP: 
  43303.      CountryUpdate 
  43304.      bool VerifyFields() 
  43305.  
  43306.      Verify that all required fields are filled in. 
  43307.  
  43308.   Retrieve data from the database 
  43309.      bool fetchAllCountries(vecString &AllCountries) 
  43310.  
  43311.      Fetch a list of all countries.  LCP: CountryAll 
  43312.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43313.  
  43314.      Fetch a paired list of countries and their native language descriptions, 
  43315.      sorted by english description.  LCP: CountryEngNat 
  43316.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43317.  
  43318.      Fetch a paired list of native language country descriptions, and the 
  43319.      english name of the country. 
  43320.      bool retrieveFromNetCode() 
  43321.  
  43322.      Determine the country that uses the currently set NetCode.  Fills all the 
  43323.      other country attributes with values. LCP: CountryAttNetCode 
  43324.      bool retrieveFromDesc() 
  43325.  
  43326.      Determine the country that uses the currently set description.  Fills all 
  43327.      the other country attributes with values.  LCP: CountryAttribs 
  43328.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43329.  
  43330.      Determine the primary language of the current country.  "Desc" must be 
  43331.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43332.      CountryPrimLang 
  43333.      bool getAllLanguages(vecString &Languages) 
  43334.  
  43335.      Determine all the languages used by the current country.  "Desc" must be 
  43336.      already set.  The result is returned in priority order (highest priority 
  43337.      first) in vecString &Languages.  LCP: CountryLanguages 
  43338.      bool getLanguageList(vecString &Languages) 
  43339.  
  43340.      Get a list of all possible languages, in alphabetical order, returned in 
  43341.      vecString &Languages.  LCP: CountryLangList 
  43342.      bool getLanguageListEngNat(mapString &Languages) 
  43343.  
  43344.      Get a map of all possible languages, their native description in 
  43345.      alphabetical order by english description, returned in in vecString 
  43346.      &Languages.  LCP: CountryLangListEngNat 
  43347.  
  43348.   Delete a country 
  43349.      bool deleteFromDesc() 
  43350.  
  43351.      Delete the country that uses the currently set description.  LCP: 
  43352.      CountryDelete 
  43353.  
  43354.   Set data members 
  43355.      bool setAll(mapString &FieldValues) 
  43356.  
  43357.      Sets all the data members of a topic using the mapString which is passed 
  43358.      to it.  Only the fields present in the mapString are updated, the other 
  43359.      fields are untouched.  LCP: CountryUpdate 
  43360.      bool setDesc(const string &DescSetting) 
  43361.  
  43362.      Set the short description 
  43363.      bool setDescLong(const string &DescLongSetting) 
  43364.  
  43365.      Set the long description 
  43366.      bool setDescNative(const string &DescNativeSetting) 
  43367.  
  43368.      Set the native language description 
  43369.      bool setNetCode(const string &NetCodeSetting) 
  43370.  
  43371.      Set the internet code for this country 
  43372.      bool erase() 
  43373.  
  43374.      Sets all the data members to empty 
  43375.  
  43376.   Get data members 
  43377.      bool getAll(mapString &FieldValues) 
  43378.  
  43379.      Return a mapString of all the data members of this topic. The key is the 
  43380.      variable name.  LCP: CountryAttribs 
  43381.      string getDesc() 
  43382.  
  43383.      Get the short description 
  43384.      string getDescLong() 
  43385.  
  43386.      Get the long description 
  43387.      string getDescNative() 
  43388.  
  43389.      Get the native language description 
  43390.      string getNetCode() 
  43391.  
  43392.      Get the internet code for this country 
  43393.  
  43394.  
  43395. ΓòÉΓòÉΓòÉ <hidden> ╨ÉLanguage.dbf ΓòÉΓòÉΓòÉ
  43396.  
  43397.  
  43398. lyris_Country Class 
  43399.  
  43400.      class lyris_Country 
  43401.  
  43402.      For determining what countries exist, and what languages are spoken & 
  43403.      preferred in each country 
  43404.  
  43405.      Defined in: COUNTRY.H 
  43406.  
  43407.   Create a new country 
  43408.  
  43409.       bool createNew() 
  43410.  
  43411.      Creates a new country/language table row.  LCP: CountryCreate 
  43412.      bool updateDatabase() 
  43413.  
  43414.      Save the current country with the data members that have changed.  LCP: 
  43415.      CountryUpdate 
  43416.      bool VerifyFields() 
  43417.  
  43418.      Verify that all required fields are filled in. 
  43419.  
  43420.   Retrieve data from the database 
  43421.      bool fetchAllCountries(vecString &AllCountries) 
  43422.  
  43423.      Fetch a list of all countries.  LCP: CountryAll 
  43424.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43425.  
  43426.      Fetch a paired list of countries and their native language descriptions, 
  43427.      sorted by english description.  LCP: CountryEngNat 
  43428.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43429.  
  43430.      Fetch a paired list of native language country descriptions, and the 
  43431.      english name of the country. 
  43432.      bool retrieveFromNetCode() 
  43433.  
  43434.      Determine the country that uses the currently set NetCode.  Fills all the 
  43435.      other country attributes with values. LCP: CountryAttNetCode 
  43436.      bool retrieveFromDesc() 
  43437.  
  43438.      Determine the country that uses the currently set description.  Fills all 
  43439.      the other country attributes with values.  LCP: CountryAttribs 
  43440.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43441.  
  43442.      Determine the primary language of the current country.  "Desc" must be 
  43443.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43444.      CountryPrimLang 
  43445.      bool getAllLanguages(vecString &Languages) 
  43446.  
  43447.      Determine all the languages used by the current country.  "Desc" must be 
  43448.      already set.  The result is returned in priority order (highest priority 
  43449.      first) in vecString &Languages.  LCP: CountryLanguages 
  43450.      bool getLanguageList(vecString &Languages) 
  43451.  
  43452.      Get a list of all possible languages, in alphabetical order, returned in 
  43453.      vecString &Languages.  LCP: CountryLangList 
  43454.      bool getLanguageListEngNat(mapString &Languages) 
  43455.  
  43456.      Get a map of all possible languages, their native description in 
  43457.      alphabetical order by english description, returned in in vecString 
  43458.      &Languages.  LCP: CountryLangListEngNat 
  43459.  
  43460.   Delete a country 
  43461.      bool deleteFromDesc() 
  43462.  
  43463.      Delete the country that uses the currently set description.  LCP: 
  43464.      CountryDelete 
  43465.  
  43466.   Set data members 
  43467.      bool setAll(mapString &FieldValues) 
  43468.  
  43469.      Sets all the data members of a topic using the mapString which is passed 
  43470.      to it.  Only the fields present in the mapString are updated, the other 
  43471.      fields are untouched.  LCP: CountryUpdate 
  43472.      bool setDesc(const string &DescSetting) 
  43473.  
  43474.      Set the short description 
  43475.      bool setDescLong(const string &DescLongSetting) 
  43476.  
  43477.      Set the long description 
  43478.      bool setDescNative(const string &DescNativeSetting) 
  43479.  
  43480.      Set the native language description 
  43481.      bool setNetCode(const string &NetCodeSetting) 
  43482.  
  43483.      Set the internet code for this country 
  43484.      bool erase() 
  43485.  
  43486.      Sets all the data members to empty 
  43487.  
  43488.   Get data members 
  43489.      bool getAll(mapString &FieldValues) 
  43490.  
  43491.      Return a mapString of all the data members of this topic. The key is the 
  43492.      variable name.  LCP: CountryAttribs 
  43493.      string getDesc() 
  43494.  
  43495.      Get the short description 
  43496.      string getDescLong() 
  43497.  
  43498.      Get the long description 
  43499.      string getDescNative() 
  43500.  
  43501.      Get the native language description 
  43502.      string getNetCode() 
  43503.  
  43504.      Get the internet code for this country 
  43505.  
  43506.  
  43507. ΓòÉΓòÉΓòÉ <hidden> ╨æjoin ΓòÉΓòÉΓòÉ
  43508.  
  43509.  
  43510. lyris_Country Class 
  43511.  
  43512.      class lyris_Country 
  43513.  
  43514.      For determining what countries exist, and what languages are spoken & 
  43515.      preferred in each country 
  43516.  
  43517.      Defined in: COUNTRY.H 
  43518.  
  43519.   Create a new country 
  43520.  
  43521.       bool createNew() 
  43522.  
  43523.      Creates a new country/language table row.  LCP: CountryCreate 
  43524.      bool updateDatabase() 
  43525.  
  43526.      Save the current country with the data members that have changed.  LCP: 
  43527.      CountryUpdate 
  43528.      bool VerifyFields() 
  43529.  
  43530.      Verify that all required fields are filled in. 
  43531.  
  43532.   Retrieve data from the database 
  43533.      bool fetchAllCountries(vecString &AllCountries) 
  43534.  
  43535.      Fetch a list of all countries.  LCP: CountryAll 
  43536.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43537.  
  43538.      Fetch a paired list of countries and their native language descriptions, 
  43539.      sorted by english description.  LCP: CountryEngNat 
  43540.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43541.  
  43542.      Fetch a paired list of native language country descriptions, and the 
  43543.      english name of the country. 
  43544.      bool retrieveFromNetCode() 
  43545.  
  43546.      Determine the country that uses the currently set NetCode.  Fills all the 
  43547.      other country attributes with values. LCP: CountryAttNetCode 
  43548.      bool retrieveFromDesc() 
  43549.  
  43550.      Determine the country that uses the currently set description.  Fills all 
  43551.      the other country attributes with values.  LCP: CountryAttribs 
  43552.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43553.  
  43554.      Determine the primary language of the current country.  "Desc" must be 
  43555.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43556.      CountryPrimLang 
  43557.      bool getAllLanguages(vecString &Languages) 
  43558.  
  43559.      Determine all the languages used by the current country.  "Desc" must be 
  43560.      already set.  The result is returned in priority order (highest priority 
  43561.      first) in vecString &Languages.  LCP: CountryLanguages 
  43562.      bool getLanguageList(vecString &Languages) 
  43563.  
  43564.      Get a list of all possible languages, in alphabetical order, returned in 
  43565.      vecString &Languages.  LCP: CountryLangList 
  43566.      bool getLanguageListEngNat(mapString &Languages) 
  43567.  
  43568.      Get a map of all possible languages, their native description in 
  43569.      alphabetical order by english description, returned in in vecString 
  43570.      &Languages.  LCP: CountryLangListEngNat 
  43571.  
  43572.   Delete a country 
  43573.      bool deleteFromDesc() 
  43574.  
  43575.      Delete the country that uses the currently set description.  LCP: 
  43576.      CountryDelete 
  43577.  
  43578.   Set data members 
  43579.      bool setAll(mapString &FieldValues) 
  43580.  
  43581.      Sets all the data members of a topic using the mapString which is passed 
  43582.      to it.  Only the fields present in the mapString are updated, the other 
  43583.      fields are untouched.  LCP: CountryUpdate 
  43584.      bool setDesc(const string &DescSetting) 
  43585.  
  43586.      Set the short description 
  43587.      bool setDescLong(const string &DescLongSetting) 
  43588.  
  43589.      Set the long description 
  43590.      bool setDescNative(const string &DescNativeSetting) 
  43591.  
  43592.      Set the native language description 
  43593.      bool setNetCode(const string &NetCodeSetting) 
  43594.  
  43595.      Set the internet code for this country 
  43596.      bool erase() 
  43597.  
  43598.      Sets all the data members to empty 
  43599.  
  43600.   Get data members 
  43601.      bool getAll(mapString &FieldValues) 
  43602.  
  43603.      Return a mapString of all the data members of this topic. The key is the 
  43604.      variable name.  LCP: CountryAttribs 
  43605.      string getDesc() 
  43606.  
  43607.      Get the short description 
  43608.      string getDescLong() 
  43609.  
  43610.      Get the long description 
  43611.      string getDescNative() 
  43612.  
  43613.      Get the native language description 
  43614.      string getNetCode() 
  43615.  
  43616.      Get the internet code for this country 
  43617.  
  43618.  
  43619. ΓòÉΓòÉΓòÉ <hidden> ╨ÆInMailType ΓòÉΓòÉΓòÉ
  43620.  
  43621.  
  43622. lyris_Country Class 
  43623.  
  43624.      class lyris_Country 
  43625.  
  43626.      For determining what countries exist, and what languages are spoken & 
  43627.      preferred in each country 
  43628.  
  43629.      Defined in: COUNTRY.H 
  43630.  
  43631.   Create a new country 
  43632.  
  43633.       bool createNew() 
  43634.  
  43635.      Creates a new country/language table row.  LCP: CountryCreate 
  43636.      bool updateDatabase() 
  43637.  
  43638.      Save the current country with the data members that have changed.  LCP: 
  43639.      CountryUpdate 
  43640.      bool VerifyFields() 
  43641.  
  43642.      Verify that all required fields are filled in. 
  43643.  
  43644.   Retrieve data from the database 
  43645.      bool fetchAllCountries(vecString &AllCountries) 
  43646.  
  43647.      Fetch a list of all countries.  LCP: CountryAll 
  43648.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43649.  
  43650.      Fetch a paired list of countries and their native language descriptions, 
  43651.      sorted by english description.  LCP: CountryEngNat 
  43652.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43653.  
  43654.      Fetch a paired list of native language country descriptions, and the 
  43655.      english name of the country. 
  43656.      bool retrieveFromNetCode() 
  43657.  
  43658.      Determine the country that uses the currently set NetCode.  Fills all the 
  43659.      other country attributes with values. LCP: CountryAttNetCode 
  43660.      bool retrieveFromDesc() 
  43661.  
  43662.      Determine the country that uses the currently set description.  Fills all 
  43663.      the other country attributes with values.  LCP: CountryAttribs 
  43664.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43665.  
  43666.      Determine the primary language of the current country.  "Desc" must be 
  43667.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43668.      CountryPrimLang 
  43669.      bool getAllLanguages(vecString &Languages) 
  43670.  
  43671.      Determine all the languages used by the current country.  "Desc" must be 
  43672.      already set.  The result is returned in priority order (highest priority 
  43673.      first) in vecString &Languages.  LCP: CountryLanguages 
  43674.      bool getLanguageList(vecString &Languages) 
  43675.  
  43676.      Get a list of all possible languages, in alphabetical order, returned in 
  43677.      vecString &Languages.  LCP: CountryLangList 
  43678.      bool getLanguageListEngNat(mapString &Languages) 
  43679.  
  43680.      Get a map of all possible languages, their native description in 
  43681.      alphabetical order by english description, returned in in vecString 
  43682.      &Languages.  LCP: CountryLangListEngNat 
  43683.  
  43684.   Delete a country 
  43685.      bool deleteFromDesc() 
  43686.  
  43687.      Delete the country that uses the currently set description.  LCP: 
  43688.      CountryDelete 
  43689.  
  43690.   Set data members 
  43691.      bool setAll(mapString &FieldValues) 
  43692.  
  43693.      Sets all the data members of a topic using the mapString which is passed 
  43694.      to it.  Only the fields present in the mapString are updated, the other 
  43695.      fields are untouched.  LCP: CountryUpdate 
  43696.      bool setDesc(const string &DescSetting) 
  43697.  
  43698.      Set the short description 
  43699.      bool setDescLong(const string &DescLongSetting) 
  43700.  
  43701.      Set the long description 
  43702.      bool setDescNative(const string &DescNativeSetting) 
  43703.  
  43704.      Set the native language description 
  43705.      bool setNetCode(const string &NetCodeSetting) 
  43706.  
  43707.      Set the internet code for this country 
  43708.      bool erase() 
  43709.  
  43710.      Sets all the data members to empty 
  43711.  
  43712.   Get data members 
  43713.      bool getAll(mapString &FieldValues) 
  43714.  
  43715.      Return a mapString of all the data members of this topic. The key is the 
  43716.      variable name.  LCP: CountryAttribs 
  43717.      string getDesc() 
  43718.  
  43719.      Get the short description 
  43720.      string getDescLong() 
  43721.  
  43722.      Get the long description 
  43723.      string getDescNative() 
  43724.  
  43725.      Get the native language description 
  43726.      string getNetCode() 
  43727.  
  43728.      Get the internet code for this country 
  43729.  
  43730.  
  43731. ΓòÉΓòÉΓòÉ <hidden> ╨ôInMailList ΓòÉΓòÉΓòÉ
  43732.  
  43733.  
  43734. lyris_Country Class 
  43735.  
  43736.      class lyris_Country 
  43737.  
  43738.      For determining what countries exist, and what languages are spoken & 
  43739.      preferred in each country 
  43740.  
  43741.      Defined in: COUNTRY.H 
  43742.  
  43743.   Create a new country 
  43744.  
  43745.       bool createNew() 
  43746.  
  43747.      Creates a new country/language table row.  LCP: CountryCreate 
  43748.      bool updateDatabase() 
  43749.  
  43750.      Save the current country with the data members that have changed.  LCP: 
  43751.      CountryUpdate 
  43752.      bool VerifyFields() 
  43753.  
  43754.      Verify that all required fields are filled in. 
  43755.  
  43756.   Retrieve data from the database 
  43757.      bool fetchAllCountries(vecString &AllCountries) 
  43758.  
  43759.      Fetch a list of all countries.  LCP: CountryAll 
  43760.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43761.  
  43762.      Fetch a paired list of countries and their native language descriptions, 
  43763.      sorted by english description.  LCP: CountryEngNat 
  43764.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43765.  
  43766.      Fetch a paired list of native language country descriptions, and the 
  43767.      english name of the country. 
  43768.      bool retrieveFromNetCode() 
  43769.  
  43770.      Determine the country that uses the currently set NetCode.  Fills all the 
  43771.      other country attributes with values. LCP: CountryAttNetCode 
  43772.      bool retrieveFromDesc() 
  43773.  
  43774.      Determine the country that uses the currently set description.  Fills all 
  43775.      the other country attributes with values.  LCP: CountryAttribs 
  43776.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43777.  
  43778.      Determine the primary language of the current country.  "Desc" must be 
  43779.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43780.      CountryPrimLang 
  43781.      bool getAllLanguages(vecString &Languages) 
  43782.  
  43783.      Determine all the languages used by the current country.  "Desc" must be 
  43784.      already set.  The result is returned in priority order (highest priority 
  43785.      first) in vecString &Languages.  LCP: CountryLanguages 
  43786.      bool getLanguageList(vecString &Languages) 
  43787.  
  43788.      Get a list of all possible languages, in alphabetical order, returned in 
  43789.      vecString &Languages.  LCP: CountryLangList 
  43790.      bool getLanguageListEngNat(mapString &Languages) 
  43791.  
  43792.      Get a map of all possible languages, their native description in 
  43793.      alphabetical order by english description, returned in in vecString 
  43794.      &Languages.  LCP: CountryLangListEngNat 
  43795.  
  43796.   Delete a country 
  43797.      bool deleteFromDesc() 
  43798.  
  43799.      Delete the country that uses the currently set description.  LCP: 
  43800.      CountryDelete 
  43801.  
  43802.   Set data members 
  43803.      bool setAll(mapString &FieldValues) 
  43804.  
  43805.      Sets all the data members of a topic using the mapString which is passed 
  43806.      to it.  Only the fields present in the mapString are updated, the other 
  43807.      fields are untouched.  LCP: CountryUpdate 
  43808.      bool setDesc(const string &DescSetting) 
  43809.  
  43810.      Set the short description 
  43811.      bool setDescLong(const string &DescLongSetting) 
  43812.  
  43813.      Set the long description 
  43814.      bool setDescNative(const string &DescNativeSetting) 
  43815.  
  43816.      Set the native language description 
  43817.      bool setNetCode(const string &NetCodeSetting) 
  43818.  
  43819.      Set the internet code for this country 
  43820.      bool erase() 
  43821.  
  43822.      Sets all the data members to empty 
  43823.  
  43824.   Get data members 
  43825.      bool getAll(mapString &FieldValues) 
  43826.  
  43827.      Return a mapString of all the data members of this topic. The key is the 
  43828.      variable name.  LCP: CountryAttribs 
  43829.      string getDesc() 
  43830.  
  43831.      Get the short description 
  43832.      string getDescLong() 
  43833.  
  43834.      Get the long description 
  43835.      string getDescNative() 
  43836.  
  43837.      Get the native language description 
  43838.      string getNetCode() 
  43839.  
  43840.      Get the internet code for this country 
  43841.  
  43842.  
  43843. ΓòÉΓòÉΓòÉ <hidden> ╨öInMailCreate ΓòÉΓòÉΓòÉ
  43844.  
  43845.  
  43846. lyris_Country Class 
  43847.  
  43848.      class lyris_Country 
  43849.  
  43850.      For determining what countries exist, and what languages are spoken & 
  43851.      preferred in each country 
  43852.  
  43853.      Defined in: COUNTRY.H 
  43854.  
  43855.   Create a new country 
  43856.  
  43857.       bool createNew() 
  43858.  
  43859.      Creates a new country/language table row.  LCP: CountryCreate 
  43860.      bool updateDatabase() 
  43861.  
  43862.      Save the current country with the data members that have changed.  LCP: 
  43863.      CountryUpdate 
  43864.      bool VerifyFields() 
  43865.  
  43866.      Verify that all required fields are filled in. 
  43867.  
  43868.   Retrieve data from the database 
  43869.      bool fetchAllCountries(vecString &AllCountries) 
  43870.  
  43871.      Fetch a list of all countries.  LCP: CountryAll 
  43872.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43873.  
  43874.      Fetch a paired list of countries and their native language descriptions, 
  43875.      sorted by english description.  LCP: CountryEngNat 
  43876.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43877.  
  43878.      Fetch a paired list of native language country descriptions, and the 
  43879.      english name of the country. 
  43880.      bool retrieveFromNetCode() 
  43881.  
  43882.      Determine the country that uses the currently set NetCode.  Fills all the 
  43883.      other country attributes with values. LCP: CountryAttNetCode 
  43884.      bool retrieveFromDesc() 
  43885.  
  43886.      Determine the country that uses the currently set description.  Fills all 
  43887.      the other country attributes with values.  LCP: CountryAttribs 
  43888.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  43889.  
  43890.      Determine the primary language of the current country.  "Desc" must be 
  43891.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  43892.      CountryPrimLang 
  43893.      bool getAllLanguages(vecString &Languages) 
  43894.  
  43895.      Determine all the languages used by the current country.  "Desc" must be 
  43896.      already set.  The result is returned in priority order (highest priority 
  43897.      first) in vecString &Languages.  LCP: CountryLanguages 
  43898.      bool getLanguageList(vecString &Languages) 
  43899.  
  43900.      Get a list of all possible languages, in alphabetical order, returned in 
  43901.      vecString &Languages.  LCP: CountryLangList 
  43902.      bool getLanguageListEngNat(mapString &Languages) 
  43903.  
  43904.      Get a map of all possible languages, their native description in 
  43905.      alphabetical order by english description, returned in in vecString 
  43906.      &Languages.  LCP: CountryLangListEngNat 
  43907.  
  43908.   Delete a country 
  43909.      bool deleteFromDesc() 
  43910.  
  43911.      Delete the country that uses the currently set description.  LCP: 
  43912.      CountryDelete 
  43913.  
  43914.   Set data members 
  43915.      bool setAll(mapString &FieldValues) 
  43916.  
  43917.      Sets all the data members of a topic using the mapString which is passed 
  43918.      to it.  Only the fields present in the mapString are updated, the other 
  43919.      fields are untouched.  LCP: CountryUpdate 
  43920.      bool setDesc(const string &DescSetting) 
  43921.  
  43922.      Set the short description 
  43923.      bool setDescLong(const string &DescLongSetting) 
  43924.  
  43925.      Set the long description 
  43926.      bool setDescNative(const string &DescNativeSetting) 
  43927.  
  43928.      Set the native language description 
  43929.      bool setNetCode(const string &NetCodeSetting) 
  43930.  
  43931.      Set the internet code for this country 
  43932.      bool erase() 
  43933.  
  43934.      Sets all the data members to empty 
  43935.  
  43936.   Get data members 
  43937.      bool getAll(mapString &FieldValues) 
  43938.  
  43939.      Return a mapString of all the data members of this topic. The key is the 
  43940.      variable name.  LCP: CountryAttribs 
  43941.      string getDesc() 
  43942.  
  43943.      Get the short description 
  43944.      string getDescLong() 
  43945.  
  43946.      Get the long description 
  43947.      string getDescNative() 
  43948.  
  43949.      Get the native language description 
  43950.      string getNetCode() 
  43951.  
  43952.      Get the internet code for this country 
  43953.  
  43954.  
  43955. ΓòÉΓòÉΓòÉ <hidden> ╨òInMailAddrTo ΓòÉΓòÉΓòÉ
  43956.  
  43957.  
  43958. lyris_Country Class 
  43959.  
  43960.      class lyris_Country 
  43961.  
  43962.      For determining what countries exist, and what languages are spoken & 
  43963.      preferred in each country 
  43964.  
  43965.      Defined in: COUNTRY.H 
  43966.  
  43967.   Create a new country 
  43968.  
  43969.       bool createNew() 
  43970.  
  43971.      Creates a new country/language table row.  LCP: CountryCreate 
  43972.      bool updateDatabase() 
  43973.  
  43974.      Save the current country with the data members that have changed.  LCP: 
  43975.      CountryUpdate 
  43976.      bool VerifyFields() 
  43977.  
  43978.      Verify that all required fields are filled in. 
  43979.  
  43980.   Retrieve data from the database 
  43981.      bool fetchAllCountries(vecString &AllCountries) 
  43982.  
  43983.      Fetch a list of all countries.  LCP: CountryAll 
  43984.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  43985.  
  43986.      Fetch a paired list of countries and their native language descriptions, 
  43987.      sorted by english description.  LCP: CountryEngNat 
  43988.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  43989.  
  43990.      Fetch a paired list of native language country descriptions, and the 
  43991.      english name of the country. 
  43992.      bool retrieveFromNetCode() 
  43993.  
  43994.      Determine the country that uses the currently set NetCode.  Fills all the 
  43995.      other country attributes with values. LCP: CountryAttNetCode 
  43996.      bool retrieveFromDesc() 
  43997.  
  43998.      Determine the country that uses the currently set description.  Fills all 
  43999.      the other country attributes with values.  LCP: CountryAttribs 
  44000.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44001.  
  44002.      Determine the primary language of the current country.  "Desc" must be 
  44003.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44004.      CountryPrimLang 
  44005.      bool getAllLanguages(vecString &Languages) 
  44006.  
  44007.      Determine all the languages used by the current country.  "Desc" must be 
  44008.      already set.  The result is returned in priority order (highest priority 
  44009.      first) in vecString &Languages.  LCP: CountryLanguages 
  44010.      bool getLanguageList(vecString &Languages) 
  44011.  
  44012.      Get a list of all possible languages, in alphabetical order, returned in 
  44013.      vecString &Languages.  LCP: CountryLangList 
  44014.      bool getLanguageListEngNat(mapString &Languages) 
  44015.  
  44016.      Get a map of all possible languages, their native description in 
  44017.      alphabetical order by english description, returned in in vecString 
  44018.      &Languages.  LCP: CountryLangListEngNat 
  44019.  
  44020.   Delete a country 
  44021.      bool deleteFromDesc() 
  44022.  
  44023.      Delete the country that uses the currently set description.  LCP: 
  44024.      CountryDelete 
  44025.  
  44026.   Set data members 
  44027.      bool setAll(mapString &FieldValues) 
  44028.  
  44029.      Sets all the data members of a topic using the mapString which is passed 
  44030.      to it.  Only the fields present in the mapString are updated, the other 
  44031.      fields are untouched.  LCP: CountryUpdate 
  44032.      bool setDesc(const string &DescSetting) 
  44033.  
  44034.      Set the short description 
  44035.      bool setDescLong(const string &DescLongSetting) 
  44036.  
  44037.      Set the long description 
  44038.      bool setDescNative(const string &DescNativeSetting) 
  44039.  
  44040.      Set the native language description 
  44041.      bool setNetCode(const string &NetCodeSetting) 
  44042.  
  44043.      Set the internet code for this country 
  44044.      bool erase() 
  44045.  
  44046.      Sets all the data members to empty 
  44047.  
  44048.   Get data members 
  44049.      bool getAll(mapString &FieldValues) 
  44050.  
  44051.      Return a mapString of all the data members of this topic. The key is the 
  44052.      variable name.  LCP: CountryAttribs 
  44053.      string getDesc() 
  44054.  
  44055.      Get the short description 
  44056.      string getDescLong() 
  44057.  
  44058.      Get the long description 
  44059.      string getDescNative() 
  44060.  
  44061.      Get the native language description 
  44062.      string getNetCode() 
  44063.  
  44064.      Get the internet code for this country 
  44065.  
  44066.  
  44067. ΓòÉΓòÉΓòÉ <hidden> ╨ûIncoming Email Messages ΓòÉΓòÉΓòÉ
  44068.  
  44069.  
  44070. lyris_Country Class 
  44071.  
  44072.      class lyris_Country 
  44073.  
  44074.      For determining what countries exist, and what languages are spoken & 
  44075.      preferred in each country 
  44076.  
  44077.      Defined in: COUNTRY.H 
  44078.  
  44079.   Create a new country 
  44080.  
  44081.       bool createNew() 
  44082.  
  44083.      Creates a new country/language table row.  LCP: CountryCreate 
  44084.      bool updateDatabase() 
  44085.  
  44086.      Save the current country with the data members that have changed.  LCP: 
  44087.      CountryUpdate 
  44088.      bool VerifyFields() 
  44089.  
  44090.      Verify that all required fields are filled in. 
  44091.  
  44092.   Retrieve data from the database 
  44093.      bool fetchAllCountries(vecString &AllCountries) 
  44094.  
  44095.      Fetch a list of all countries.  LCP: CountryAll 
  44096.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44097.  
  44098.      Fetch a paired list of countries and their native language descriptions, 
  44099.      sorted by english description.  LCP: CountryEngNat 
  44100.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44101.  
  44102.      Fetch a paired list of native language country descriptions, and the 
  44103.      english name of the country. 
  44104.      bool retrieveFromNetCode() 
  44105.  
  44106.      Determine the country that uses the currently set NetCode.  Fills all the 
  44107.      other country attributes with values. LCP: CountryAttNetCode 
  44108.      bool retrieveFromDesc() 
  44109.  
  44110.      Determine the country that uses the currently set description.  Fills all 
  44111.      the other country attributes with values.  LCP: CountryAttribs 
  44112.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44113.  
  44114.      Determine the primary language of the current country.  "Desc" must be 
  44115.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44116.      CountryPrimLang 
  44117.      bool getAllLanguages(vecString &Languages) 
  44118.  
  44119.      Determine all the languages used by the current country.  "Desc" must be 
  44120.      already set.  The result is returned in priority order (highest priority 
  44121.      first) in vecString &Languages.  LCP: CountryLanguages 
  44122.      bool getLanguageList(vecString &Languages) 
  44123.  
  44124.      Get a list of all possible languages, in alphabetical order, returned in 
  44125.      vecString &Languages.  LCP: CountryLangList 
  44126.      bool getLanguageListEngNat(mapString &Languages) 
  44127.  
  44128.      Get a map of all possible languages, their native description in 
  44129.      alphabetical order by english description, returned in in vecString 
  44130.      &Languages.  LCP: CountryLangListEngNat 
  44131.  
  44132.   Delete a country 
  44133.      bool deleteFromDesc() 
  44134.  
  44135.      Delete the country that uses the currently set description.  LCP: 
  44136.      CountryDelete 
  44137.  
  44138.   Set data members 
  44139.      bool setAll(mapString &FieldValues) 
  44140.  
  44141.      Sets all the data members of a topic using the mapString which is passed 
  44142.      to it.  Only the fields present in the mapString are updated, the other 
  44143.      fields are untouched.  LCP: CountryUpdate 
  44144.      bool setDesc(const string &DescSetting) 
  44145.  
  44146.      Set the short description 
  44147.      bool setDescLong(const string &DescLongSetting) 
  44148.  
  44149.      Set the long description 
  44150.      bool setDescNative(const string &DescNativeSetting) 
  44151.  
  44152.      Set the native language description 
  44153.      bool setNetCode(const string &NetCodeSetting) 
  44154.  
  44155.      Set the internet code for this country 
  44156.      bool erase() 
  44157.  
  44158.      Sets all the data members to empty 
  44159.  
  44160.   Get data members 
  44161.      bool getAll(mapString &FieldValues) 
  44162.  
  44163.      Return a mapString of all the data members of this topic. The key is the 
  44164.      variable name.  LCP: CountryAttribs 
  44165.      string getDesc() 
  44166.  
  44167.      Get the short description 
  44168.      string getDescLong() 
  44169.  
  44170.      Get the long description 
  44171.      string getDescNative() 
  44172.  
  44173.      Get the native language description 
  44174.      string getNetCode() 
  44175.  
  44176.      Get the internet code for this country 
  44177.  
  44178.  
  44179. ΓòÉΓòÉΓòÉ <hidden> ╨ÿHow LCP differs from Perl ΓòÉΓòÉΓòÉ
  44180.  
  44181.  
  44182. lyris_Country Class 
  44183.  
  44184.      class lyris_Country 
  44185.  
  44186.      For determining what countries exist, and what languages are spoken & 
  44187.      preferred in each country 
  44188.  
  44189.      Defined in: COUNTRY.H 
  44190.  
  44191.   Create a new country 
  44192.  
  44193.       bool createNew() 
  44194.  
  44195.      Creates a new country/language table row.  LCP: CountryCreate 
  44196.      bool updateDatabase() 
  44197.  
  44198.      Save the current country with the data members that have changed.  LCP: 
  44199.      CountryUpdate 
  44200.      bool VerifyFields() 
  44201.  
  44202.      Verify that all required fields are filled in. 
  44203.  
  44204.   Retrieve data from the database 
  44205.      bool fetchAllCountries(vecString &AllCountries) 
  44206.  
  44207.      Fetch a list of all countries.  LCP: CountryAll 
  44208.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44209.  
  44210.      Fetch a paired list of countries and their native language descriptions, 
  44211.      sorted by english description.  LCP: CountryEngNat 
  44212.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44213.  
  44214.      Fetch a paired list of native language country descriptions, and the 
  44215.      english name of the country. 
  44216.      bool retrieveFromNetCode() 
  44217.  
  44218.      Determine the country that uses the currently set NetCode.  Fills all the 
  44219.      other country attributes with values. LCP: CountryAttNetCode 
  44220.      bool retrieveFromDesc() 
  44221.  
  44222.      Determine the country that uses the currently set description.  Fills all 
  44223.      the other country attributes with values.  LCP: CountryAttribs 
  44224.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44225.  
  44226.      Determine the primary language of the current country.  "Desc" must be 
  44227.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44228.      CountryPrimLang 
  44229.      bool getAllLanguages(vecString &Languages) 
  44230.  
  44231.      Determine all the languages used by the current country.  "Desc" must be 
  44232.      already set.  The result is returned in priority order (highest priority 
  44233.      first) in vecString &Languages.  LCP: CountryLanguages 
  44234.      bool getLanguageList(vecString &Languages) 
  44235.  
  44236.      Get a list of all possible languages, in alphabetical order, returned in 
  44237.      vecString &Languages.  LCP: CountryLangList 
  44238.      bool getLanguageListEngNat(mapString &Languages) 
  44239.  
  44240.      Get a map of all possible languages, their native description in 
  44241.      alphabetical order by english description, returned in in vecString 
  44242.      &Languages.  LCP: CountryLangListEngNat 
  44243.  
  44244.   Delete a country 
  44245.      bool deleteFromDesc() 
  44246.  
  44247.      Delete the country that uses the currently set description.  LCP: 
  44248.      CountryDelete 
  44249.  
  44250.   Set data members 
  44251.      bool setAll(mapString &FieldValues) 
  44252.  
  44253.      Sets all the data members of a topic using the mapString which is passed 
  44254.      to it.  Only the fields present in the mapString are updated, the other 
  44255.      fields are untouched.  LCP: CountryUpdate 
  44256.      bool setDesc(const string &DescSetting) 
  44257.  
  44258.      Set the short description 
  44259.      bool setDescLong(const string &DescLongSetting) 
  44260.  
  44261.      Set the long description 
  44262.      bool setDescNative(const string &DescNativeSetting) 
  44263.  
  44264.      Set the native language description 
  44265.      bool setNetCode(const string &NetCodeSetting) 
  44266.  
  44267.      Set the internet code for this country 
  44268.      bool erase() 
  44269.  
  44270.      Sets all the data members to empty 
  44271.  
  44272.   Get data members 
  44273.      bool getAll(mapString &FieldValues) 
  44274.  
  44275.      Return a mapString of all the data members of this topic. The key is the 
  44276.      variable name.  LCP: CountryAttribs 
  44277.      string getDesc() 
  44278.  
  44279.      Get the short description 
  44280.      string getDescLong() 
  44281.  
  44282.      Get the long description 
  44283.      string getDescNative() 
  44284.  
  44285.      Get the native language description 
  44286.      string getNetCode() 
  44287.  
  44288.      Get the internet code for this country 
  44289.      How LCP differs from Perl 
  44290.  
  44291.   Lyris follows Perl syntax and functionality as closely as possible.  However, 
  44292.   Perl is a large language, with a flexible grammar and extensive 
  44293.   functionality.  We have implemented only the portions of Perl which were 
  44294.   needed for controlling  Lyris, and tried to keep things as simple as 
  44295.   possible. 
  44296.  
  44297.   Note: if you use the Perl/Lyris toolkit, you can mix Lyris commands with 
  44298.   Perl, and it will all work correctly.  The limitations below apply only to a 
  44299.   live Lyris Command Protocol session, and not to the Perl/Lyris toolkit. 
  44300.  
  44301.   The Lyris Command Protocol differs from Perl in the following respects: 
  44302.  
  44303.   (1) no program flow control commands (for, if, while, sub) 
  44304.  
  44305.   (2) no i/o commands, such as disk access, tcp/ip, keyboard, etc. 
  44306.  
  44307.   (3) Each command must fit on one line. You cannot have a multi-line quoted 
  44308.   string. If you have a carriage return in your string, use "\n" to represent 
  44309.   the carriage return.  A single command line is limited to 100,000 characters. 
  44310.  
  44311.   (4) getting output back.  Because the LCP session is happening on the Lyris 
  44312.   server, you need to print the value of a variable in order to get it into 
  44313.   your program.  Since there is no flow control, we have added the 
  44314.   &DisplayArray , &DisplayAssoc, &Array2String, and &Assoc2String functions to 
  44315.   convert arrays into strings for displaying.  You can concatenate  strings 
  44316.   (with "."), but you can't use the comma in print statements (use concatenate 
  44317.   instead).  Lyris only substitutes slash-character (such as \n) sequences in 
  44318.   strings, it will not substitute an embedded variable in a string.  If  you 
  44319.   want a string to contain a variable, concatenate the variable between two 
  44320.   strings, as in $a="Today is July ".$day." 1996" 
  44321.  
  44322.   (5) error handling is different: a LCP program is interpreted, and will run 
  44323.   your program until it hits an error. A syntax error is fatal and program 
  44324.   execution will cease at that point. LCP programs are not pre-compiled as Perl 
  44325.   is. Error messages are different as well, and LCP functions which fail do 
  44326.   display error messages.  All error messages start with the string "!! " so 
  44327.   that you can easily recognize them. 
  44328.  
  44329.   (6) most statements in Perl have multiple different use syntaxes.  In LCP, we 
  44330.   require the quoted parameter version, as in: &CountryDelete("USA");  For 
  44331.   functions which do not take parameters, do not use the parentheses, as in 
  44332.   "@countries = &CountryAll;"  The print  command is the only exception, where 
  44333.   you don't have to use parentheses.  These commands are equivalent: 
  44334.   "print('bob')" = "print 'bob'" 
  44335.  
  44336.   (7) can't "stack" array and associative array commands.  If a function 
  44337.   returns an array, you cannot use it as a parameter for another function which 
  44338.   expects an array. You will have to use a temporary variable to hold the 
  44339.   array.  However,  you can combine string commands, so that functions which 
  44340.   return a string can be used as parameters for functions which expect a 
  44341.   string. 
  44342.  
  44343.   (8) the assert statement: we have added the "assert" command from C/C++. 
  44344.   This is useful when you want to make 
  44345.  
  44346.  
  44347. ΓòÉΓòÉΓòÉ <hidden> ╨ÖFileType.dbf ΓòÉΓòÉΓòÉ
  44348.  
  44349.  
  44350. lyris_Country Class 
  44351.  
  44352.      class lyris_Country 
  44353.  
  44354.      For determining what countries exist, and what languages are spoken & 
  44355.      preferred in each country 
  44356.  
  44357.      Defined in: COUNTRY.H 
  44358.  
  44359.   Create a new country 
  44360.  
  44361.       bool createNew() 
  44362.  
  44363.      Creates a new country/language table row.  LCP: CountryCreate 
  44364.      bool updateDatabase() 
  44365.  
  44366.      Save the current country with the data members that have changed.  LCP: 
  44367.      CountryUpdate 
  44368.      bool VerifyFields() 
  44369.  
  44370.      Verify that all required fields are filled in. 
  44371.  
  44372.   Retrieve data from the database 
  44373.      bool fetchAllCountries(vecString &AllCountries) 
  44374.  
  44375.      Fetch a list of all countries.  LCP: CountryAll 
  44376.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44377.  
  44378.      Fetch a paired list of countries and their native language descriptions, 
  44379.      sorted by english description.  LCP: CountryEngNat 
  44380.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44381.  
  44382.      Fetch a paired list of native language country descriptions, and the 
  44383.      english name of the country. 
  44384.      bool retrieveFromNetCode() 
  44385.  
  44386.      Determine the country that uses the currently set NetCode.  Fills all the 
  44387.      other country attributes with values. LCP: CountryAttNetCode 
  44388.      bool retrieveFromDesc() 
  44389.  
  44390.      Determine the country that uses the currently set description.  Fills all 
  44391.      the other country attributes with values.  LCP: CountryAttribs 
  44392.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44393.  
  44394.      Determine the primary language of the current country.  "Desc" must be 
  44395.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44396.      CountryPrimLang 
  44397.      bool getAllLanguages(vecString &Languages) 
  44398.  
  44399.      Determine all the languages used by the current country.  "Desc" must be 
  44400.      already set.  The result is returned in priority order (highest priority 
  44401.      first) in vecString &Languages.  LCP: CountryLanguages 
  44402.      bool getLanguageList(vecString &Languages) 
  44403.  
  44404.      Get a list of all possible languages, in alphabetical order, returned in 
  44405.      vecString &Languages.  LCP: CountryLangList 
  44406.      bool getLanguageListEngNat(mapString &Languages) 
  44407.  
  44408.      Get a map of all possible languages, their native description in 
  44409.      alphabetical order by english description, returned in in vecString 
  44410.      &Languages.  LCP: CountryLangListEngNat 
  44411.  
  44412.   Delete a country 
  44413.      bool deleteFromDesc() 
  44414.  
  44415.      Delete the country that uses the currently set description.  LCP: 
  44416.      CountryDelete 
  44417.  
  44418.   Set data members 
  44419.      bool setAll(mapString &FieldValues) 
  44420.  
  44421.      Sets all the data members of a topic using the mapString which is passed 
  44422.      to it.  Only the fields present in the mapString are updated, the other 
  44423.      fields are untouched.  LCP: CountryUpdate 
  44424.      bool setDesc(const string &DescSetting) 
  44425.  
  44426.      Set the short description 
  44427.      bool setDescLong(const string &DescLongSetting) 
  44428.  
  44429.      Set the long description 
  44430.      bool setDescNative(const string &DescNativeSetting) 
  44431.  
  44432.      Set the native language description 
  44433.      bool setNetCode(const string &NetCodeSetting) 
  44434.  
  44435.      Set the internet code for this country 
  44436.      bool erase() 
  44437.  
  44438.      Sets all the data members to empty 
  44439.  
  44440.   Get data members 
  44441.      bool getAll(mapString &FieldValues) 
  44442.  
  44443.      Return a mapString of all the data members of this topic. The key is the 
  44444.      variable name.  LCP: CountryAttribs 
  44445.      string getDesc() 
  44446.  
  44447.      Get the short description 
  44448.      string getDescLong() 
  44449.  
  44450.      Get the long description 
  44451.      string getDescNative() 
  44452.  
  44453.      Get the native language description 
  44454.      string getNetCode() 
  44455.  
  44456.      Get the internet code for this country 
  44457.  
  44458.  
  44459. ΓòÉΓòÉΓòÉ <hidden> ╨ÜFiles ΓòÉΓòÉΓòÉ
  44460.  
  44461.  
  44462. lyris_Country Class 
  44463.  
  44464.      class lyris_Country 
  44465.  
  44466.      For determining what countries exist, and what languages are spoken & 
  44467.      preferred in each country 
  44468.  
  44469.      Defined in: COUNTRY.H 
  44470.  
  44471.   Create a new country 
  44472.  
  44473.       bool createNew() 
  44474.  
  44475.      Creates a new country/language table row.  LCP: CountryCreate 
  44476.      bool updateDatabase() 
  44477.  
  44478.      Save the current country with the data members that have changed.  LCP: 
  44479.      CountryUpdate 
  44480.      bool VerifyFields() 
  44481.  
  44482.      Verify that all required fields are filled in. 
  44483.  
  44484.   Retrieve data from the database 
  44485.      bool fetchAllCountries(vecString &AllCountries) 
  44486.  
  44487.      Fetch a list of all countries.  LCP: CountryAll 
  44488.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44489.  
  44490.      Fetch a paired list of countries and their native language descriptions, 
  44491.      sorted by english description.  LCP: CountryEngNat 
  44492.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44493.  
  44494.      Fetch a paired list of native language country descriptions, and the 
  44495.      english name of the country. 
  44496.      bool retrieveFromNetCode() 
  44497.  
  44498.      Determine the country that uses the currently set NetCode.  Fills all the 
  44499.      other country attributes with values. LCP: CountryAttNetCode 
  44500.      bool retrieveFromDesc() 
  44501.  
  44502.      Determine the country that uses the currently set description.  Fills all 
  44503.      the other country attributes with values.  LCP: CountryAttribs 
  44504.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44505.  
  44506.      Determine the primary language of the current country.  "Desc" must be 
  44507.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44508.      CountryPrimLang 
  44509.      bool getAllLanguages(vecString &Languages) 
  44510.  
  44511.      Determine all the languages used by the current country.  "Desc" must be 
  44512.      already set.  The result is returned in priority order (highest priority 
  44513.      first) in vecString &Languages.  LCP: CountryLanguages 
  44514.      bool getLanguageList(vecString &Languages) 
  44515.  
  44516.      Get a list of all possible languages, in alphabetical order, returned in 
  44517.      vecString &Languages.  LCP: CountryLangList 
  44518.      bool getLanguageListEngNat(mapString &Languages) 
  44519.  
  44520.      Get a map of all possible languages, their native description in 
  44521.      alphabetical order by english description, returned in in vecString 
  44522.      &Languages.  LCP: CountryLangListEngNat 
  44523.  
  44524.   Delete a country 
  44525.      bool deleteFromDesc() 
  44526.  
  44527.      Delete the country that uses the currently set description.  LCP: 
  44528.      CountryDelete 
  44529.  
  44530.   Set data members 
  44531.      bool setAll(mapString &FieldValues) 
  44532.  
  44533.      Sets all the data members of a topic using the mapString which is passed 
  44534.      to it.  Only the fields present in the mapString are updated, the other 
  44535.      fields are untouched.  LCP: CountryUpdate 
  44536.      bool setDesc(const string &DescSetting) 
  44537.  
  44538.      Set the short description 
  44539.      bool setDescLong(const string &DescLongSetting) 
  44540.  
  44541.      Set the long description 
  44542.      bool setDescNative(const string &DescNativeSetting) 
  44543.  
  44544.      Set the native language description 
  44545.      bool setNetCode(const string &NetCodeSetting) 
  44546.  
  44547.      Set the internet code for this country 
  44548.      bool erase() 
  44549.  
  44550.      Sets all the data members to empty 
  44551.  
  44552.   Get data members 
  44553.      bool getAll(mapString &FieldValues) 
  44554.  
  44555.      Return a mapString of all the data members of this topic. The key is the 
  44556.      variable name.  LCP: CountryAttribs 
  44557.      string getDesc() 
  44558.  
  44559.      Get the short description 
  44560.      string getDescLong() 
  44561.  
  44562.      Get the long description 
  44563.      string getDescNative() 
  44564.  
  44565.      Get the native language description 
  44566.      string getNetCode() 
  44567.  
  44568.      Get the internet code for this country 
  44569.  
  44570.  
  44571. ΓòÉΓòÉΓòÉ <hidden> ╨¢FileDelete ΓòÉΓòÉΓòÉ
  44572.  
  44573.  
  44574. lyris_Country Class 
  44575.  
  44576.      class lyris_Country 
  44577.  
  44578.      For determining what countries exist, and what languages are spoken & 
  44579.      preferred in each country 
  44580.  
  44581.      Defined in: COUNTRY.H 
  44582.  
  44583.   Create a new country 
  44584.  
  44585.       bool createNew() 
  44586.  
  44587.      Creates a new country/language table row.  LCP: CountryCreate 
  44588.      bool updateDatabase() 
  44589.  
  44590.      Save the current country with the data members that have changed.  LCP: 
  44591.      CountryUpdate 
  44592.      bool VerifyFields() 
  44593.  
  44594.      Verify that all required fields are filled in. 
  44595.  
  44596.   Retrieve data from the database 
  44597.      bool fetchAllCountries(vecString &AllCountries) 
  44598.  
  44599.      Fetch a list of all countries.  LCP: CountryAll 
  44600.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44601.  
  44602.      Fetch a paired list of countries and their native language descriptions, 
  44603.      sorted by english description.  LCP: CountryEngNat 
  44604.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44605.  
  44606.      Fetch a paired list of native language country descriptions, and the 
  44607.      english name of the country. 
  44608.      bool retrieveFromNetCode() 
  44609.  
  44610.      Determine the country that uses the currently set NetCode.  Fills all the 
  44611.      other country attributes with values. LCP: CountryAttNetCode 
  44612.      bool retrieveFromDesc() 
  44613.  
  44614.      Determine the country that uses the currently set description.  Fills all 
  44615.      the other country attributes with values.  LCP: CountryAttribs 
  44616.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44617.  
  44618.      Determine the primary language of the current country.  "Desc" must be 
  44619.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44620.      CountryPrimLang 
  44621.      bool getAllLanguages(vecString &Languages) 
  44622.  
  44623.      Determine all the languages used by the current country.  "Desc" must be 
  44624.      already set.  The result is returned in priority order (highest priority 
  44625.      first) in vecString &Languages.  LCP: CountryLanguages 
  44626.      bool getLanguageList(vecString &Languages) 
  44627.  
  44628.      Get a list of all possible languages, in alphabetical order, returned in 
  44629.      vecString &Languages.  LCP: CountryLangList 
  44630.      bool getLanguageListEngNat(mapString &Languages) 
  44631.  
  44632.      Get a map of all possible languages, their native description in 
  44633.      alphabetical order by english description, returned in in vecString 
  44634.      &Languages.  LCP: CountryLangListEngNat 
  44635.  
  44636.   Delete a country 
  44637.      bool deleteFromDesc() 
  44638.  
  44639.      Delete the country that uses the currently set description.  LCP: 
  44640.      CountryDelete 
  44641.  
  44642.   Set data members 
  44643.      bool setAll(mapString &FieldValues) 
  44644.  
  44645.      Sets all the data members of a topic using the mapString which is passed 
  44646.      to it.  Only the fields present in the mapString are updated, the other 
  44647.      fields are untouched.  LCP: CountryUpdate 
  44648.      bool setDesc(const string &DescSetting) 
  44649.  
  44650.      Set the short description 
  44651.      bool setDescLong(const string &DescLongSetting) 
  44652.  
  44653.      Set the long description 
  44654.      bool setDescNative(const string &DescNativeSetting) 
  44655.  
  44656.      Set the native language description 
  44657.      bool setNetCode(const string &NetCodeSetting) 
  44658.  
  44659.      Set the internet code for this country 
  44660.      bool erase() 
  44661.  
  44662.      Sets all the data members to empty 
  44663.  
  44664.   Get data members 
  44665.      bool getAll(mapString &FieldValues) 
  44666.  
  44667.      Return a mapString of all the data members of this topic. The key is the 
  44668.      variable name.  LCP: CountryAttribs 
  44669.      string getDesc() 
  44670.  
  44671.      Get the short description 
  44672.      string getDescLong() 
  44673.  
  44674.      Get the long description 
  44675.      string getDescNative() 
  44676.  
  44677.      Get the native language description 
  44678.      string getNetCode() 
  44679.  
  44680.      Get the internet code for this country 
  44681.  
  44682.  
  44683. ΓòÉΓòÉΓòÉ <hidden> ╨£FileAttribs ΓòÉΓòÉΓòÉ
  44684.  
  44685.  
  44686. lyris_Country Class 
  44687.  
  44688.      class lyris_Country 
  44689.  
  44690.      For determining what countries exist, and what languages are spoken & 
  44691.      preferred in each country 
  44692.  
  44693.      Defined in: COUNTRY.H 
  44694.  
  44695.   Create a new country 
  44696.  
  44697.       bool createNew() 
  44698.  
  44699.      Creates a new country/language table row.  LCP: CountryCreate 
  44700.      bool updateDatabase() 
  44701.  
  44702.      Save the current country with the data members that have changed.  LCP: 
  44703.      CountryUpdate 
  44704.      bool VerifyFields() 
  44705.  
  44706.      Verify that all required fields are filled in. 
  44707.  
  44708.   Retrieve data from the database 
  44709.      bool fetchAllCountries(vecString &AllCountries) 
  44710.  
  44711.      Fetch a list of all countries.  LCP: CountryAll 
  44712.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44713.  
  44714.      Fetch a paired list of countries and their native language descriptions, 
  44715.      sorted by english description.  LCP: CountryEngNat 
  44716.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44717.  
  44718.      Fetch a paired list of native language country descriptions, and the 
  44719.      english name of the country. 
  44720.      bool retrieveFromNetCode() 
  44721.  
  44722.      Determine the country that uses the currently set NetCode.  Fills all the 
  44723.      other country attributes with values. LCP: CountryAttNetCode 
  44724.      bool retrieveFromDesc() 
  44725.  
  44726.      Determine the country that uses the currently set description.  Fills all 
  44727.      the other country attributes with values.  LCP: CountryAttribs 
  44728.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44729.  
  44730.      Determine the primary language of the current country.  "Desc" must be 
  44731.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44732.      CountryPrimLang 
  44733.      bool getAllLanguages(vecString &Languages) 
  44734.  
  44735.      Determine all the languages used by the current country.  "Desc" must be 
  44736.      already set.  The result is returned in priority order (highest priority 
  44737.      first) in vecString &Languages.  LCP: CountryLanguages 
  44738.      bool getLanguageList(vecString &Languages) 
  44739.  
  44740.      Get a list of all possible languages, in alphabetical order, returned in 
  44741.      vecString &Languages.  LCP: CountryLangList 
  44742.      bool getLanguageListEngNat(mapString &Languages) 
  44743.  
  44744.      Get a map of all possible languages, their native description in 
  44745.      alphabetical order by english description, returned in in vecString 
  44746.      &Languages.  LCP: CountryLangListEngNat 
  44747.  
  44748.   Delete a country 
  44749.      bool deleteFromDesc() 
  44750.  
  44751.      Delete the country that uses the currently set description.  LCP: 
  44752.      CountryDelete 
  44753.  
  44754.   Set data members 
  44755.      bool setAll(mapString &FieldValues) 
  44756.  
  44757.      Sets all the data members of a topic using the mapString which is passed 
  44758.      to it.  Only the fields present in the mapString are updated, the other 
  44759.      fields are untouched.  LCP: CountryUpdate 
  44760.      bool setDesc(const string &DescSetting) 
  44761.  
  44762.      Set the short description 
  44763.      bool setDescLong(const string &DescLongSetting) 
  44764.  
  44765.      Set the long description 
  44766.      bool setDescNative(const string &DescNativeSetting) 
  44767.  
  44768.      Set the native language description 
  44769.      bool setNetCode(const string &NetCodeSetting) 
  44770.  
  44771.      Set the internet code for this country 
  44772.      bool erase() 
  44773.  
  44774.      Sets all the data members to empty 
  44775.  
  44776.   Get data members 
  44777.      bool getAll(mapString &FieldValues) 
  44778.  
  44779.      Return a mapString of all the data members of this topic. The key is the 
  44780.      variable name.  LCP: CountryAttribs 
  44781.      string getDesc() 
  44782.  
  44783.      Get the short description 
  44784.      string getDescLong() 
  44785.  
  44786.      Get the long description 
  44787.      string getDescNative() 
  44788.  
  44789.      Get the native language description 
  44790.      string getNetCode() 
  44791.  
  44792.      Get the internet code for this country 
  44793.  
  44794.  
  44795. ΓòÉΓòÉΓòÉ <hidden> ╨¥FALSE ΓòÉΓòÉΓòÉ
  44796.  
  44797.  
  44798. lyris_Country Class 
  44799.  
  44800.      class lyris_Country 
  44801.  
  44802.      For determining what countries exist, and what languages are spoken & 
  44803.      preferred in each country 
  44804.  
  44805.      Defined in: COUNTRY.H 
  44806.  
  44807.   Create a new country 
  44808.  
  44809.       bool createNew() 
  44810.  
  44811.      Creates a new country/language table row.  LCP: CountryCreate 
  44812.      bool updateDatabase() 
  44813.  
  44814.      Save the current country with the data members that have changed.  LCP: 
  44815.      CountryUpdate 
  44816.      bool VerifyFields() 
  44817.  
  44818.      Verify that all required fields are filled in. 
  44819.  
  44820.   Retrieve data from the database 
  44821.      bool fetchAllCountries(vecString &AllCountries) 
  44822.  
  44823.      Fetch a list of all countries.  LCP: CountryAll 
  44824.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44825.  
  44826.      Fetch a paired list of countries and their native language descriptions, 
  44827.      sorted by english description.  LCP: CountryEngNat 
  44828.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44829.  
  44830.      Fetch a paired list of native language country descriptions, and the 
  44831.      english name of the country. 
  44832.      bool retrieveFromNetCode() 
  44833.  
  44834.      Determine the country that uses the currently set NetCode.  Fills all the 
  44835.      other country attributes with values. LCP: CountryAttNetCode 
  44836.      bool retrieveFromDesc() 
  44837.  
  44838.      Determine the country that uses the currently set description.  Fills all 
  44839.      the other country attributes with values.  LCP: CountryAttribs 
  44840.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44841.  
  44842.      Determine the primary language of the current country.  "Desc" must be 
  44843.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44844.      CountryPrimLang 
  44845.      bool getAllLanguages(vecString &Languages) 
  44846.  
  44847.      Determine all the languages used by the current country.  "Desc" must be 
  44848.      already set.  The result is returned in priority order (highest priority 
  44849.      first) in vecString &Languages.  LCP: CountryLanguages 
  44850.      bool getLanguageList(vecString &Languages) 
  44851.  
  44852.      Get a list of all possible languages, in alphabetical order, returned in 
  44853.      vecString &Languages.  LCP: CountryLangList 
  44854.      bool getLanguageListEngNat(mapString &Languages) 
  44855.  
  44856.      Get a map of all possible languages, their native description in 
  44857.      alphabetical order by english description, returned in in vecString 
  44858.      &Languages.  LCP: CountryLangListEngNat 
  44859.  
  44860.   Delete a country 
  44861.      bool deleteFromDesc() 
  44862.  
  44863.      Delete the country that uses the currently set description.  LCP: 
  44864.      CountryDelete 
  44865.  
  44866.   Set data members 
  44867.      bool setAll(mapString &FieldValues) 
  44868.  
  44869.      Sets all the data members of a topic using the mapString which is passed 
  44870.      to it.  Only the fields present in the mapString are updated, the other 
  44871.      fields are untouched.  LCP: CountryUpdate 
  44872.      bool setDesc(const string &DescSetting) 
  44873.  
  44874.      Set the short description 
  44875.      bool setDescLong(const string &DescLongSetting) 
  44876.  
  44877.      Set the long description 
  44878.      bool setDescNative(const string &DescNativeSetting) 
  44879.  
  44880.      Set the native language description 
  44881.      bool setNetCode(const string &NetCodeSetting) 
  44882.  
  44883.      Set the internet code for this country 
  44884.      bool erase() 
  44885.  
  44886.      Sets all the data members to empty 
  44887.  
  44888.   Get data members 
  44889.      bool getAll(mapString &FieldValues) 
  44890.  
  44891.      Return a mapString of all the data members of this topic. The key is the 
  44892.      variable name.  LCP: CountryAttribs 
  44893.      string getDesc() 
  44894.  
  44895.      Get the short description 
  44896.      string getDescLong() 
  44897.  
  44898.      Get the long description 
  44899.      string getDescNative() 
  44900.  
  44901.      Get the native language description 
  44902.      string getNetCode() 
  44903.  
  44904.      Get the internet code for this country 
  44905.  
  44906.  
  44907. ΓòÉΓòÉΓòÉ <hidden> ╨₧err ΓòÉΓòÉΓòÉ
  44908.  
  44909.  
  44910. lyris_Country Class 
  44911.  
  44912.      class lyris_Country 
  44913.  
  44914.      For determining what countries exist, and what languages are spoken & 
  44915.      preferred in each country 
  44916.  
  44917.      Defined in: COUNTRY.H 
  44918.  
  44919.   Create a new country 
  44920.  
  44921.       bool createNew() 
  44922.  
  44923.      Creates a new country/language table row.  LCP: CountryCreate 
  44924.      bool updateDatabase() 
  44925.  
  44926.      Save the current country with the data members that have changed.  LCP: 
  44927.      CountryUpdate 
  44928.      bool VerifyFields() 
  44929.  
  44930.      Verify that all required fields are filled in. 
  44931.  
  44932.   Retrieve data from the database 
  44933.      bool fetchAllCountries(vecString &AllCountries) 
  44934.  
  44935.      Fetch a list of all countries.  LCP: CountryAll 
  44936.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  44937.  
  44938.      Fetch a paired list of countries and their native language descriptions, 
  44939.      sorted by english description.  LCP: CountryEngNat 
  44940.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  44941.  
  44942.      Fetch a paired list of native language country descriptions, and the 
  44943.      english name of the country. 
  44944.      bool retrieveFromNetCode() 
  44945.  
  44946.      Determine the country that uses the currently set NetCode.  Fills all the 
  44947.      other country attributes with values. LCP: CountryAttNetCode 
  44948.      bool retrieveFromDesc() 
  44949.  
  44950.      Determine the country that uses the currently set description.  Fills all 
  44951.      the other country attributes with values.  LCP: CountryAttribs 
  44952.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  44953.  
  44954.      Determine the primary language of the current country.  "Desc" must be 
  44955.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  44956.      CountryPrimLang 
  44957.      bool getAllLanguages(vecString &Languages) 
  44958.  
  44959.      Determine all the languages used by the current country.  "Desc" must be 
  44960.      already set.  The result is returned in priority order (highest priority 
  44961.      first) in vecString &Languages.  LCP: CountryLanguages 
  44962.      bool getLanguageList(vecString &Languages) 
  44963.  
  44964.      Get a list of all possible languages, in alphabetical order, returned in 
  44965.      vecString &Languages.  LCP: CountryLangList 
  44966.      bool getLanguageListEngNat(mapString &Languages) 
  44967.  
  44968.      Get a map of all possible languages, their native description in 
  44969.      alphabetical order by english description, returned in in vecString 
  44970.      &Languages.  LCP: CountryLangListEngNat 
  44971.  
  44972.   Delete a country 
  44973.      bool deleteFromDesc() 
  44974.  
  44975.      Delete the country that uses the currently set description.  LCP: 
  44976.      CountryDelete 
  44977.  
  44978.   Set data members 
  44979.      bool setAll(mapString &FieldValues) 
  44980.  
  44981.      Sets all the data members of a topic using the mapString which is passed 
  44982.      to it.  Only the fields present in the mapString are updated, the other 
  44983.      fields are untouched.  LCP: CountryUpdate 
  44984.      bool setDesc(const string &DescSetting) 
  44985.  
  44986.      Set the short description 
  44987.      bool setDescLong(const string &DescLongSetting) 
  44988.  
  44989.      Set the long description 
  44990.      bool setDescNative(const string &DescNativeSetting) 
  44991.  
  44992.      Set the native language description 
  44993.      bool setNetCode(const string &NetCodeSetting) 
  44994.  
  44995.      Set the internet code for this country 
  44996.      bool erase() 
  44997.  
  44998.      Sets all the data members to empty 
  44999.  
  45000.   Get data members 
  45001.      bool getAll(mapString &FieldValues) 
  45002.  
  45003.      Return a mapString of all the data members of this topic. The key is the 
  45004.      variable name.  LCP: CountryAttribs 
  45005.      string getDesc() 
  45006.  
  45007.      Get the short description 
  45008.      string getDescLong() 
  45009.  
  45010.      Get the long description 
  45011.      string getDescNative() 
  45012.  
  45013.      Get the native language description 
  45014.      string getNetCode() 
  45015.  
  45016.      Get the internet code for this country 
  45017.  
  45018.  
  45019. ΓòÉΓòÉΓòÉ <hidden> ╨ƒDocUpdateID ΓòÉΓòÉΓòÉ
  45020.  
  45021.  
  45022. lyris_Country Class 
  45023.  
  45024.      class lyris_Country 
  45025.  
  45026.      For determining what countries exist, and what languages are spoken & 
  45027.      preferred in each country 
  45028.  
  45029.      Defined in: COUNTRY.H 
  45030.  
  45031.   Create a new country 
  45032.  
  45033.       bool createNew() 
  45034.  
  45035.      Creates a new country/language table row.  LCP: CountryCreate 
  45036.      bool updateDatabase() 
  45037.  
  45038.      Save the current country with the data members that have changed.  LCP: 
  45039.      CountryUpdate 
  45040.      bool VerifyFields() 
  45041.  
  45042.      Verify that all required fields are filled in. 
  45043.  
  45044.   Retrieve data from the database 
  45045.      bool fetchAllCountries(vecString &AllCountries) 
  45046.  
  45047.      Fetch a list of all countries.  LCP: CountryAll 
  45048.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45049.  
  45050.      Fetch a paired list of countries and their native language descriptions, 
  45051.      sorted by english description.  LCP: CountryEngNat 
  45052.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45053.  
  45054.      Fetch a paired list of native language country descriptions, and the 
  45055.      english name of the country. 
  45056.      bool retrieveFromNetCode() 
  45057.  
  45058.      Determine the country that uses the currently set NetCode.  Fills all the 
  45059.      other country attributes with values. LCP: CountryAttNetCode 
  45060.      bool retrieveFromDesc() 
  45061.  
  45062.      Determine the country that uses the currently set description.  Fills all 
  45063.      the other country attributes with values.  LCP: CountryAttribs 
  45064.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45065.  
  45066.      Determine the primary language of the current country.  "Desc" must be 
  45067.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45068.      CountryPrimLang 
  45069.      bool getAllLanguages(vecString &Languages) 
  45070.  
  45071.      Determine all the languages used by the current country.  "Desc" must be 
  45072.      already set.  The result is returned in priority order (highest priority 
  45073.      first) in vecString &Languages.  LCP: CountryLanguages 
  45074.      bool getLanguageList(vecString &Languages) 
  45075.  
  45076.      Get a list of all possible languages, in alphabetical order, returned in 
  45077.      vecString &Languages.  LCP: CountryLangList 
  45078.      bool getLanguageListEngNat(mapString &Languages) 
  45079.  
  45080.      Get a map of all possible languages, their native description in 
  45081.      alphabetical order by english description, returned in in vecString 
  45082.      &Languages.  LCP: CountryLangListEngNat 
  45083.  
  45084.   Delete a country 
  45085.      bool deleteFromDesc() 
  45086.  
  45087.      Delete the country that uses the currently set description.  LCP: 
  45088.      CountryDelete 
  45089.  
  45090.   Set data members 
  45091.      bool setAll(mapString &FieldValues) 
  45092.  
  45093.      Sets all the data members of a topic using the mapString which is passed 
  45094.      to it.  Only the fields present in the mapString are updated, the other 
  45095.      fields are untouched.  LCP: CountryUpdate 
  45096.      bool setDesc(const string &DescSetting) 
  45097.  
  45098.      Set the short description 
  45099.      bool setDescLong(const string &DescLongSetting) 
  45100.  
  45101.      Set the long description 
  45102.      bool setDescNative(const string &DescNativeSetting) 
  45103.  
  45104.      Set the native language description 
  45105.      bool setNetCode(const string &NetCodeSetting) 
  45106.  
  45107.      Set the internet code for this country 
  45108.      bool erase() 
  45109.  
  45110.      Sets all the data members to empty 
  45111.  
  45112.   Get data members 
  45113.      bool getAll(mapString &FieldValues) 
  45114.  
  45115.      Return a mapString of all the data members of this topic. The key is the 
  45116.      variable name.  LCP: CountryAttribs 
  45117.      string getDesc() 
  45118.  
  45119.      Get the short description 
  45120.      string getDescLong() 
  45121.  
  45122.      Get the long description 
  45123.      string getDescNative() 
  45124.  
  45125.      Get the native language description 
  45126.      string getNetCode() 
  45127.  
  45128.      Get the internet code for this country 
  45129.  
  45130.  
  45131. ΓòÉΓòÉΓòÉ <hidden> ╨áDocuments ΓòÉΓòÉΓòÉ
  45132.  
  45133.  
  45134. lyris_Country Class 
  45135.  
  45136.      class lyris_Country 
  45137.  
  45138.      For determining what countries exist, and what languages are spoken & 
  45139.      preferred in each country 
  45140.  
  45141.      Defined in: COUNTRY.H 
  45142.  
  45143.   Create a new country 
  45144.  
  45145.       bool createNew() 
  45146.  
  45147.      Creates a new country/language table row.  LCP: CountryCreate 
  45148.      bool updateDatabase() 
  45149.  
  45150.      Save the current country with the data members that have changed.  LCP: 
  45151.      CountryUpdate 
  45152.      bool VerifyFields() 
  45153.  
  45154.      Verify that all required fields are filled in. 
  45155.  
  45156.   Retrieve data from the database 
  45157.      bool fetchAllCountries(vecString &AllCountries) 
  45158.  
  45159.      Fetch a list of all countries.  LCP: CountryAll 
  45160.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45161.  
  45162.      Fetch a paired list of countries and their native language descriptions, 
  45163.      sorted by english description.  LCP: CountryEngNat 
  45164.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45165.  
  45166.      Fetch a paired list of native language country descriptions, and the 
  45167.      english name of the country. 
  45168.      bool retrieveFromNetCode() 
  45169.  
  45170.      Determine the country that uses the currently set NetCode.  Fills all the 
  45171.      other country attributes with values. LCP: CountryAttNetCode 
  45172.      bool retrieveFromDesc() 
  45173.  
  45174.      Determine the country that uses the currently set description.  Fills all 
  45175.      the other country attributes with values.  LCP: CountryAttribs 
  45176.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45177.  
  45178.      Determine the primary language of the current country.  "Desc" must be 
  45179.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45180.      CountryPrimLang 
  45181.      bool getAllLanguages(vecString &Languages) 
  45182.  
  45183.      Determine all the languages used by the current country.  "Desc" must be 
  45184.      already set.  The result is returned in priority order (highest priority 
  45185.      first) in vecString &Languages.  LCP: CountryLanguages 
  45186.      bool getLanguageList(vecString &Languages) 
  45187.  
  45188.      Get a list of all possible languages, in alphabetical order, returned in 
  45189.      vecString &Languages.  LCP: CountryLangList 
  45190.      bool getLanguageListEngNat(mapString &Languages) 
  45191.  
  45192.      Get a map of all possible languages, their native description in 
  45193.      alphabetical order by english description, returned in in vecString 
  45194.      &Languages.  LCP: CountryLangListEngNat 
  45195.  
  45196.   Delete a country 
  45197.      bool deleteFromDesc() 
  45198.  
  45199.      Delete the country that uses the currently set description.  LCP: 
  45200.      CountryDelete 
  45201.  
  45202.   Set data members 
  45203.      bool setAll(mapString &FieldValues) 
  45204.  
  45205.      Sets all the data members of a topic using the mapString which is passed 
  45206.      to it.  Only the fields present in the mapString are updated, the other 
  45207.      fields are untouched.  LCP: CountryUpdate 
  45208.      bool setDesc(const string &DescSetting) 
  45209.  
  45210.      Set the short description 
  45211.      bool setDescLong(const string &DescLongSetting) 
  45212.  
  45213.      Set the long description 
  45214.      bool setDescNative(const string &DescNativeSetting) 
  45215.  
  45216.      Set the native language description 
  45217.      bool setNetCode(const string &NetCodeSetting) 
  45218.  
  45219.      Set the internet code for this country 
  45220.      bool erase() 
  45221.  
  45222.      Sets all the data members to empty 
  45223.  
  45224.   Get data members 
  45225.      bool getAll(mapString &FieldValues) 
  45226.  
  45227.      Return a mapString of all the data members of this topic. The key is the 
  45228.      variable name.  LCP: CountryAttribs 
  45229.      string getDesc() 
  45230.  
  45231.      Get the short description 
  45232.      string getDescLong() 
  45233.  
  45234.      Get the long description 
  45235.      string getDescNative() 
  45236.  
  45237.      Get the native language description 
  45238.      string getNetCode() 
  45239.  
  45240.      Get the internet code for this country 
  45241.  
  45242.  
  45243. ΓòÉΓòÉΓòÉ <hidden> ╨íDocTypesAllDesc ΓòÉΓòÉΓòÉ
  45244.  
  45245.  
  45246. lyris_Country Class 
  45247.  
  45248.      class lyris_Country 
  45249.  
  45250.      For determining what countries exist, and what languages are spoken & 
  45251.      preferred in each country 
  45252.  
  45253.      Defined in: COUNTRY.H 
  45254.  
  45255.   Create a new country 
  45256.  
  45257.       bool createNew() 
  45258.  
  45259.      Creates a new country/language table row.  LCP: CountryCreate 
  45260.      bool updateDatabase() 
  45261.  
  45262.      Save the current country with the data members that have changed.  LCP: 
  45263.      CountryUpdate 
  45264.      bool VerifyFields() 
  45265.  
  45266.      Verify that all required fields are filled in. 
  45267.  
  45268.   Retrieve data from the database 
  45269.      bool fetchAllCountries(vecString &AllCountries) 
  45270.  
  45271.      Fetch a list of all countries.  LCP: CountryAll 
  45272.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45273.  
  45274.      Fetch a paired list of countries and their native language descriptions, 
  45275.      sorted by english description.  LCP: CountryEngNat 
  45276.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45277.  
  45278.      Fetch a paired list of native language country descriptions, and the 
  45279.      english name of the country. 
  45280.      bool retrieveFromNetCode() 
  45281.  
  45282.      Determine the country that uses the currently set NetCode.  Fills all the 
  45283.      other country attributes with values. LCP: CountryAttNetCode 
  45284.      bool retrieveFromDesc() 
  45285.  
  45286.      Determine the country that uses the currently set description.  Fills all 
  45287.      the other country attributes with values.  LCP: CountryAttribs 
  45288.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45289.  
  45290.      Determine the primary language of the current country.  "Desc" must be 
  45291.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45292.      CountryPrimLang 
  45293.      bool getAllLanguages(vecString &Languages) 
  45294.  
  45295.      Determine all the languages used by the current country.  "Desc" must be 
  45296.      already set.  The result is returned in priority order (highest priority 
  45297.      first) in vecString &Languages.  LCP: CountryLanguages 
  45298.      bool getLanguageList(vecString &Languages) 
  45299.  
  45300.      Get a list of all possible languages, in alphabetical order, returned in 
  45301.      vecString &Languages.  LCP: CountryLangList 
  45302.      bool getLanguageListEngNat(mapString &Languages) 
  45303.  
  45304.      Get a map of all possible languages, their native description in 
  45305.      alphabetical order by english description, returned in in vecString 
  45306.      &Languages.  LCP: CountryLangListEngNat 
  45307.  
  45308.   Delete a country 
  45309.      bool deleteFromDesc() 
  45310.  
  45311.      Delete the country that uses the currently set description.  LCP: 
  45312.      CountryDelete 
  45313.  
  45314.   Set data members 
  45315.      bool setAll(mapString &FieldValues) 
  45316.  
  45317.      Sets all the data members of a topic using the mapString which is passed 
  45318.      to it.  Only the fields present in the mapString are updated, the other 
  45319.      fields are untouched.  LCP: CountryUpdate 
  45320.      bool setDesc(const string &DescSetting) 
  45321.  
  45322.      Set the short description 
  45323.      bool setDescLong(const string &DescLongSetting) 
  45324.  
  45325.      Set the long description 
  45326.      bool setDescNative(const string &DescNativeSetting) 
  45327.  
  45328.      Set the native language description 
  45329.      bool setNetCode(const string &NetCodeSetting) 
  45330.  
  45331.      Set the internet code for this country 
  45332.      bool erase() 
  45333.  
  45334.      Sets all the data members to empty 
  45335.  
  45336.   Get data members 
  45337.      bool getAll(mapString &FieldValues) 
  45338.  
  45339.      Return a mapString of all the data members of this topic. The key is the 
  45340.      variable name.  LCP: CountryAttribs 
  45341.      string getDesc() 
  45342.  
  45343.      Get the short description 
  45344.      string getDescLong() 
  45345.  
  45346.      Get the long description 
  45347.      string getDescNative() 
  45348.  
  45349.      Get the native language description 
  45350.      string getNetCode() 
  45351.  
  45352.      Get the internet code for this country 
  45353.  
  45354.  
  45355. ΓòÉΓòÉΓòÉ <hidden> ╨óDocTypes.dbf ΓòÉΓòÉΓòÉ
  45356.  
  45357.  
  45358. lyris_Country Class 
  45359.  
  45360.      class lyris_Country 
  45361.  
  45362.      For determining what countries exist, and what languages are spoken & 
  45363.      preferred in each country 
  45364.  
  45365.      Defined in: COUNTRY.H 
  45366.  
  45367.   Create a new country 
  45368.  
  45369.       bool createNew() 
  45370.  
  45371.      Creates a new country/language table row.  LCP: CountryCreate 
  45372.      bool updateDatabase() 
  45373.  
  45374.      Save the current country with the data members that have changed.  LCP: 
  45375.      CountryUpdate 
  45376.      bool VerifyFields() 
  45377.  
  45378.      Verify that all required fields are filled in. 
  45379.  
  45380.   Retrieve data from the database 
  45381.      bool fetchAllCountries(vecString &AllCountries) 
  45382.  
  45383.      Fetch a list of all countries.  LCP: CountryAll 
  45384.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45385.  
  45386.      Fetch a paired list of countries and their native language descriptions, 
  45387.      sorted by english description.  LCP: CountryEngNat 
  45388.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45389.  
  45390.      Fetch a paired list of native language country descriptions, and the 
  45391.      english name of the country. 
  45392.      bool retrieveFromNetCode() 
  45393.  
  45394.      Determine the country that uses the currently set NetCode.  Fills all the 
  45395.      other country attributes with values. LCP: CountryAttNetCode 
  45396.      bool retrieveFromDesc() 
  45397.  
  45398.      Determine the country that uses the currently set description.  Fills all 
  45399.      the other country attributes with values.  LCP: CountryAttribs 
  45400.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45401.  
  45402.      Determine the primary language of the current country.  "Desc" must be 
  45403.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45404.      CountryPrimLang 
  45405.      bool getAllLanguages(vecString &Languages) 
  45406.  
  45407.      Determine all the languages used by the current country.  "Desc" must be 
  45408.      already set.  The result is returned in priority order (highest priority 
  45409.      first) in vecString &Languages.  LCP: CountryLanguages 
  45410.      bool getLanguageList(vecString &Languages) 
  45411.  
  45412.      Get a list of all possible languages, in alphabetical order, returned in 
  45413.      vecString &Languages.  LCP: CountryLangList 
  45414.      bool getLanguageListEngNat(mapString &Languages) 
  45415.  
  45416.      Get a map of all possible languages, their native description in 
  45417.      alphabetical order by english description, returned in in vecString 
  45418.      &Languages.  LCP: CountryLangListEngNat 
  45419.  
  45420.   Delete a country 
  45421.      bool deleteFromDesc() 
  45422.  
  45423.      Delete the country that uses the currently set description.  LCP: 
  45424.      CountryDelete 
  45425.  
  45426.   Set data members 
  45427.      bool setAll(mapString &FieldValues) 
  45428.  
  45429.      Sets all the data members of a topic using the mapString which is passed 
  45430.      to it.  Only the fields present in the mapString are updated, the other 
  45431.      fields are untouched.  LCP: CountryUpdate 
  45432.      bool setDesc(const string &DescSetting) 
  45433.  
  45434.      Set the short description 
  45435.      bool setDescLong(const string &DescLongSetting) 
  45436.  
  45437.      Set the long description 
  45438.      bool setDescNative(const string &DescNativeSetting) 
  45439.  
  45440.      Set the native language description 
  45441.      bool setNetCode(const string &NetCodeSetting) 
  45442.  
  45443.      Set the internet code for this country 
  45444.      bool erase() 
  45445.  
  45446.      Sets all the data members to empty 
  45447.  
  45448.   Get data members 
  45449.      bool getAll(mapString &FieldValues) 
  45450.  
  45451.      Return a mapString of all the data members of this topic. The key is the 
  45452.      variable name.  LCP: CountryAttribs 
  45453.      string getDesc() 
  45454.  
  45455.      Get the short description 
  45456.      string getDescLong() 
  45457.  
  45458.      Get the long description 
  45459.      string getDescNative() 
  45460.  
  45461.      Get the native language description 
  45462.      string getNetCode() 
  45463.  
  45464.      Get the internet code for this country 
  45465.  
  45466.  
  45467. ΓòÉΓòÉΓòÉ <hidden> ╨úDocTitleType ΓòÉΓòÉΓòÉ
  45468.  
  45469.  
  45470. lyris_Country Class 
  45471.  
  45472.      class lyris_Country 
  45473.  
  45474.      For determining what countries exist, and what languages are spoken & 
  45475.      preferred in each country 
  45476.  
  45477.      Defined in: COUNTRY.H 
  45478.  
  45479.   Create a new country 
  45480.  
  45481.       bool createNew() 
  45482.  
  45483.      Creates a new country/language table row.  LCP: CountryCreate 
  45484.      bool updateDatabase() 
  45485.  
  45486.      Save the current country with the data members that have changed.  LCP: 
  45487.      CountryUpdate 
  45488.      bool VerifyFields() 
  45489.  
  45490.      Verify that all required fields are filled in. 
  45491.  
  45492.   Retrieve data from the database 
  45493.      bool fetchAllCountries(vecString &AllCountries) 
  45494.  
  45495.      Fetch a list of all countries.  LCP: CountryAll 
  45496.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45497.  
  45498.      Fetch a paired list of countries and their native language descriptions, 
  45499.      sorted by english description.  LCP: CountryEngNat 
  45500.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45501.  
  45502.      Fetch a paired list of native language country descriptions, and the 
  45503.      english name of the country. 
  45504.      bool retrieveFromNetCode() 
  45505.  
  45506.      Determine the country that uses the currently set NetCode.  Fills all the 
  45507.      other country attributes with values. LCP: CountryAttNetCode 
  45508.      bool retrieveFromDesc() 
  45509.  
  45510.      Determine the country that uses the currently set description.  Fills all 
  45511.      the other country attributes with values.  LCP: CountryAttribs 
  45512.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45513.  
  45514.      Determine the primary language of the current country.  "Desc" must be 
  45515.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45516.      CountryPrimLang 
  45517.      bool getAllLanguages(vecString &Languages) 
  45518.  
  45519.      Determine all the languages used by the current country.  "Desc" must be 
  45520.      already set.  The result is returned in priority order (highest priority 
  45521.      first) in vecString &Languages.  LCP: CountryLanguages 
  45522.      bool getLanguageList(vecString &Languages) 
  45523.  
  45524.      Get a list of all possible languages, in alphabetical order, returned in 
  45525.      vecString &Languages.  LCP: CountryLangList 
  45526.      bool getLanguageListEngNat(mapString &Languages) 
  45527.  
  45528.      Get a map of all possible languages, their native description in 
  45529.      alphabetical order by english description, returned in in vecString 
  45530.      &Languages.  LCP: CountryLangListEngNat 
  45531.  
  45532.   Delete a country 
  45533.      bool deleteFromDesc() 
  45534.  
  45535.      Delete the country that uses the currently set description.  LCP: 
  45536.      CountryDelete 
  45537.  
  45538.   Set data members 
  45539.      bool setAll(mapString &FieldValues) 
  45540.  
  45541.      Sets all the data members of a topic using the mapString which is passed 
  45542.      to it.  Only the fields present in the mapString are updated, the other 
  45543.      fields are untouched.  LCP: CountryUpdate 
  45544.      bool setDesc(const string &DescSetting) 
  45545.  
  45546.      Set the short description 
  45547.      bool setDescLong(const string &DescLongSetting) 
  45548.  
  45549.      Set the long description 
  45550.      bool setDescNative(const string &DescNativeSetting) 
  45551.  
  45552.      Set the native language description 
  45553.      bool setNetCode(const string &NetCodeSetting) 
  45554.  
  45555.      Set the internet code for this country 
  45556.      bool erase() 
  45557.  
  45558.      Sets all the data members to empty 
  45559.  
  45560.   Get data members 
  45561.      bool getAll(mapString &FieldValues) 
  45562.  
  45563.      Return a mapString of all the data members of this topic. The key is the 
  45564.      variable name.  LCP: CountryAttribs 
  45565.      string getDesc() 
  45566.  
  45567.      Get the short description 
  45568.      string getDescLong() 
  45569.  
  45570.      Get the long description 
  45571.      string getDescNative() 
  45572.  
  45573.      Get the native language description 
  45574.      string getNetCode() 
  45575.  
  45576.      Get the internet code for this country 
  45577.  
  45578.  
  45579. ΓòÉΓòÉΓòÉ <hidden> ╨ñDocs.dbf ΓòÉΓòÉΓòÉ
  45580.  
  45581.  
  45582. lyris_Country Class 
  45583.  
  45584.      class lyris_Country 
  45585.  
  45586.      For determining what countries exist, and what languages are spoken & 
  45587.      preferred in each country 
  45588.  
  45589.      Defined in: COUNTRY.H 
  45590.  
  45591.   Create a new country 
  45592.  
  45593.       bool createNew() 
  45594.  
  45595.      Creates a new country/language table row.  LCP: CountryCreate 
  45596.      bool updateDatabase() 
  45597.  
  45598.      Save the current country with the data members that have changed.  LCP: 
  45599.      CountryUpdate 
  45600.      bool VerifyFields() 
  45601.  
  45602.      Verify that all required fields are filled in. 
  45603.  
  45604.   Retrieve data from the database 
  45605.      bool fetchAllCountries(vecString &AllCountries) 
  45606.  
  45607.      Fetch a list of all countries.  LCP: CountryAll 
  45608.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45609.  
  45610.      Fetch a paired list of countries and their native language descriptions, 
  45611.      sorted by english description.  LCP: CountryEngNat 
  45612.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45613.  
  45614.      Fetch a paired list of native language country descriptions, and the 
  45615.      english name of the country. 
  45616.      bool retrieveFromNetCode() 
  45617.  
  45618.      Determine the country that uses the currently set NetCode.  Fills all the 
  45619.      other country attributes with values. LCP: CountryAttNetCode 
  45620.      bool retrieveFromDesc() 
  45621.  
  45622.      Determine the country that uses the currently set description.  Fills all 
  45623.      the other country attributes with values.  LCP: CountryAttribs 
  45624.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45625.  
  45626.      Determine the primary language of the current country.  "Desc" must be 
  45627.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45628.      CountryPrimLang 
  45629.      bool getAllLanguages(vecString &Languages) 
  45630.  
  45631.      Determine all the languages used by the current country.  "Desc" must be 
  45632.      already set.  The result is returned in priority order (highest priority 
  45633.      first) in vecString &Languages.  LCP: CountryLanguages 
  45634.      bool getLanguageList(vecString &Languages) 
  45635.  
  45636.      Get a list of all possible languages, in alphabetical order, returned in 
  45637.      vecString &Languages.  LCP: CountryLangList 
  45638.      bool getLanguageListEngNat(mapString &Languages) 
  45639.  
  45640.      Get a map of all possible languages, their native description in 
  45641.      alphabetical order by english description, returned in in vecString 
  45642.      &Languages.  LCP: CountryLangListEngNat 
  45643.  
  45644.   Delete a country 
  45645.      bool deleteFromDesc() 
  45646.  
  45647.      Delete the country that uses the currently set description.  LCP: 
  45648.      CountryDelete 
  45649.  
  45650.   Set data members 
  45651.      bool setAll(mapString &FieldValues) 
  45652.  
  45653.      Sets all the data members of a topic using the mapString which is passed 
  45654.      to it.  Only the fields present in the mapString are updated, the other 
  45655.      fields are untouched.  LCP: CountryUpdate 
  45656.      bool setDesc(const string &DescSetting) 
  45657.  
  45658.      Set the short description 
  45659.      bool setDescLong(const string &DescLongSetting) 
  45660.  
  45661.      Set the long description 
  45662.      bool setDescNative(const string &DescNativeSetting) 
  45663.  
  45664.      Set the native language description 
  45665.      bool setNetCode(const string &NetCodeSetting) 
  45666.  
  45667.      Set the internet code for this country 
  45668.      bool erase() 
  45669.  
  45670.      Sets all the data members to empty 
  45671.  
  45672.   Get data members 
  45673.      bool getAll(mapString &FieldValues) 
  45674.  
  45675.      Return a mapString of all the data members of this topic. The key is the 
  45676.      variable name.  LCP: CountryAttribs 
  45677.      string getDesc() 
  45678.  
  45679.      Get the short description 
  45680.      string getDescLong() 
  45681.  
  45682.      Get the long description 
  45683.      string getDescNative() 
  45684.  
  45685.      Get the native language description 
  45686.      string getNetCode() 
  45687.  
  45688.      Get the internet code for this country 
  45689.  
  45690.  
  45691. ΓòÉΓòÉΓòÉ <hidden> ╨ÑDocIDLangTitle ΓòÉΓòÉΓòÉ
  45692.  
  45693.  
  45694. lyris_Country Class 
  45695.  
  45696.      class lyris_Country 
  45697.  
  45698.      For determining what countries exist, and what languages are spoken & 
  45699.      preferred in each country 
  45700.  
  45701.      Defined in: COUNTRY.H 
  45702.  
  45703.   Create a new country 
  45704.  
  45705.       bool createNew() 
  45706.  
  45707.      Creates a new country/language table row.  LCP: CountryCreate 
  45708.      bool updateDatabase() 
  45709.  
  45710.      Save the current country with the data members that have changed.  LCP: 
  45711.      CountryUpdate 
  45712.      bool VerifyFields() 
  45713.  
  45714.      Verify that all required fields are filled in. 
  45715.  
  45716.   Retrieve data from the database 
  45717.      bool fetchAllCountries(vecString &AllCountries) 
  45718.  
  45719.      Fetch a list of all countries.  LCP: CountryAll 
  45720.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45721.  
  45722.      Fetch a paired list of countries and their native language descriptions, 
  45723.      sorted by english description.  LCP: CountryEngNat 
  45724.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45725.  
  45726.      Fetch a paired list of native language country descriptions, and the 
  45727.      english name of the country. 
  45728.      bool retrieveFromNetCode() 
  45729.  
  45730.      Determine the country that uses the currently set NetCode.  Fills all the 
  45731.      other country attributes with values. LCP: CountryAttNetCode 
  45732.      bool retrieveFromDesc() 
  45733.  
  45734.      Determine the country that uses the currently set description.  Fills all 
  45735.      the other country attributes with values.  LCP: CountryAttribs 
  45736.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45737.  
  45738.      Determine the primary language of the current country.  "Desc" must be 
  45739.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45740.      CountryPrimLang 
  45741.      bool getAllLanguages(vecString &Languages) 
  45742.  
  45743.      Determine all the languages used by the current country.  "Desc" must be 
  45744.      already set.  The result is returned in priority order (highest priority 
  45745.      first) in vecString &Languages.  LCP: CountryLanguages 
  45746.      bool getLanguageList(vecString &Languages) 
  45747.  
  45748.      Get a list of all possible languages, in alphabetical order, returned in 
  45749.      vecString &Languages.  LCP: CountryLangList 
  45750.      bool getLanguageListEngNat(mapString &Languages) 
  45751.  
  45752.      Get a map of all possible languages, their native description in 
  45753.      alphabetical order by english description, returned in in vecString 
  45754.      &Languages.  LCP: CountryLangListEngNat 
  45755.  
  45756.   Delete a country 
  45757.      bool deleteFromDesc() 
  45758.  
  45759.      Delete the country that uses the currently set description.  LCP: 
  45760.      CountryDelete 
  45761.  
  45762.   Set data members 
  45763.      bool setAll(mapString &FieldValues) 
  45764.  
  45765.      Sets all the data members of a topic using the mapString which is passed 
  45766.      to it.  Only the fields present in the mapString are updated, the other 
  45767.      fields are untouched.  LCP: CountryUpdate 
  45768.      bool setDesc(const string &DescSetting) 
  45769.  
  45770.      Set the short description 
  45771.      bool setDescLong(const string &DescLongSetting) 
  45772.  
  45773.      Set the long description 
  45774.      bool setDescNative(const string &DescNativeSetting) 
  45775.  
  45776.      Set the native language description 
  45777.      bool setNetCode(const string &NetCodeSetting) 
  45778.  
  45779.      Set the internet code for this country 
  45780.      bool erase() 
  45781.  
  45782.      Sets all the data members to empty 
  45783.  
  45784.   Get data members 
  45785.      bool getAll(mapString &FieldValues) 
  45786.  
  45787.      Return a mapString of all the data members of this topic. The key is the 
  45788.      variable name.  LCP: CountryAttribs 
  45789.      string getDesc() 
  45790.  
  45791.      Get the short description 
  45792.      string getDescLong() 
  45793.  
  45794.      Get the long description 
  45795.      string getDescNative() 
  45796.  
  45797.      Get the native language description 
  45798.      string getNetCode() 
  45799.  
  45800.      Get the internet code for this country 
  45801.  
  45802.  
  45803. ΓòÉΓòÉΓòÉ <hidden> ╨ªDocDelete ΓòÉΓòÉΓòÉ
  45804.  
  45805.  
  45806. lyris_Country Class 
  45807.  
  45808.      class lyris_Country 
  45809.  
  45810.      For determining what countries exist, and what languages are spoken & 
  45811.      preferred in each country 
  45812.  
  45813.      Defined in: COUNTRY.H 
  45814.  
  45815.   Create a new country 
  45816.  
  45817.       bool createNew() 
  45818.  
  45819.      Creates a new country/language table row.  LCP: CountryCreate 
  45820.      bool updateDatabase() 
  45821.  
  45822.      Save the current country with the data members that have changed.  LCP: 
  45823.      CountryUpdate 
  45824.      bool VerifyFields() 
  45825.  
  45826.      Verify that all required fields are filled in. 
  45827.  
  45828.   Retrieve data from the database 
  45829.      bool fetchAllCountries(vecString &AllCountries) 
  45830.  
  45831.      Fetch a list of all countries.  LCP: CountryAll 
  45832.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45833.  
  45834.      Fetch a paired list of countries and their native language descriptions, 
  45835.      sorted by english description.  LCP: CountryEngNat 
  45836.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45837.  
  45838.      Fetch a paired list of native language country descriptions, and the 
  45839.      english name of the country. 
  45840.      bool retrieveFromNetCode() 
  45841.  
  45842.      Determine the country that uses the currently set NetCode.  Fills all the 
  45843.      other country attributes with values. LCP: CountryAttNetCode 
  45844.      bool retrieveFromDesc() 
  45845.  
  45846.      Determine the country that uses the currently set description.  Fills all 
  45847.      the other country attributes with values.  LCP: CountryAttribs 
  45848.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45849.  
  45850.      Determine the primary language of the current country.  "Desc" must be 
  45851.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45852.      CountryPrimLang 
  45853.      bool getAllLanguages(vecString &Languages) 
  45854.  
  45855.      Determine all the languages used by the current country.  "Desc" must be 
  45856.      already set.  The result is returned in priority order (highest priority 
  45857.      first) in vecString &Languages.  LCP: CountryLanguages 
  45858.      bool getLanguageList(vecString &Languages) 
  45859.  
  45860.      Get a list of all possible languages, in alphabetical order, returned in 
  45861.      vecString &Languages.  LCP: CountryLangList 
  45862.      bool getLanguageListEngNat(mapString &Languages) 
  45863.  
  45864.      Get a map of all possible languages, their native description in 
  45865.      alphabetical order by english description, returned in in vecString 
  45866.      &Languages.  LCP: CountryLangListEngNat 
  45867.  
  45868.   Delete a country 
  45869.      bool deleteFromDesc() 
  45870.  
  45871.      Delete the country that uses the currently set description.  LCP: 
  45872.      CountryDelete 
  45873.  
  45874.   Set data members 
  45875.      bool setAll(mapString &FieldValues) 
  45876.  
  45877.      Sets all the data members of a topic using the mapString which is passed 
  45878.      to it.  Only the fields present in the mapString are updated, the other 
  45879.      fields are untouched.  LCP: CountryUpdate 
  45880.      bool setDesc(const string &DescSetting) 
  45881.  
  45882.      Set the short description 
  45883.      bool setDescLong(const string &DescLongSetting) 
  45884.  
  45885.      Set the long description 
  45886.      bool setDescNative(const string &DescNativeSetting) 
  45887.  
  45888.      Set the native language description 
  45889.      bool setNetCode(const string &NetCodeSetting) 
  45890.  
  45891.      Set the internet code for this country 
  45892.      bool erase() 
  45893.  
  45894.      Sets all the data members to empty 
  45895.  
  45896.   Get data members 
  45897.      bool getAll(mapString &FieldValues) 
  45898.  
  45899.      Return a mapString of all the data members of this topic. The key is the 
  45900.      variable name.  LCP: CountryAttribs 
  45901.      string getDesc() 
  45902.  
  45903.      Get the short description 
  45904.      string getDescLong() 
  45905.  
  45906.      Get the long description 
  45907.      string getDescNative() 
  45908.  
  45909.      Get the native language description 
  45910.      string getNetCode() 
  45911.  
  45912.      Get the internet code for this country 
  45913.  
  45914.  
  45915. ΓòÉΓòÉΓòÉ <hidden> ╨ºDocAttribsID ΓòÉΓòÉΓòÉ
  45916.  
  45917.  
  45918. lyris_Country Class 
  45919.  
  45920.      class lyris_Country 
  45921.  
  45922.      For determining what countries exist, and what languages are spoken & 
  45923.      preferred in each country 
  45924.  
  45925.      Defined in: COUNTRY.H 
  45926.  
  45927.   Create a new country 
  45928.  
  45929.       bool createNew() 
  45930.  
  45931.      Creates a new country/language table row.  LCP: CountryCreate 
  45932.      bool updateDatabase() 
  45933.  
  45934.      Save the current country with the data members that have changed.  LCP: 
  45935.      CountryUpdate 
  45936.      bool VerifyFields() 
  45937.  
  45938.      Verify that all required fields are filled in. 
  45939.  
  45940.   Retrieve data from the database 
  45941.      bool fetchAllCountries(vecString &AllCountries) 
  45942.  
  45943.      Fetch a list of all countries.  LCP: CountryAll 
  45944.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  45945.  
  45946.      Fetch a paired list of countries and their native language descriptions, 
  45947.      sorted by english description.  LCP: CountryEngNat 
  45948.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  45949.  
  45950.      Fetch a paired list of native language country descriptions, and the 
  45951.      english name of the country. 
  45952.      bool retrieveFromNetCode() 
  45953.  
  45954.      Determine the country that uses the currently set NetCode.  Fills all the 
  45955.      other country attributes with values. LCP: CountryAttNetCode 
  45956.      bool retrieveFromDesc() 
  45957.  
  45958.      Determine the country that uses the currently set description.  Fills all 
  45959.      the other country attributes with values.  LCP: CountryAttribs 
  45960.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  45961.  
  45962.      Determine the primary language of the current country.  "Desc" must be 
  45963.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  45964.      CountryPrimLang 
  45965.      bool getAllLanguages(vecString &Languages) 
  45966.  
  45967.      Determine all the languages used by the current country.  "Desc" must be 
  45968.      already set.  The result is returned in priority order (highest priority 
  45969.      first) in vecString &Languages.  LCP: CountryLanguages 
  45970.      bool getLanguageList(vecString &Languages) 
  45971.  
  45972.      Get a list of all possible languages, in alphabetical order, returned in 
  45973.      vecString &Languages.  LCP: CountryLangList 
  45974.      bool getLanguageListEngNat(mapString &Languages) 
  45975.  
  45976.      Get a map of all possible languages, their native description in 
  45977.      alphabetical order by english description, returned in in vecString 
  45978.      &Languages.  LCP: CountryLangListEngNat 
  45979.  
  45980.   Delete a country 
  45981.      bool deleteFromDesc() 
  45982.  
  45983.      Delete the country that uses the currently set description.  LCP: 
  45984.      CountryDelete 
  45985.  
  45986.   Set data members 
  45987.      bool setAll(mapString &FieldValues) 
  45988.  
  45989.      Sets all the data members of a topic using the mapString which is passed 
  45990.      to it.  Only the fields present in the mapString are updated, the other 
  45991.      fields are untouched.  LCP: CountryUpdate 
  45992.      bool setDesc(const string &DescSetting) 
  45993.  
  45994.      Set the short description 
  45995.      bool setDescLong(const string &DescLongSetting) 
  45996.  
  45997.      Set the long description 
  45998.      bool setDescNative(const string &DescNativeSetting) 
  45999.  
  46000.      Set the native language description 
  46001.      bool setNetCode(const string &NetCodeSetting) 
  46002.  
  46003.      Set the internet code for this country 
  46004.      bool erase() 
  46005.  
  46006.      Sets all the data members to empty 
  46007.  
  46008.   Get data members 
  46009.      bool getAll(mapString &FieldValues) 
  46010.  
  46011.      Return a mapString of all the data members of this topic. The key is the 
  46012.      variable name.  LCP: CountryAttribs 
  46013.      string getDesc() 
  46014.  
  46015.      Get the short description 
  46016.      string getDescLong() 
  46017.  
  46018.      Get the long description 
  46019.      string getDescNative() 
  46020.  
  46021.      Get the native language description 
  46022.      string getNetCode() 
  46023.  
  46024.      Get the internet code for this country 
  46025.  
  46026.  
  46027. ΓòÉΓòÉΓòÉ <hidden> ╨¿DocAllID ΓòÉΓòÉΓòÉ
  46028.  
  46029.  
  46030. lyris_Country Class 
  46031.  
  46032.      class lyris_Country 
  46033.  
  46034.      For determining what countries exist, and what languages are spoken & 
  46035.      preferred in each country 
  46036.  
  46037.      Defined in: COUNTRY.H 
  46038.  
  46039.   Create a new country 
  46040.  
  46041.       bool createNew() 
  46042.  
  46043.      Creates a new country/language table row.  LCP: CountryCreate 
  46044.      bool updateDatabase() 
  46045.  
  46046.      Save the current country with the data members that have changed.  LCP: 
  46047.      CountryUpdate 
  46048.      bool VerifyFields() 
  46049.  
  46050.      Verify that all required fields are filled in. 
  46051.  
  46052.   Retrieve data from the database 
  46053.      bool fetchAllCountries(vecString &AllCountries) 
  46054.  
  46055.      Fetch a list of all countries.  LCP: CountryAll 
  46056.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46057.  
  46058.      Fetch a paired list of countries and their native language descriptions, 
  46059.      sorted by english description.  LCP: CountryEngNat 
  46060.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46061.  
  46062.      Fetch a paired list of native language country descriptions, and the 
  46063.      english name of the country. 
  46064.      bool retrieveFromNetCode() 
  46065.  
  46066.      Determine the country that uses the currently set NetCode.  Fills all the 
  46067.      other country attributes with values. LCP: CountryAttNetCode 
  46068.      bool retrieveFromDesc() 
  46069.  
  46070.      Determine the country that uses the currently set description.  Fills all 
  46071.      the other country attributes with values.  LCP: CountryAttribs 
  46072.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46073.  
  46074.      Determine the primary language of the current country.  "Desc" must be 
  46075.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46076.      CountryPrimLang 
  46077.      bool getAllLanguages(vecString &Languages) 
  46078.  
  46079.      Determine all the languages used by the current country.  "Desc" must be 
  46080.      already set.  The result is returned in priority order (highest priority 
  46081.      first) in vecString &Languages.  LCP: CountryLanguages 
  46082.      bool getLanguageList(vecString &Languages) 
  46083.  
  46084.      Get a list of all possible languages, in alphabetical order, returned in 
  46085.      vecString &Languages.  LCP: CountryLangList 
  46086.      bool getLanguageListEngNat(mapString &Languages) 
  46087.  
  46088.      Get a map of all possible languages, their native description in 
  46089.      alphabetical order by english description, returned in in vecString 
  46090.      &Languages.  LCP: CountryLangListEngNat 
  46091.  
  46092.   Delete a country 
  46093.      bool deleteFromDesc() 
  46094.  
  46095.      Delete the country that uses the currently set description.  LCP: 
  46096.      CountryDelete 
  46097.  
  46098.   Set data members 
  46099.      bool setAll(mapString &FieldValues) 
  46100.  
  46101.      Sets all the data members of a topic using the mapString which is passed 
  46102.      to it.  Only the fields present in the mapString are updated, the other 
  46103.      fields are untouched.  LCP: CountryUpdate 
  46104.      bool setDesc(const string &DescSetting) 
  46105.  
  46106.      Set the short description 
  46107.      bool setDescLong(const string &DescLongSetting) 
  46108.  
  46109.      Set the long description 
  46110.      bool setDescNative(const string &DescNativeSetting) 
  46111.  
  46112.      Set the native language description 
  46113.      bool setNetCode(const string &NetCodeSetting) 
  46114.  
  46115.      Set the internet code for this country 
  46116.      bool erase() 
  46117.  
  46118.      Sets all the data members to empty 
  46119.  
  46120.   Get data members 
  46121.      bool getAll(mapString &FieldValues) 
  46122.  
  46123.      Return a mapString of all the data members of this topic. The key is the 
  46124.      variable name.  LCP: CountryAttribs 
  46125.      string getDesc() 
  46126.  
  46127.      Get the short description 
  46128.      string getDescLong() 
  46129.  
  46130.      Get the long description 
  46131.      string getDescNative() 
  46132.  
  46133.      Get the native language description 
  46134.      string getNetCode() 
  46135.  
  46136.      Get the internet code for this country 
  46137.  
  46138.  
  46139. ΓòÉΓòÉΓòÉ <hidden> ╨⌐DisplayAssoc ΓòÉΓòÉΓòÉ
  46140.  
  46141.  
  46142. lyris_Country Class 
  46143.  
  46144.      class lyris_Country 
  46145.  
  46146.      For determining what countries exist, and what languages are spoken & 
  46147.      preferred in each country 
  46148.  
  46149.      Defined in: COUNTRY.H 
  46150.  
  46151.   Create a new country 
  46152.  
  46153.       bool createNew() 
  46154.  
  46155.      Creates a new country/language table row.  LCP: CountryCreate 
  46156.      bool updateDatabase() 
  46157.  
  46158.      Save the current country with the data members that have changed.  LCP: 
  46159.      CountryUpdate 
  46160.      bool VerifyFields() 
  46161.  
  46162.      Verify that all required fields are filled in. 
  46163.  
  46164.   Retrieve data from the database 
  46165.      bool fetchAllCountries(vecString &AllCountries) 
  46166.  
  46167.      Fetch a list of all countries.  LCP: CountryAll 
  46168.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46169.  
  46170.      Fetch a paired list of countries and their native language descriptions, 
  46171.      sorted by english description.  LCP: CountryEngNat 
  46172.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46173.  
  46174.      Fetch a paired list of native language country descriptions, and the 
  46175.      english name of the country. 
  46176.      bool retrieveFromNetCode() 
  46177.  
  46178.      Determine the country that uses the currently set NetCode.  Fills all the 
  46179.      other country attributes with values. LCP: CountryAttNetCode 
  46180.      bool retrieveFromDesc() 
  46181.  
  46182.      Determine the country that uses the currently set description.  Fills all 
  46183.      the other country attributes with values.  LCP: CountryAttribs 
  46184.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46185.  
  46186.      Determine the primary language of the current country.  "Desc" must be 
  46187.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46188.      CountryPrimLang 
  46189.      bool getAllLanguages(vecString &Languages) 
  46190.  
  46191.      Determine all the languages used by the current country.  "Desc" must be 
  46192.      already set.  The result is returned in priority order (highest priority 
  46193.      first) in vecString &Languages.  LCP: CountryLanguages 
  46194.      bool getLanguageList(vecString &Languages) 
  46195.  
  46196.      Get a list of all possible languages, in alphabetical order, returned in 
  46197.      vecString &Languages.  LCP: CountryLangList 
  46198.      bool getLanguageListEngNat(mapString &Languages) 
  46199.  
  46200.      Get a map of all possible languages, their native description in 
  46201.      alphabetical order by english description, returned in in vecString 
  46202.      &Languages.  LCP: CountryLangListEngNat 
  46203.  
  46204.   Delete a country 
  46205.      bool deleteFromDesc() 
  46206.  
  46207.      Delete the country that uses the currently set description.  LCP: 
  46208.      CountryDelete 
  46209.  
  46210.   Set data members 
  46211.      bool setAll(mapString &FieldValues) 
  46212.  
  46213.      Sets all the data members of a topic using the mapString which is passed 
  46214.      to it.  Only the fields present in the mapString are updated, the other 
  46215.      fields are untouched.  LCP: CountryUpdate 
  46216.      bool setDesc(const string &DescSetting) 
  46217.  
  46218.      Set the short description 
  46219.      bool setDescLong(const string &DescLongSetting) 
  46220.  
  46221.      Set the long description 
  46222.      bool setDescNative(const string &DescNativeSetting) 
  46223.  
  46224.      Set the native language description 
  46225.      bool setNetCode(const string &NetCodeSetting) 
  46226.  
  46227.      Set the internet code for this country 
  46228.      bool erase() 
  46229.  
  46230.      Sets all the data members to empty 
  46231.  
  46232.   Get data members 
  46233.      bool getAll(mapString &FieldValues) 
  46234.  
  46235.      Return a mapString of all the data members of this topic. The key is the 
  46236.      variable name.  LCP: CountryAttribs 
  46237.      string getDesc() 
  46238.  
  46239.      Get the short description 
  46240.      string getDescLong() 
  46241.  
  46242.      Get the long description 
  46243.      string getDescNative() 
  46244.  
  46245.      Get the native language description 
  46246.      string getNetCode() 
  46247.  
  46248.      Get the internet code for this country 
  46249.  
  46250.  
  46251. ΓòÉΓòÉΓòÉ <hidden> ╨¬CtryLang.dbf ΓòÉΓòÉΓòÉ
  46252.  
  46253.  
  46254. lyris_Country Class 
  46255.  
  46256.      class lyris_Country 
  46257.  
  46258.      For determining what countries exist, and what languages are spoken & 
  46259.      preferred in each country 
  46260.  
  46261.      Defined in: COUNTRY.H 
  46262.  
  46263.   Create a new country 
  46264.  
  46265.       bool createNew() 
  46266.  
  46267.      Creates a new country/language table row.  LCP: CountryCreate 
  46268.      bool updateDatabase() 
  46269.  
  46270.      Save the current country with the data members that have changed.  LCP: 
  46271.      CountryUpdate 
  46272.      bool VerifyFields() 
  46273.  
  46274.      Verify that all required fields are filled in. 
  46275.  
  46276.   Retrieve data from the database 
  46277.      bool fetchAllCountries(vecString &AllCountries) 
  46278.  
  46279.      Fetch a list of all countries.  LCP: CountryAll 
  46280.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46281.  
  46282.      Fetch a paired list of countries and their native language descriptions, 
  46283.      sorted by english description.  LCP: CountryEngNat 
  46284.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46285.  
  46286.      Fetch a paired list of native language country descriptions, and the 
  46287.      english name of the country. 
  46288.      bool retrieveFromNetCode() 
  46289.  
  46290.      Determine the country that uses the currently set NetCode.  Fills all the 
  46291.      other country attributes with values. LCP: CountryAttNetCode 
  46292.      bool retrieveFromDesc() 
  46293.  
  46294.      Determine the country that uses the currently set description.  Fills all 
  46295.      the other country attributes with values.  LCP: CountryAttribs 
  46296.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46297.  
  46298.      Determine the primary language of the current country.  "Desc" must be 
  46299.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46300.      CountryPrimLang 
  46301.      bool getAllLanguages(vecString &Languages) 
  46302.  
  46303.      Determine all the languages used by the current country.  "Desc" must be 
  46304.      already set.  The result is returned in priority order (highest priority 
  46305.      first) in vecString &Languages.  LCP: CountryLanguages 
  46306.      bool getLanguageList(vecString &Languages) 
  46307.  
  46308.      Get a list of all possible languages, in alphabetical order, returned in 
  46309.      vecString &Languages.  LCP: CountryLangList 
  46310.      bool getLanguageListEngNat(mapString &Languages) 
  46311.  
  46312.      Get a map of all possible languages, their native description in 
  46313.      alphabetical order by english description, returned in in vecString 
  46314.      &Languages.  LCP: CountryLangListEngNat 
  46315.  
  46316.   Delete a country 
  46317.      bool deleteFromDesc() 
  46318.  
  46319.      Delete the country that uses the currently set description.  LCP: 
  46320.      CountryDelete 
  46321.  
  46322.   Set data members 
  46323.      bool setAll(mapString &FieldValues) 
  46324.  
  46325.      Sets all the data members of a topic using the mapString which is passed 
  46326.      to it.  Only the fields present in the mapString are updated, the other 
  46327.      fields are untouched.  LCP: CountryUpdate 
  46328.      bool setDesc(const string &DescSetting) 
  46329.  
  46330.      Set the short description 
  46331.      bool setDescLong(const string &DescLongSetting) 
  46332.  
  46333.      Set the long description 
  46334.      bool setDescNative(const string &DescNativeSetting) 
  46335.  
  46336.      Set the native language description 
  46337.      bool setNetCode(const string &NetCodeSetting) 
  46338.  
  46339.      Set the internet code for this country 
  46340.      bool erase() 
  46341.  
  46342.      Sets all the data members to empty 
  46343.  
  46344.   Get data members 
  46345.      bool getAll(mapString &FieldValues) 
  46346.  
  46347.      Return a mapString of all the data members of this topic. The key is the 
  46348.      variable name.  LCP: CountryAttribs 
  46349.      string getDesc() 
  46350.  
  46351.      Get the short description 
  46352.      string getDescLong() 
  46353.  
  46354.      Get the long description 
  46355.      string getDescNative() 
  46356.  
  46357.      Get the native language description 
  46358.      string getNetCode() 
  46359.  
  46360.      Get the internet code for this country 
  46361.  
  46362.  
  46363. ΓòÉΓòÉΓòÉ <hidden> ╨½CountryPrimLang ΓòÉΓòÉΓòÉ
  46364.  
  46365.  
  46366. lyris_Country Class 
  46367.  
  46368.      class lyris_Country 
  46369.  
  46370.      For determining what countries exist, and what languages are spoken & 
  46371.      preferred in each country 
  46372.  
  46373.      Defined in: COUNTRY.H 
  46374.  
  46375.   Create a new country 
  46376.  
  46377.       bool createNew() 
  46378.  
  46379.      Creates a new country/language table row.  LCP: CountryCreate 
  46380.      bool updateDatabase() 
  46381.  
  46382.      Save the current country with the data members that have changed.  LCP: 
  46383.      CountryUpdate 
  46384.      bool VerifyFields() 
  46385.  
  46386.      Verify that all required fields are filled in. 
  46387.  
  46388.   Retrieve data from the database 
  46389.      bool fetchAllCountries(vecString &AllCountries) 
  46390.  
  46391.      Fetch a list of all countries.  LCP: CountryAll 
  46392.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46393.  
  46394.      Fetch a paired list of countries and their native language descriptions, 
  46395.      sorted by english description.  LCP: CountryEngNat 
  46396.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46397.  
  46398.      Fetch a paired list of native language country descriptions, and the 
  46399.      english name of the country. 
  46400.      bool retrieveFromNetCode() 
  46401.  
  46402.      Determine the country that uses the currently set NetCode.  Fills all the 
  46403.      other country attributes with values. LCP: CountryAttNetCode 
  46404.      bool retrieveFromDesc() 
  46405.  
  46406.      Determine the country that uses the currently set description.  Fills all 
  46407.      the other country attributes with values.  LCP: CountryAttribs 
  46408.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46409.  
  46410.      Determine the primary language of the current country.  "Desc" must be 
  46411.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46412.      CountryPrimLang 
  46413.      bool getAllLanguages(vecString &Languages) 
  46414.  
  46415.      Determine all the languages used by the current country.  "Desc" must be 
  46416.      already set.  The result is returned in priority order (highest priority 
  46417.      first) in vecString &Languages.  LCP: CountryLanguages 
  46418.      bool getLanguageList(vecString &Languages) 
  46419.  
  46420.      Get a list of all possible languages, in alphabetical order, returned in 
  46421.      vecString &Languages.  LCP: CountryLangList 
  46422.      bool getLanguageListEngNat(mapString &Languages) 
  46423.  
  46424.      Get a map of all possible languages, their native description in 
  46425.      alphabetical order by english description, returned in in vecString 
  46426.      &Languages.  LCP: CountryLangListEngNat 
  46427.  
  46428.   Delete a country 
  46429.      bool deleteFromDesc() 
  46430.  
  46431.      Delete the country that uses the currently set description.  LCP: 
  46432.      CountryDelete 
  46433.  
  46434.   Set data members 
  46435.      bool setAll(mapString &FieldValues) 
  46436.  
  46437.      Sets all the data members of a topic using the mapString which is passed 
  46438.      to it.  Only the fields present in the mapString are updated, the other 
  46439.      fields are untouched.  LCP: CountryUpdate 
  46440.      bool setDesc(const string &DescSetting) 
  46441.  
  46442.      Set the short description 
  46443.      bool setDescLong(const string &DescLongSetting) 
  46444.  
  46445.      Set the long description 
  46446.      bool setDescNative(const string &DescNativeSetting) 
  46447.  
  46448.      Set the native language description 
  46449.      bool setNetCode(const string &NetCodeSetting) 
  46450.  
  46451.      Set the internet code for this country 
  46452.      bool erase() 
  46453.  
  46454.      Sets all the data members to empty 
  46455.  
  46456.   Get data members 
  46457.      bool getAll(mapString &FieldValues) 
  46458.  
  46459.      Return a mapString of all the data members of this topic. The key is the 
  46460.      variable name.  LCP: CountryAttribs 
  46461.      string getDesc() 
  46462.  
  46463.      Get the short description 
  46464.      string getDescLong() 
  46465.  
  46466.      Get the long description 
  46467.      string getDescNative() 
  46468.  
  46469.      Get the native language description 
  46470.      string getNetCode() 
  46471.  
  46472.      Get the internet code for this country 
  46473.  
  46474.  
  46475. ΓòÉΓòÉΓòÉ <hidden> ╨¼CountryLangListEngNat ΓòÉΓòÉΓòÉ
  46476.  
  46477.  
  46478. lyris_Country Class 
  46479.  
  46480.      class lyris_Country 
  46481.  
  46482.      For determining what countries exist, and what languages are spoken & 
  46483.      preferred in each country 
  46484.  
  46485.      Defined in: COUNTRY.H 
  46486.  
  46487.   Create a new country 
  46488.  
  46489.       bool createNew() 
  46490.  
  46491.      Creates a new country/language table row.  LCP: CountryCreate 
  46492.      bool updateDatabase() 
  46493.  
  46494.      Save the current country with the data members that have changed.  LCP: 
  46495.      CountryUpdate 
  46496.      bool VerifyFields() 
  46497.  
  46498.      Verify that all required fields are filled in. 
  46499.  
  46500.   Retrieve data from the database 
  46501.      bool fetchAllCountries(vecString &AllCountries) 
  46502.  
  46503.      Fetch a list of all countries.  LCP: CountryAll 
  46504.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46505.  
  46506.      Fetch a paired list of countries and their native language descriptions, 
  46507.      sorted by english description.  LCP: CountryEngNat 
  46508.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46509.  
  46510.      Fetch a paired list of native language country descriptions, and the 
  46511.      english name of the country. 
  46512.      bool retrieveFromNetCode() 
  46513.  
  46514.      Determine the country that uses the currently set NetCode.  Fills all the 
  46515.      other country attributes with values. LCP: CountryAttNetCode 
  46516.      bool retrieveFromDesc() 
  46517.  
  46518.      Determine the country that uses the currently set description.  Fills all 
  46519.      the other country attributes with values.  LCP: CountryAttribs 
  46520.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46521.  
  46522.      Determine the primary language of the current country.  "Desc" must be 
  46523.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46524.      CountryPrimLang 
  46525.      bool getAllLanguages(vecString &Languages) 
  46526.  
  46527.      Determine all the languages used by the current country.  "Desc" must be 
  46528.      already set.  The result is returned in priority order (highest priority 
  46529.      first) in vecString &Languages.  LCP: CountryLanguages 
  46530.      bool getLanguageList(vecString &Languages) 
  46531.  
  46532.      Get a list of all possible languages, in alphabetical order, returned in 
  46533.      vecString &Languages.  LCP: CountryLangList 
  46534.      bool getLanguageListEngNat(mapString &Languages) 
  46535.  
  46536.      Get a map of all possible languages, their native description in 
  46537.      alphabetical order by english description, returned in in vecString 
  46538.      &Languages.  LCP: CountryLangListEngNat 
  46539.  
  46540.   Delete a country 
  46541.      bool deleteFromDesc() 
  46542.  
  46543.      Delete the country that uses the currently set description.  LCP: 
  46544.      CountryDelete 
  46545.  
  46546.   Set data members 
  46547.      bool setAll(mapString &FieldValues) 
  46548.  
  46549.      Sets all the data members of a topic using the mapString which is passed 
  46550.      to it.  Only the fields present in the mapString are updated, the other 
  46551.      fields are untouched.  LCP: CountryUpdate 
  46552.      bool setDesc(const string &DescSetting) 
  46553.  
  46554.      Set the short description 
  46555.      bool setDescLong(const string &DescLongSetting) 
  46556.  
  46557.      Set the long description 
  46558.      bool setDescNative(const string &DescNativeSetting) 
  46559.  
  46560.      Set the native language description 
  46561.      bool setNetCode(const string &NetCodeSetting) 
  46562.  
  46563.      Set the internet code for this country 
  46564.      bool erase() 
  46565.  
  46566.      Sets all the data members to empty 
  46567.  
  46568.   Get data members 
  46569.      bool getAll(mapString &FieldValues) 
  46570.  
  46571.      Return a mapString of all the data members of this topic. The key is the 
  46572.      variable name.  LCP: CountryAttribs 
  46573.      string getDesc() 
  46574.  
  46575.      Get the short description 
  46576.      string getDescLong() 
  46577.  
  46578.      Get the long description 
  46579.      string getDescNative() 
  46580.  
  46581.      Get the native language description 
  46582.      string getNetCode() 
  46583.  
  46584.      Get the internet code for this country 
  46585.  
  46586.  
  46587. ΓòÉΓòÉΓòÉ <hidden> ╨¡CountryEngNat ΓòÉΓòÉΓòÉ
  46588.  
  46589.  
  46590. lyris_Country Class 
  46591.  
  46592.      class lyris_Country 
  46593.  
  46594.      For determining what countries exist, and what languages are spoken & 
  46595.      preferred in each country 
  46596.  
  46597.      Defined in: COUNTRY.H 
  46598.  
  46599.   Create a new country 
  46600.  
  46601.       bool createNew() 
  46602.  
  46603.      Creates a new country/language table row.  LCP: CountryCreate 
  46604.      bool updateDatabase() 
  46605.  
  46606.      Save the current country with the data members that have changed.  LCP: 
  46607.      CountryUpdate 
  46608.      bool VerifyFields() 
  46609.  
  46610.      Verify that all required fields are filled in. 
  46611.  
  46612.   Retrieve data from the database 
  46613.      bool fetchAllCountries(vecString &AllCountries) 
  46614.  
  46615.      Fetch a list of all countries.  LCP: CountryAll 
  46616.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46617.  
  46618.      Fetch a paired list of countries and their native language descriptions, 
  46619.      sorted by english description.  LCP: CountryEngNat 
  46620.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46621.  
  46622.      Fetch a paired list of native language country descriptions, and the 
  46623.      english name of the country. 
  46624.      bool retrieveFromNetCode() 
  46625.  
  46626.      Determine the country that uses the currently set NetCode.  Fills all the 
  46627.      other country attributes with values. LCP: CountryAttNetCode 
  46628.      bool retrieveFromDesc() 
  46629.  
  46630.      Determine the country that uses the currently set description.  Fills all 
  46631.      the other country attributes with values.  LCP: CountryAttribs 
  46632.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46633.  
  46634.      Determine the primary language of the current country.  "Desc" must be 
  46635.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46636.      CountryPrimLang 
  46637.      bool getAllLanguages(vecString &Languages) 
  46638.  
  46639.      Determine all the languages used by the current country.  "Desc" must be 
  46640.      already set.  The result is returned in priority order (highest priority 
  46641.      first) in vecString &Languages.  LCP: CountryLanguages 
  46642.      bool getLanguageList(vecString &Languages) 
  46643.  
  46644.      Get a list of all possible languages, in alphabetical order, returned in 
  46645.      vecString &Languages.  LCP: CountryLangList 
  46646.      bool getLanguageListEngNat(mapString &Languages) 
  46647.  
  46648.      Get a map of all possible languages, their native description in 
  46649.      alphabetical order by english description, returned in in vecString 
  46650.      &Languages.  LCP: CountryLangListEngNat 
  46651.  
  46652.   Delete a country 
  46653.      bool deleteFromDesc() 
  46654.  
  46655.      Delete the country that uses the currently set description.  LCP: 
  46656.      CountryDelete 
  46657.  
  46658.   Set data members 
  46659.      bool setAll(mapString &FieldValues) 
  46660.  
  46661.      Sets all the data members of a topic using the mapString which is passed 
  46662.      to it.  Only the fields present in the mapString are updated, the other 
  46663.      fields are untouched.  LCP: CountryUpdate 
  46664.      bool setDesc(const string &DescSetting) 
  46665.  
  46666.      Set the short description 
  46667.      bool setDescLong(const string &DescLongSetting) 
  46668.  
  46669.      Set the long description 
  46670.      bool setDescNative(const string &DescNativeSetting) 
  46671.  
  46672.      Set the native language description 
  46673.      bool setNetCode(const string &NetCodeSetting) 
  46674.  
  46675.      Set the internet code for this country 
  46676.      bool erase() 
  46677.  
  46678.      Sets all the data members to empty 
  46679.  
  46680.   Get data members 
  46681.      bool getAll(mapString &FieldValues) 
  46682.  
  46683.      Return a mapString of all the data members of this topic. The key is the 
  46684.      variable name.  LCP: CountryAttribs 
  46685.      string getDesc() 
  46686.  
  46687.      Get the short description 
  46688.      string getDescLong() 
  46689.  
  46690.      Get the long description 
  46691.      string getDescNative() 
  46692.  
  46693.      Get the native language description 
  46694.      string getNetCode() 
  46695.  
  46696.      Get the internet code for this country 
  46697.  
  46698.  
  46699. ΓòÉΓòÉΓòÉ <hidden> ╨«CountryCreate ΓòÉΓòÉΓòÉ
  46700.  
  46701.  
  46702. lyris_Country Class 
  46703.  
  46704.      class lyris_Country 
  46705.  
  46706.      For determining what countries exist, and what languages are spoken & 
  46707.      preferred in each country 
  46708.  
  46709.      Defined in: COUNTRY.H 
  46710.  
  46711.   Create a new country 
  46712.  
  46713.       bool createNew() 
  46714.  
  46715.      Creates a new country/language table row.  LCP: CountryCreate 
  46716.      bool updateDatabase() 
  46717.  
  46718.      Save the current country with the data members that have changed.  LCP: 
  46719.      CountryUpdate 
  46720.      bool VerifyFields() 
  46721.  
  46722.      Verify that all required fields are filled in. 
  46723.  
  46724.   Retrieve data from the database 
  46725.      bool fetchAllCountries(vecString &AllCountries) 
  46726.  
  46727.      Fetch a list of all countries.  LCP: CountryAll 
  46728.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46729.  
  46730.      Fetch a paired list of countries and their native language descriptions, 
  46731.      sorted by english description.  LCP: CountryEngNat 
  46732.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46733.  
  46734.      Fetch a paired list of native language country descriptions, and the 
  46735.      english name of the country. 
  46736.      bool retrieveFromNetCode() 
  46737.  
  46738.      Determine the country that uses the currently set NetCode.  Fills all the 
  46739.      other country attributes with values. LCP: CountryAttNetCode 
  46740.      bool retrieveFromDesc() 
  46741.  
  46742.      Determine the country that uses the currently set description.  Fills all 
  46743.      the other country attributes with values.  LCP: CountryAttribs 
  46744.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46745.  
  46746.      Determine the primary language of the current country.  "Desc" must be 
  46747.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46748.      CountryPrimLang 
  46749.      bool getAllLanguages(vecString &Languages) 
  46750.  
  46751.      Determine all the languages used by the current country.  "Desc" must be 
  46752.      already set.  The result is returned in priority order (highest priority 
  46753.      first) in vecString &Languages.  LCP: CountryLanguages 
  46754.      bool getLanguageList(vecString &Languages) 
  46755.  
  46756.      Get a list of all possible languages, in alphabetical order, returned in 
  46757.      vecString &Languages.  LCP: CountryLangList 
  46758.      bool getLanguageListEngNat(mapString &Languages) 
  46759.  
  46760.      Get a map of all possible languages, their native description in 
  46761.      alphabetical order by english description, returned in in vecString 
  46762.      &Languages.  LCP: CountryLangListEngNat 
  46763.  
  46764.   Delete a country 
  46765.      bool deleteFromDesc() 
  46766.  
  46767.      Delete the country that uses the currently set description.  LCP: 
  46768.      CountryDelete 
  46769.  
  46770.   Set data members 
  46771.      bool setAll(mapString &FieldValues) 
  46772.  
  46773.      Sets all the data members of a topic using the mapString which is passed 
  46774.      to it.  Only the fields present in the mapString are updated, the other 
  46775.      fields are untouched.  LCP: CountryUpdate 
  46776.      bool setDesc(const string &DescSetting) 
  46777.  
  46778.      Set the short description 
  46779.      bool setDescLong(const string &DescLongSetting) 
  46780.  
  46781.      Set the long description 
  46782.      bool setDescNative(const string &DescNativeSetting) 
  46783.  
  46784.      Set the native language description 
  46785.      bool setNetCode(const string &NetCodeSetting) 
  46786.  
  46787.      Set the internet code for this country 
  46788.      bool erase() 
  46789.  
  46790.      Sets all the data members to empty 
  46791.  
  46792.   Get data members 
  46793.      bool getAll(mapString &FieldValues) 
  46794.  
  46795.      Return a mapString of all the data members of this topic. The key is the 
  46796.      variable name.  LCP: CountryAttribs 
  46797.      string getDesc() 
  46798.  
  46799.      Get the short description 
  46800.      string getDescLong() 
  46801.  
  46802.      Get the long description 
  46803.      string getDescNative() 
  46804.  
  46805.      Get the native language description 
  46806.      string getNetCode() 
  46807.  
  46808.      Get the internet code for this country 
  46809.  
  46810.  
  46811. ΓòÉΓòÉΓòÉ <hidden> ╨»CountryAttNetCode ΓòÉΓòÉΓòÉ
  46812.  
  46813.  
  46814. lyris_Country Class 
  46815.  
  46816.      class lyris_Country 
  46817.  
  46818.      For determining what countries exist, and what languages are spoken & 
  46819.      preferred in each country 
  46820.  
  46821.      Defined in: COUNTRY.H 
  46822.  
  46823.   Create a new country 
  46824.  
  46825.       bool createNew() 
  46826.  
  46827.      Creates a new country/language table row.  LCP: CountryCreate 
  46828.      bool updateDatabase() 
  46829.  
  46830.      Save the current country with the data members that have changed.  LCP: 
  46831.      CountryUpdate 
  46832.      bool VerifyFields() 
  46833.  
  46834.      Verify that all required fields are filled in. 
  46835.  
  46836.   Retrieve data from the database 
  46837.      bool fetchAllCountries(vecString &AllCountries) 
  46838.  
  46839.      Fetch a list of all countries.  LCP: CountryAll 
  46840.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46841.  
  46842.      Fetch a paired list of countries and their native language descriptions, 
  46843.      sorted by english description.  LCP: CountryEngNat 
  46844.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46845.  
  46846.      Fetch a paired list of native language country descriptions, and the 
  46847.      english name of the country. 
  46848.      bool retrieveFromNetCode() 
  46849.  
  46850.      Determine the country that uses the currently set NetCode.  Fills all the 
  46851.      other country attributes with values. LCP: CountryAttNetCode 
  46852.      bool retrieveFromDesc() 
  46853.  
  46854.      Determine the country that uses the currently set description.  Fills all 
  46855.      the other country attributes with values.  LCP: CountryAttribs 
  46856.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46857.  
  46858.      Determine the primary language of the current country.  "Desc" must be 
  46859.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46860.      CountryPrimLang 
  46861.      bool getAllLanguages(vecString &Languages) 
  46862.  
  46863.      Determine all the languages used by the current country.  "Desc" must be 
  46864.      already set.  The result is returned in priority order (highest priority 
  46865.      first) in vecString &Languages.  LCP: CountryLanguages 
  46866.      bool getLanguageList(vecString &Languages) 
  46867.  
  46868.      Get a list of all possible languages, in alphabetical order, returned in 
  46869.      vecString &Languages.  LCP: CountryLangList 
  46870.      bool getLanguageListEngNat(mapString &Languages) 
  46871.  
  46872.      Get a map of all possible languages, their native description in 
  46873.      alphabetical order by english description, returned in in vecString 
  46874.      &Languages.  LCP: CountryLangListEngNat 
  46875.  
  46876.   Delete a country 
  46877.      bool deleteFromDesc() 
  46878.  
  46879.      Delete the country that uses the currently set description.  LCP: 
  46880.      CountryDelete 
  46881.  
  46882.   Set data members 
  46883.      bool setAll(mapString &FieldValues) 
  46884.  
  46885.      Sets all the data members of a topic using the mapString which is passed 
  46886.      to it.  Only the fields present in the mapString are updated, the other 
  46887.      fields are untouched.  LCP: CountryUpdate 
  46888.      bool setDesc(const string &DescSetting) 
  46889.  
  46890.      Set the short description 
  46891.      bool setDescLong(const string &DescLongSetting) 
  46892.  
  46893.      Set the long description 
  46894.      bool setDescNative(const string &DescNativeSetting) 
  46895.  
  46896.      Set the native language description 
  46897.      bool setNetCode(const string &NetCodeSetting) 
  46898.  
  46899.      Set the internet code for this country 
  46900.      bool erase() 
  46901.  
  46902.      Sets all the data members to empty 
  46903.  
  46904.   Get data members 
  46905.      bool getAll(mapString &FieldValues) 
  46906.  
  46907.      Return a mapString of all the data members of this topic. The key is the 
  46908.      variable name.  LCP: CountryAttribs 
  46909.      string getDesc() 
  46910.  
  46911.      Get the short description 
  46912.      string getDescLong() 
  46913.  
  46914.      Get the long description 
  46915.      string getDescNative() 
  46916.  
  46917.      Get the native language description 
  46918.      string getNetCode() 
  46919.  
  46920.      Get the internet code for this country 
  46921.  
  46922.  
  46923. ΓòÉΓòÉΓòÉ <hidden> ╨░Country.dbf ΓòÉΓòÉΓòÉ
  46924.  
  46925.  
  46926. lyris_Country Class 
  46927.  
  46928.      class lyris_Country 
  46929.  
  46930.      For determining what countries exist, and what languages are spoken & 
  46931.      preferred in each country 
  46932.  
  46933.      Defined in: COUNTRY.H 
  46934.  
  46935.   Create a new country 
  46936.  
  46937.       bool createNew() 
  46938.  
  46939.      Creates a new country/language table row.  LCP: CountryCreate 
  46940.      bool updateDatabase() 
  46941.  
  46942.      Save the current country with the data members that have changed.  LCP: 
  46943.      CountryUpdate 
  46944.      bool VerifyFields() 
  46945.  
  46946.      Verify that all required fields are filled in. 
  46947.  
  46948.   Retrieve data from the database 
  46949.      bool fetchAllCountries(vecString &AllCountries) 
  46950.  
  46951.      Fetch a list of all countries.  LCP: CountryAll 
  46952.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  46953.  
  46954.      Fetch a paired list of countries and their native language descriptions, 
  46955.      sorted by english description.  LCP: CountryEngNat 
  46956.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  46957.  
  46958.      Fetch a paired list of native language country descriptions, and the 
  46959.      english name of the country. 
  46960.      bool retrieveFromNetCode() 
  46961.  
  46962.      Determine the country that uses the currently set NetCode.  Fills all the 
  46963.      other country attributes with values. LCP: CountryAttNetCode 
  46964.      bool retrieveFromDesc() 
  46965.  
  46966.      Determine the country that uses the currently set description.  Fills all 
  46967.      the other country attributes with values.  LCP: CountryAttribs 
  46968.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  46969.  
  46970.      Determine the primary language of the current country.  "Desc" must be 
  46971.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  46972.      CountryPrimLang 
  46973.      bool getAllLanguages(vecString &Languages) 
  46974.  
  46975.      Determine all the languages used by the current country.  "Desc" must be 
  46976.      already set.  The result is returned in priority order (highest priority 
  46977.      first) in vecString &Languages.  LCP: CountryLanguages 
  46978.      bool getLanguageList(vecString &Languages) 
  46979.  
  46980.      Get a list of all possible languages, in alphabetical order, returned in 
  46981.      vecString &Languages.  LCP: CountryLangList 
  46982.      bool getLanguageListEngNat(mapString &Languages) 
  46983.  
  46984.      Get a map of all possible languages, their native description in 
  46985.      alphabetical order by english description, returned in in vecString 
  46986.      &Languages.  LCP: CountryLangListEngNat 
  46987.  
  46988.   Delete a country 
  46989.      bool deleteFromDesc() 
  46990.  
  46991.      Delete the country that uses the currently set description.  LCP: 
  46992.      CountryDelete 
  46993.  
  46994.   Set data members 
  46995.      bool setAll(mapString &FieldValues) 
  46996.  
  46997.      Sets all the data members of a topic using the mapString which is passed 
  46998.      to it.  Only the fields present in the mapString are updated, the other 
  46999.      fields are untouched.  LCP: CountryUpdate 
  47000.      bool setDesc(const string &DescSetting) 
  47001.  
  47002.      Set the short description 
  47003.      bool setDescLong(const string &DescLongSetting) 
  47004.  
  47005.      Set the long description 
  47006.      bool setDescNative(const string &DescNativeSetting) 
  47007.  
  47008.      Set the native language description 
  47009.      bool setNetCode(const string &NetCodeSetting) 
  47010.  
  47011.      Set the internet code for this country 
  47012.      bool erase() 
  47013.  
  47014.      Sets all the data members to empty 
  47015.  
  47016.   Get data members 
  47017.      bool getAll(mapString &FieldValues) 
  47018.  
  47019.      Return a mapString of all the data members of this topic. The key is the 
  47020.      variable name.  LCP: CountryAttribs 
  47021.      string getDesc() 
  47022.  
  47023.      Get the short description 
  47024.      string getDescLong() 
  47025.  
  47026.      Get the long description 
  47027.      string getDescNative() 
  47028.  
  47029.      Get the native language description 
  47030.      string getNetCode() 
  47031.  
  47032.      Get the internet code for this country 
  47033.  
  47034.  
  47035. ΓòÉΓòÉΓòÉ <hidden> ╨▒ConfigUpdate ΓòÉΓòÉΓòÉ
  47036.  
  47037.  
  47038. lyris_Country Class 
  47039.  
  47040.      class lyris_Country 
  47041.  
  47042.      For determining what countries exist, and what languages are spoken & 
  47043.      preferred in each country 
  47044.  
  47045.      Defined in: COUNTRY.H 
  47046.  
  47047.   Create a new country 
  47048.  
  47049.       bool createNew() 
  47050.  
  47051.      Creates a new country/language table row.  LCP: CountryCreate 
  47052.      bool updateDatabase() 
  47053.  
  47054.      Save the current country with the data members that have changed.  LCP: 
  47055.      CountryUpdate 
  47056.      bool VerifyFields() 
  47057.  
  47058.      Verify that all required fields are filled in. 
  47059.  
  47060.   Retrieve data from the database 
  47061.      bool fetchAllCountries(vecString &AllCountries) 
  47062.  
  47063.      Fetch a list of all countries.  LCP: CountryAll 
  47064.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47065.  
  47066.      Fetch a paired list of countries and their native language descriptions, 
  47067.      sorted by english description.  LCP: CountryEngNat 
  47068.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47069.  
  47070.      Fetch a paired list of native language country descriptions, and the 
  47071.      english name of the country. 
  47072.      bool retrieveFromNetCode() 
  47073.  
  47074.      Determine the country that uses the currently set NetCode.  Fills all the 
  47075.      other country attributes with values. LCP: CountryAttNetCode 
  47076.      bool retrieveFromDesc() 
  47077.  
  47078.      Determine the country that uses the currently set description.  Fills all 
  47079.      the other country attributes with values.  LCP: CountryAttribs 
  47080.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47081.  
  47082.      Determine the primary language of the current country.  "Desc" must be 
  47083.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47084.      CountryPrimLang 
  47085.      bool getAllLanguages(vecString &Languages) 
  47086.  
  47087.      Determine all the languages used by the current country.  "Desc" must be 
  47088.      already set.  The result is returned in priority order (highest priority 
  47089.      first) in vecString &Languages.  LCP: CountryLanguages 
  47090.      bool getLanguageList(vecString &Languages) 
  47091.  
  47092.      Get a list of all possible languages, in alphabetical order, returned in 
  47093.      vecString &Languages.  LCP: CountryLangList 
  47094.      bool getLanguageListEngNat(mapString &Languages) 
  47095.  
  47096.      Get a map of all possible languages, their native description in 
  47097.      alphabetical order by english description, returned in in vecString 
  47098.      &Languages.  LCP: CountryLangListEngNat 
  47099.  
  47100.   Delete a country 
  47101.      bool deleteFromDesc() 
  47102.  
  47103.      Delete the country that uses the currently set description.  LCP: 
  47104.      CountryDelete 
  47105.  
  47106.   Set data members 
  47107.      bool setAll(mapString &FieldValues) 
  47108.  
  47109.      Sets all the data members of a topic using the mapString which is passed 
  47110.      to it.  Only the fields present in the mapString are updated, the other 
  47111.      fields are untouched.  LCP: CountryUpdate 
  47112.      bool setDesc(const string &DescSetting) 
  47113.  
  47114.      Set the short description 
  47115.      bool setDescLong(const string &DescLongSetting) 
  47116.  
  47117.      Set the long description 
  47118.      bool setDescNative(const string &DescNativeSetting) 
  47119.  
  47120.      Set the native language description 
  47121.      bool setNetCode(const string &NetCodeSetting) 
  47122.  
  47123.      Set the internet code for this country 
  47124.      bool erase() 
  47125.  
  47126.      Sets all the data members to empty 
  47127.  
  47128.   Get data members 
  47129.      bool getAll(mapString &FieldValues) 
  47130.  
  47131.      Return a mapString of all the data members of this topic. The key is the 
  47132.      variable name.  LCP: CountryAttribs 
  47133.      string getDesc() 
  47134.  
  47135.      Get the short description 
  47136.      string getDescLong() 
  47137.  
  47138.      Get the long description 
  47139.      string getDescNative() 
  47140.  
  47141.      Get the native language description 
  47142.      string getNetCode() 
  47143.  
  47144.      Get the internet code for this country 
  47145.  
  47146.  
  47147. ΓòÉΓòÉΓòÉ <hidden> ╨▓ConfigSerialLimits ΓòÉΓòÉΓòÉ
  47148.  
  47149.  
  47150. lyris_Country Class 
  47151.  
  47152.      class lyris_Country 
  47153.  
  47154.      For determining what countries exist, and what languages are spoken & 
  47155.      preferred in each country 
  47156.  
  47157.      Defined in: COUNTRY.H 
  47158.  
  47159.   Create a new country 
  47160.  
  47161.       bool createNew() 
  47162.  
  47163.      Creates a new country/language table row.  LCP: CountryCreate 
  47164.      bool updateDatabase() 
  47165.  
  47166.      Save the current country with the data members that have changed.  LCP: 
  47167.      CountryUpdate 
  47168.      bool VerifyFields() 
  47169.  
  47170.      Verify that all required fields are filled in. 
  47171.  
  47172.   Retrieve data from the database 
  47173.      bool fetchAllCountries(vecString &AllCountries) 
  47174.  
  47175.      Fetch a list of all countries.  LCP: CountryAll 
  47176.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47177.  
  47178.      Fetch a paired list of countries and their native language descriptions, 
  47179.      sorted by english description.  LCP: CountryEngNat 
  47180.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47181.  
  47182.      Fetch a paired list of native language country descriptions, and the 
  47183.      english name of the country. 
  47184.      bool retrieveFromNetCode() 
  47185.  
  47186.      Determine the country that uses the currently set NetCode.  Fills all the 
  47187.      other country attributes with values. LCP: CountryAttNetCode 
  47188.      bool retrieveFromDesc() 
  47189.  
  47190.      Determine the country that uses the currently set description.  Fills all 
  47191.      the other country attributes with values.  LCP: CountryAttribs 
  47192.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47193.  
  47194.      Determine the primary language of the current country.  "Desc" must be 
  47195.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47196.      CountryPrimLang 
  47197.      bool getAllLanguages(vecString &Languages) 
  47198.  
  47199.      Determine all the languages used by the current country.  "Desc" must be 
  47200.      already set.  The result is returned in priority order (highest priority 
  47201.      first) in vecString &Languages.  LCP: CountryLanguages 
  47202.      bool getLanguageList(vecString &Languages) 
  47203.  
  47204.      Get a list of all possible languages, in alphabetical order, returned in 
  47205.      vecString &Languages.  LCP: CountryLangList 
  47206.      bool getLanguageListEngNat(mapString &Languages) 
  47207.  
  47208.      Get a map of all possible languages, their native description in 
  47209.      alphabetical order by english description, returned in in vecString 
  47210.      &Languages.  LCP: CountryLangListEngNat 
  47211.  
  47212.   Delete a country 
  47213.      bool deleteFromDesc() 
  47214.  
  47215.      Delete the country that uses the currently set description.  LCP: 
  47216.      CountryDelete 
  47217.  
  47218.   Set data members 
  47219.      bool setAll(mapString &FieldValues) 
  47220.  
  47221.      Sets all the data members of a topic using the mapString which is passed 
  47222.      to it.  Only the fields present in the mapString are updated, the other 
  47223.      fields are untouched.  LCP: CountryUpdate 
  47224.      bool setDesc(const string &DescSetting) 
  47225.  
  47226.      Set the short description 
  47227.      bool setDescLong(const string &DescLongSetting) 
  47228.  
  47229.      Set the long description 
  47230.      bool setDescNative(const string &DescNativeSetting) 
  47231.  
  47232.      Set the native language description 
  47233.      bool setNetCode(const string &NetCodeSetting) 
  47234.  
  47235.      Set the internet code for this country 
  47236.      bool erase() 
  47237.  
  47238.      Sets all the data members to empty 
  47239.  
  47240.   Get data members 
  47241.      bool getAll(mapString &FieldValues) 
  47242.  
  47243.      Return a mapString of all the data members of this topic. The key is the 
  47244.      variable name.  LCP: CountryAttribs 
  47245.      string getDesc() 
  47246.  
  47247.      Get the short description 
  47248.      string getDescLong() 
  47249.  
  47250.      Get the long description 
  47251.      string getDescNative() 
  47252.  
  47253.      Get the native language description 
  47254.      string getNetCode() 
  47255.  
  47256.      Get the internet code for this country 
  47257.  
  47258.  
  47259. ΓòÉΓòÉΓòÉ <hidden> ╨│ConfigCreate ΓòÉΓòÉΓòÉ
  47260.  
  47261.  
  47262. lyris_Country Class 
  47263.  
  47264.      class lyris_Country 
  47265.  
  47266.      For determining what countries exist, and what languages are spoken & 
  47267.      preferred in each country 
  47268.  
  47269.      Defined in: COUNTRY.H 
  47270.  
  47271.   Create a new country 
  47272.  
  47273.       bool createNew() 
  47274.  
  47275.      Creates a new country/language table row.  LCP: CountryCreate 
  47276.      bool updateDatabase() 
  47277.  
  47278.      Save the current country with the data members that have changed.  LCP: 
  47279.      CountryUpdate 
  47280.      bool VerifyFields() 
  47281.  
  47282.      Verify that all required fields are filled in. 
  47283.  
  47284.   Retrieve data from the database 
  47285.      bool fetchAllCountries(vecString &AllCountries) 
  47286.  
  47287.      Fetch a list of all countries.  LCP: CountryAll 
  47288.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47289.  
  47290.      Fetch a paired list of countries and their native language descriptions, 
  47291.      sorted by english description.  LCP: CountryEngNat 
  47292.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47293.  
  47294.      Fetch a paired list of native language country descriptions, and the 
  47295.      english name of the country. 
  47296.      bool retrieveFromNetCode() 
  47297.  
  47298.      Determine the country that uses the currently set NetCode.  Fills all the 
  47299.      other country attributes with values. LCP: CountryAttNetCode 
  47300.      bool retrieveFromDesc() 
  47301.  
  47302.      Determine the country that uses the currently set description.  Fills all 
  47303.      the other country attributes with values.  LCP: CountryAttribs 
  47304.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47305.  
  47306.      Determine the primary language of the current country.  "Desc" must be 
  47307.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47308.      CountryPrimLang 
  47309.      bool getAllLanguages(vecString &Languages) 
  47310.  
  47311.      Determine all the languages used by the current country.  "Desc" must be 
  47312.      already set.  The result is returned in priority order (highest priority 
  47313.      first) in vecString &Languages.  LCP: CountryLanguages 
  47314.      bool getLanguageList(vecString &Languages) 
  47315.  
  47316.      Get a list of all possible languages, in alphabetical order, returned in 
  47317.      vecString &Languages.  LCP: CountryLangList 
  47318.      bool getLanguageListEngNat(mapString &Languages) 
  47319.  
  47320.      Get a map of all possible languages, their native description in 
  47321.      alphabetical order by english description, returned in in vecString 
  47322.      &Languages.  LCP: CountryLangListEngNat 
  47323.  
  47324.   Delete a country 
  47325.      bool deleteFromDesc() 
  47326.  
  47327.      Delete the country that uses the currently set description.  LCP: 
  47328.      CountryDelete 
  47329.  
  47330.   Set data members 
  47331.      bool setAll(mapString &FieldValues) 
  47332.  
  47333.      Sets all the data members of a topic using the mapString which is passed 
  47334.      to it.  Only the fields present in the mapString are updated, the other 
  47335.      fields are untouched.  LCP: CountryUpdate 
  47336.      bool setDesc(const string &DescSetting) 
  47337.  
  47338.      Set the short description 
  47339.      bool setDescLong(const string &DescLongSetting) 
  47340.  
  47341.      Set the long description 
  47342.      bool setDescNative(const string &DescNativeSetting) 
  47343.  
  47344.      Set the native language description 
  47345.      bool setNetCode(const string &NetCodeSetting) 
  47346.  
  47347.      Set the internet code for this country 
  47348.      bool erase() 
  47349.  
  47350.      Sets all the data members to empty 
  47351.  
  47352.   Get data members 
  47353.      bool getAll(mapString &FieldValues) 
  47354.  
  47355.      Return a mapString of all the data members of this topic. The key is the 
  47356.      variable name.  LCP: CountryAttribs 
  47357.      string getDesc() 
  47358.  
  47359.      Get the short description 
  47360.      string getDescLong() 
  47361.  
  47362.      Get the long description 
  47363.      string getDescNative() 
  47364.  
  47365.      Get the native language description 
  47366.      string getNetCode() 
  47367.  
  47368.      Get the internet code for this country 
  47369.  
  47370.  
  47371. ΓòÉΓòÉΓòÉ <hidden> ╨┤ConfigAll ΓòÉΓòÉΓòÉ
  47372.  
  47373.  
  47374. lyris_Country Class 
  47375.  
  47376.      class lyris_Country 
  47377.  
  47378.      For determining what countries exist, and what languages are spoken & 
  47379.      preferred in each country 
  47380.  
  47381.      Defined in: COUNTRY.H 
  47382.  
  47383.   Create a new country 
  47384.  
  47385.       bool createNew() 
  47386.  
  47387.      Creates a new country/language table row.  LCP: CountryCreate 
  47388.      bool updateDatabase() 
  47389.  
  47390.      Save the current country with the data members that have changed.  LCP: 
  47391.      CountryUpdate 
  47392.      bool VerifyFields() 
  47393.  
  47394.      Verify that all required fields are filled in. 
  47395.  
  47396.   Retrieve data from the database 
  47397.      bool fetchAllCountries(vecString &AllCountries) 
  47398.  
  47399.      Fetch a list of all countries.  LCP: CountryAll 
  47400.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47401.  
  47402.      Fetch a paired list of countries and their native language descriptions, 
  47403.      sorted by english description.  LCP: CountryEngNat 
  47404.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47405.  
  47406.      Fetch a paired list of native language country descriptions, and the 
  47407.      english name of the country. 
  47408.      bool retrieveFromNetCode() 
  47409.  
  47410.      Determine the country that uses the currently set NetCode.  Fills all the 
  47411.      other country attributes with values. LCP: CountryAttNetCode 
  47412.      bool retrieveFromDesc() 
  47413.  
  47414.      Determine the country that uses the currently set description.  Fills all 
  47415.      the other country attributes with values.  LCP: CountryAttribs 
  47416.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47417.  
  47418.      Determine the primary language of the current country.  "Desc" must be 
  47419.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47420.      CountryPrimLang 
  47421.      bool getAllLanguages(vecString &Languages) 
  47422.  
  47423.      Determine all the languages used by the current country.  "Desc" must be 
  47424.      already set.  The result is returned in priority order (highest priority 
  47425.      first) in vecString &Languages.  LCP: CountryLanguages 
  47426.      bool getLanguageList(vecString &Languages) 
  47427.  
  47428.      Get a list of all possible languages, in alphabetical order, returned in 
  47429.      vecString &Languages.  LCP: CountryLangList 
  47430.      bool getLanguageListEngNat(mapString &Languages) 
  47431.  
  47432.      Get a map of all possible languages, their native description in 
  47433.      alphabetical order by english description, returned in in vecString 
  47434.      &Languages.  LCP: CountryLangListEngNat 
  47435.  
  47436.   Delete a country 
  47437.      bool deleteFromDesc() 
  47438.  
  47439.      Delete the country that uses the currently set description.  LCP: 
  47440.      CountryDelete 
  47441.  
  47442.   Set data members 
  47443.      bool setAll(mapString &FieldValues) 
  47444.  
  47445.      Sets all the data members of a topic using the mapString which is passed 
  47446.      to it.  Only the fields present in the mapString are updated, the other 
  47447.      fields are untouched.  LCP: CountryUpdate 
  47448.      bool setDesc(const string &DescSetting) 
  47449.  
  47450.      Set the short description 
  47451.      bool setDescLong(const string &DescLongSetting) 
  47452.  
  47453.      Set the long description 
  47454.      bool setDescNative(const string &DescNativeSetting) 
  47455.  
  47456.      Set the native language description 
  47457.      bool setNetCode(const string &NetCodeSetting) 
  47458.  
  47459.      Set the internet code for this country 
  47460.      bool erase() 
  47461.  
  47462.      Sets all the data members to empty 
  47463.  
  47464.   Get data members 
  47465.      bool getAll(mapString &FieldValues) 
  47466.  
  47467.      Return a mapString of all the data members of this topic. The key is the 
  47468.      variable name.  LCP: CountryAttribs 
  47469.      string getDesc() 
  47470.  
  47471.      Get the short description 
  47472.      string getDescLong() 
  47473.  
  47474.      Get the long description 
  47475.      string getDescNative() 
  47476.  
  47477.      Get the native language description 
  47478.      string getNetCode() 
  47479.  
  47480.      Get the internet code for this country 
  47481.  
  47482.  
  47483. ΓòÉΓòÉΓòÉ <hidden> ╨╡Config ΓòÉΓòÉΓòÉ
  47484.  
  47485.  
  47486. lyris_Country Class 
  47487.  
  47488.      class lyris_Country 
  47489.  
  47490.      For determining what countries exist, and what languages are spoken & 
  47491.      preferred in each country 
  47492.  
  47493.      Defined in: COUNTRY.H 
  47494.  
  47495.   Create a new country 
  47496.  
  47497.       bool createNew() 
  47498.  
  47499.      Creates a new country/language table row.  LCP: CountryCreate 
  47500.      bool updateDatabase() 
  47501.  
  47502.      Save the current country with the data members that have changed.  LCP: 
  47503.      CountryUpdate 
  47504.      bool VerifyFields() 
  47505.  
  47506.      Verify that all required fields are filled in. 
  47507.  
  47508.   Retrieve data from the database 
  47509.      bool fetchAllCountries(vecString &AllCountries) 
  47510.  
  47511.      Fetch a list of all countries.  LCP: CountryAll 
  47512.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47513.  
  47514.      Fetch a paired list of countries and their native language descriptions, 
  47515.      sorted by english description.  LCP: CountryEngNat 
  47516.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47517.  
  47518.      Fetch a paired list of native language country descriptions, and the 
  47519.      english name of the country. 
  47520.      bool retrieveFromNetCode() 
  47521.  
  47522.      Determine the country that uses the currently set NetCode.  Fills all the 
  47523.      other country attributes with values. LCP: CountryAttNetCode 
  47524.      bool retrieveFromDesc() 
  47525.  
  47526.      Determine the country that uses the currently set description.  Fills all 
  47527.      the other country attributes with values.  LCP: CountryAttribs 
  47528.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47529.  
  47530.      Determine the primary language of the current country.  "Desc" must be 
  47531.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47532.      CountryPrimLang 
  47533.      bool getAllLanguages(vecString &Languages) 
  47534.  
  47535.      Determine all the languages used by the current country.  "Desc" must be 
  47536.      already set.  The result is returned in priority order (highest priority 
  47537.      first) in vecString &Languages.  LCP: CountryLanguages 
  47538.      bool getLanguageList(vecString &Languages) 
  47539.  
  47540.      Get a list of all possible languages, in alphabetical order, returned in 
  47541.      vecString &Languages.  LCP: CountryLangList 
  47542.      bool getLanguageListEngNat(mapString &Languages) 
  47543.  
  47544.      Get a map of all possible languages, their native description in 
  47545.      alphabetical order by english description, returned in in vecString 
  47546.      &Languages.  LCP: CountryLangListEngNat 
  47547.  
  47548.   Delete a country 
  47549.      bool deleteFromDesc() 
  47550.  
  47551.      Delete the country that uses the currently set description.  LCP: 
  47552.      CountryDelete 
  47553.  
  47554.   Set data members 
  47555.      bool setAll(mapString &FieldValues) 
  47556.  
  47557.      Sets all the data members of a topic using the mapString which is passed 
  47558.      to it.  Only the fields present in the mapString are updated, the other 
  47559.      fields are untouched.  LCP: CountryUpdate 
  47560.      bool setDesc(const string &DescSetting) 
  47561.  
  47562.      Set the short description 
  47563.      bool setDescLong(const string &DescLongSetting) 
  47564.  
  47565.      Set the long description 
  47566.      bool setDescNative(const string &DescNativeSetting) 
  47567.  
  47568.      Set the native language description 
  47569.      bool setNetCode(const string &NetCodeSetting) 
  47570.  
  47571.      Set the internet code for this country 
  47572.      bool erase() 
  47573.  
  47574.      Sets all the data members to empty 
  47575.  
  47576.   Get data members 
  47577.      bool getAll(mapString &FieldValues) 
  47578.  
  47579.      Return a mapString of all the data members of this topic. The key is the 
  47580.      variable name.  LCP: CountryAttribs 
  47581.      string getDesc() 
  47582.  
  47583.      Get the short description 
  47584.      string getDescLong() 
  47585.  
  47586.      Get the long description 
  47587.      string getDescNative() 
  47588.  
  47589.      Get the native language description 
  47590.      string getNetCode() 
  47591.  
  47592.      Get the internet code for this country 
  47593.  
  47594.  
  47595. ΓòÉΓòÉΓòÉ <hidden> ╨╢chr ΓòÉΓòÉΓòÉ
  47596.  
  47597.  
  47598. lyris_Country Class 
  47599.  
  47600.      class lyris_Country 
  47601.  
  47602.      For determining what countries exist, and what languages are spoken & 
  47603.      preferred in each country 
  47604.  
  47605.      Defined in: COUNTRY.H 
  47606.  
  47607.   Create a new country 
  47608.  
  47609.       bool createNew() 
  47610.  
  47611.      Creates a new country/language table row.  LCP: CountryCreate 
  47612.      bool updateDatabase() 
  47613.  
  47614.      Save the current country with the data members that have changed.  LCP: 
  47615.      CountryUpdate 
  47616.      bool VerifyFields() 
  47617.  
  47618.      Verify that all required fields are filled in. 
  47619.  
  47620.   Retrieve data from the database 
  47621.      bool fetchAllCountries(vecString &AllCountries) 
  47622.  
  47623.      Fetch a list of all countries.  LCP: CountryAll 
  47624.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47625.  
  47626.      Fetch a paired list of countries and their native language descriptions, 
  47627.      sorted by english description.  LCP: CountryEngNat 
  47628.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47629.  
  47630.      Fetch a paired list of native language country descriptions, and the 
  47631.      english name of the country. 
  47632.      bool retrieveFromNetCode() 
  47633.  
  47634.      Determine the country that uses the currently set NetCode.  Fills all the 
  47635.      other country attributes with values. LCP: CountryAttNetCode 
  47636.      bool retrieveFromDesc() 
  47637.  
  47638.      Determine the country that uses the currently set description.  Fills all 
  47639.      the other country attributes with values.  LCP: CountryAttribs 
  47640.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47641.  
  47642.      Determine the primary language of the current country.  "Desc" must be 
  47643.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47644.      CountryPrimLang 
  47645.      bool getAllLanguages(vecString &Languages) 
  47646.  
  47647.      Determine all the languages used by the current country.  "Desc" must be 
  47648.      already set.  The result is returned in priority order (highest priority 
  47649.      first) in vecString &Languages.  LCP: CountryLanguages 
  47650.      bool getLanguageList(vecString &Languages) 
  47651.  
  47652.      Get a list of all possible languages, in alphabetical order, returned in 
  47653.      vecString &Languages.  LCP: CountryLangList 
  47654.      bool getLanguageListEngNat(mapString &Languages) 
  47655.  
  47656.      Get a map of all possible languages, their native description in 
  47657.      alphabetical order by english description, returned in in vecString 
  47658.      &Languages.  LCP: CountryLangListEngNat 
  47659.  
  47660.   Delete a country 
  47661.      bool deleteFromDesc() 
  47662.  
  47663.      Delete the country that uses the currently set description.  LCP: 
  47664.      CountryDelete 
  47665.  
  47666.   Set data members 
  47667.      bool setAll(mapString &FieldValues) 
  47668.  
  47669.      Sets all the data members of a topic using the mapString which is passed 
  47670.      to it.  Only the fields present in the mapString are updated, the other 
  47671.      fields are untouched.  LCP: CountryUpdate 
  47672.      bool setDesc(const string &DescSetting) 
  47673.  
  47674.      Set the short description 
  47675.      bool setDescLong(const string &DescLongSetting) 
  47676.  
  47677.      Set the long description 
  47678.      bool setDescNative(const string &DescNativeSetting) 
  47679.  
  47680.      Set the native language description 
  47681.      bool setNetCode(const string &NetCodeSetting) 
  47682.  
  47683.      Set the internet code for this country 
  47684.      bool erase() 
  47685.  
  47686.      Sets all the data members to empty 
  47687.  
  47688.   Get data members 
  47689.      bool getAll(mapString &FieldValues) 
  47690.  
  47691.      Return a mapString of all the data members of this topic. The key is the 
  47692.      variable name.  LCP: CountryAttribs 
  47693.      string getDesc() 
  47694.  
  47695.      Get the short description 
  47696.      string getDescLong() 
  47697.  
  47698.      Get the long description 
  47699.      string getDescNative() 
  47700.  
  47701.      Get the native language description 
  47702.      string getNetCode() 
  47703.  
  47704.      Get the internet code for this country 
  47705.  
  47706.  
  47707. ΓòÉΓòÉΓòÉ <hidden> ╨╖chop array ΓòÉΓòÉΓòÉ
  47708.  
  47709.  
  47710. lyris_Country Class 
  47711.  
  47712.      class lyris_Country 
  47713.  
  47714.      For determining what countries exist, and what languages are spoken & 
  47715.      preferred in each country 
  47716.  
  47717.      Defined in: COUNTRY.H 
  47718.  
  47719.   Create a new country 
  47720.  
  47721.       bool createNew() 
  47722.  
  47723.      Creates a new country/language table row.  LCP: CountryCreate 
  47724.      bool updateDatabase() 
  47725.  
  47726.      Save the current country with the data members that have changed.  LCP: 
  47727.      CountryUpdate 
  47728.      bool VerifyFields() 
  47729.  
  47730.      Verify that all required fields are filled in. 
  47731.  
  47732.   Retrieve data from the database 
  47733.      bool fetchAllCountries(vecString &AllCountries) 
  47734.  
  47735.      Fetch a list of all countries.  LCP: CountryAll 
  47736.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47737.  
  47738.      Fetch a paired list of countries and their native language descriptions, 
  47739.      sorted by english description.  LCP: CountryEngNat 
  47740.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47741.  
  47742.      Fetch a paired list of native language country descriptions, and the 
  47743.      english name of the country. 
  47744.      bool retrieveFromNetCode() 
  47745.  
  47746.      Determine the country that uses the currently set NetCode.  Fills all the 
  47747.      other country attributes with values. LCP: CountryAttNetCode 
  47748.      bool retrieveFromDesc() 
  47749.  
  47750.      Determine the country that uses the currently set description.  Fills all 
  47751.      the other country attributes with values.  LCP: CountryAttribs 
  47752.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47753.  
  47754.      Determine the primary language of the current country.  "Desc" must be 
  47755.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47756.      CountryPrimLang 
  47757.      bool getAllLanguages(vecString &Languages) 
  47758.  
  47759.      Determine all the languages used by the current country.  "Desc" must be 
  47760.      already set.  The result is returned in priority order (highest priority 
  47761.      first) in vecString &Languages.  LCP: CountryLanguages 
  47762.      bool getLanguageList(vecString &Languages) 
  47763.  
  47764.      Get a list of all possible languages, in alphabetical order, returned in 
  47765.      vecString &Languages.  LCP: CountryLangList 
  47766.      bool getLanguageListEngNat(mapString &Languages) 
  47767.  
  47768.      Get a map of all possible languages, their native description in 
  47769.      alphabetical order by english description, returned in in vecString 
  47770.      &Languages.  LCP: CountryLangListEngNat 
  47771.  
  47772.   Delete a country 
  47773.      bool deleteFromDesc() 
  47774.  
  47775.      Delete the country that uses the currently set description.  LCP: 
  47776.      CountryDelete 
  47777.  
  47778.   Set data members 
  47779.      bool setAll(mapString &FieldValues) 
  47780.  
  47781.      Sets all the data members of a topic using the mapString which is passed 
  47782.      to it.  Only the fields present in the mapString are updated, the other 
  47783.      fields are untouched.  LCP: CountryUpdate 
  47784.      bool setDesc(const string &DescSetting) 
  47785.  
  47786.      Set the short description 
  47787.      bool setDescLong(const string &DescLongSetting) 
  47788.  
  47789.      Set the long description 
  47790.      bool setDescNative(const string &DescNativeSetting) 
  47791.  
  47792.      Set the native language description 
  47793.      bool setNetCode(const string &NetCodeSetting) 
  47794.  
  47795.      Set the internet code for this country 
  47796.      bool erase() 
  47797.  
  47798.      Sets all the data members to empty 
  47799.  
  47800.   Get data members 
  47801.      bool getAll(mapString &FieldValues) 
  47802.  
  47803.      Return a mapString of all the data members of this topic. The key is the 
  47804.      variable name.  LCP: CountryAttribs 
  47805.      string getDesc() 
  47806.  
  47807.      Get the short description 
  47808.      string getDescLong() 
  47809.  
  47810.      Get the long description 
  47811.      string getDescNative() 
  47812.  
  47813.      Get the native language description 
  47814.      string getNetCode() 
  47815.  
  47816.      Get the internet code for this country 
  47817.  
  47818.  
  47819. ΓòÉΓòÉΓòÉ <hidden> ╨╕associative array element assignment ΓòÉΓòÉΓòÉ
  47820.  
  47821.  
  47822. lyris_Country Class 
  47823.  
  47824.      class lyris_Country 
  47825.  
  47826.      For determining what countries exist, and what languages are spoken & 
  47827.      preferred in each country 
  47828.  
  47829.      Defined in: COUNTRY.H 
  47830.  
  47831.   Create a new country 
  47832.  
  47833.       bool createNew() 
  47834.  
  47835.      Creates a new country/language table row.  LCP: CountryCreate 
  47836.      bool updateDatabase() 
  47837.  
  47838.      Save the current country with the data members that have changed.  LCP: 
  47839.      CountryUpdate 
  47840.      bool VerifyFields() 
  47841.  
  47842.      Verify that all required fields are filled in. 
  47843.  
  47844.   Retrieve data from the database 
  47845.      bool fetchAllCountries(vecString &AllCountries) 
  47846.  
  47847.      Fetch a list of all countries.  LCP: CountryAll 
  47848.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47849.  
  47850.      Fetch a paired list of countries and their native language descriptions, 
  47851.      sorted by english description.  LCP: CountryEngNat 
  47852.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47853.  
  47854.      Fetch a paired list of native language country descriptions, and the 
  47855.      english name of the country. 
  47856.      bool retrieveFromNetCode() 
  47857.  
  47858.      Determine the country that uses the currently set NetCode.  Fills all the 
  47859.      other country attributes with values. LCP: CountryAttNetCode 
  47860.      bool retrieveFromDesc() 
  47861.  
  47862.      Determine the country that uses the currently set description.  Fills all 
  47863.      the other country attributes with values.  LCP: CountryAttribs 
  47864.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47865.  
  47866.      Determine the primary language of the current country.  "Desc" must be 
  47867.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47868.      CountryPrimLang 
  47869.      bool getAllLanguages(vecString &Languages) 
  47870.  
  47871.      Determine all the languages used by the current country.  "Desc" must be 
  47872.      already set.  The result is returned in priority order (highest priority 
  47873.      first) in vecString &Languages.  LCP: CountryLanguages 
  47874.      bool getLanguageList(vecString &Languages) 
  47875.  
  47876.      Get a list of all possible languages, in alphabetical order, returned in 
  47877.      vecString &Languages.  LCP: CountryLangList 
  47878.      bool getLanguageListEngNat(mapString &Languages) 
  47879.  
  47880.      Get a map of all possible languages, their native description in 
  47881.      alphabetical order by english description, returned in in vecString 
  47882.      &Languages.  LCP: CountryLangListEngNat 
  47883.  
  47884.   Delete a country 
  47885.      bool deleteFromDesc() 
  47886.  
  47887.      Delete the country that uses the currently set description.  LCP: 
  47888.      CountryDelete 
  47889.  
  47890.   Set data members 
  47891.      bool setAll(mapString &FieldValues) 
  47892.  
  47893.      Sets all the data members of a topic using the mapString which is passed 
  47894.      to it.  Only the fields present in the mapString are updated, the other 
  47895.      fields are untouched.  LCP: CountryUpdate 
  47896.      bool setDesc(const string &DescSetting) 
  47897.  
  47898.      Set the short description 
  47899.      bool setDescLong(const string &DescLongSetting) 
  47900.  
  47901.      Set the long description 
  47902.      bool setDescNative(const string &DescNativeSetting) 
  47903.  
  47904.      Set the native language description 
  47905.      bool setNetCode(const string &NetCodeSetting) 
  47906.  
  47907.      Set the internet code for this country 
  47908.      bool erase() 
  47909.  
  47910.      Sets all the data members to empty 
  47911.  
  47912.   Get data members 
  47913.      bool getAll(mapString &FieldValues) 
  47914.  
  47915.      Return a mapString of all the data members of this topic. The key is the 
  47916.      variable name.  LCP: CountryAttribs 
  47917.      string getDesc() 
  47918.  
  47919.      Get the short description 
  47920.      string getDescLong() 
  47921.  
  47922.      Get the long description 
  47923.      string getDescNative() 
  47924.  
  47925.      Get the native language description 
  47926.      string getNetCode() 
  47927.  
  47928.      Get the internet code for this country 
  47929.  
  47930.  
  47931. ΓòÉΓòÉΓòÉ <hidden> ╨╣assert ΓòÉΓòÉΓòÉ
  47932.  
  47933.  
  47934. lyris_Country Class 
  47935.  
  47936.      class lyris_Country 
  47937.  
  47938.      For determining what countries exist, and what languages are spoken & 
  47939.      preferred in each country 
  47940.  
  47941.      Defined in: COUNTRY.H 
  47942.  
  47943.   Create a new country 
  47944.  
  47945.       bool createNew() 
  47946.  
  47947.      Creates a new country/language table row.  LCP: CountryCreate 
  47948.      bool updateDatabase() 
  47949.  
  47950.      Save the current country with the data members that have changed.  LCP: 
  47951.      CountryUpdate 
  47952.      bool VerifyFields() 
  47953.  
  47954.      Verify that all required fields are filled in. 
  47955.  
  47956.   Retrieve data from the database 
  47957.      bool fetchAllCountries(vecString &AllCountries) 
  47958.  
  47959.      Fetch a list of all countries.  LCP: CountryAll 
  47960.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  47961.  
  47962.      Fetch a paired list of countries and their native language descriptions, 
  47963.      sorted by english description.  LCP: CountryEngNat 
  47964.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  47965.  
  47966.      Fetch a paired list of native language country descriptions, and the 
  47967.      english name of the country. 
  47968.      bool retrieveFromNetCode() 
  47969.  
  47970.      Determine the country that uses the currently set NetCode.  Fills all the 
  47971.      other country attributes with values. LCP: CountryAttNetCode 
  47972.      bool retrieveFromDesc() 
  47973.  
  47974.      Determine the country that uses the currently set description.  Fills all 
  47975.      the other country attributes with values.  LCP: CountryAttribs 
  47976.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  47977.  
  47978.      Determine the primary language of the current country.  "Desc" must be 
  47979.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  47980.      CountryPrimLang 
  47981.      bool getAllLanguages(vecString &Languages) 
  47982.  
  47983.      Determine all the languages used by the current country.  "Desc" must be 
  47984.      already set.  The result is returned in priority order (highest priority 
  47985.      first) in vecString &Languages.  LCP: CountryLanguages 
  47986.      bool getLanguageList(vecString &Languages) 
  47987.  
  47988.      Get a list of all possible languages, in alphabetical order, returned in 
  47989.      vecString &Languages.  LCP: CountryLangList 
  47990.      bool getLanguageListEngNat(mapString &Languages) 
  47991.  
  47992.      Get a map of all possible languages, their native description in 
  47993.      alphabetical order by english description, returned in in vecString 
  47994.      &Languages.  LCP: CountryLangListEngNat 
  47995.  
  47996.   Delete a country 
  47997.      bool deleteFromDesc() 
  47998.  
  47999.      Delete the country that uses the currently set description.  LCP: 
  48000.      CountryDelete 
  48001.  
  48002.   Set data members 
  48003.      bool setAll(mapString &FieldValues) 
  48004.  
  48005.      Sets all the data members of a topic using the mapString which is passed 
  48006.      to it.  Only the fields present in the mapString are updated, the other 
  48007.      fields are untouched.  LCP: CountryUpdate 
  48008.      bool setDesc(const string &DescSetting) 
  48009.  
  48010.      Set the short description 
  48011.      bool setDescLong(const string &DescLongSetting) 
  48012.  
  48013.      Set the long description 
  48014.      bool setDescNative(const string &DescNativeSetting) 
  48015.  
  48016.      Set the native language description 
  48017.      bool setNetCode(const string &NetCodeSetting) 
  48018.  
  48019.      Set the internet code for this country 
  48020.      bool erase() 
  48021.  
  48022.      Sets all the data members to empty 
  48023.  
  48024.   Get data members 
  48025.      bool getAll(mapString &FieldValues) 
  48026.  
  48027.      Return a mapString of all the data members of this topic. The key is the 
  48028.      variable name.  LCP: CountryAttribs 
  48029.      string getDesc() 
  48030.  
  48031.      Get the short description 
  48032.      string getDescLong() 
  48033.  
  48034.      Get the long description 
  48035.      string getDescNative() 
  48036.  
  48037.      Get the native language description 
  48038.      string getNetCode() 
  48039.  
  48040.      Get the internet code for this country 
  48041.  
  48042.  
  48043. ΓòÉΓòÉΓòÉ <hidden> ╨║array substitution ΓòÉΓòÉΓòÉ
  48044.  
  48045.  
  48046. lyris_Country Class 
  48047.  
  48048.      class lyris_Country 
  48049.  
  48050.      For determining what countries exist, and what languages are spoken & 
  48051.      preferred in each country 
  48052.  
  48053.      Defined in: COUNTRY.H 
  48054.  
  48055.   Create a new country 
  48056.  
  48057.       bool createNew() 
  48058.  
  48059.      Creates a new country/language table row.  LCP: CountryCreate 
  48060.      bool updateDatabase() 
  48061.  
  48062.      Save the current country with the data members that have changed.  LCP: 
  48063.      CountryUpdate 
  48064.      bool VerifyFields() 
  48065.  
  48066.      Verify that all required fields are filled in. 
  48067.  
  48068.   Retrieve data from the database 
  48069.      bool fetchAllCountries(vecString &AllCountries) 
  48070.  
  48071.      Fetch a list of all countries.  LCP: CountryAll 
  48072.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48073.  
  48074.      Fetch a paired list of countries and their native language descriptions, 
  48075.      sorted by english description.  LCP: CountryEngNat 
  48076.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48077.  
  48078.      Fetch a paired list of native language country descriptions, and the 
  48079.      english name of the country. 
  48080.      bool retrieveFromNetCode() 
  48081.  
  48082.      Determine the country that uses the currently set NetCode.  Fills all the 
  48083.      other country attributes with values. LCP: CountryAttNetCode 
  48084.      bool retrieveFromDesc() 
  48085.  
  48086.      Determine the country that uses the currently set description.  Fills all 
  48087.      the other country attributes with values.  LCP: CountryAttribs 
  48088.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48089.  
  48090.      Determine the primary language of the current country.  "Desc" must be 
  48091.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48092.      CountryPrimLang 
  48093.      bool getAllLanguages(vecString &Languages) 
  48094.  
  48095.      Determine all the languages used by the current country.  "Desc" must be 
  48096.      already set.  The result is returned in priority order (highest priority 
  48097.      first) in vecString &Languages.  LCP: CountryLanguages 
  48098.      bool getLanguageList(vecString &Languages) 
  48099.  
  48100.      Get a list of all possible languages, in alphabetical order, returned in 
  48101.      vecString &Languages.  LCP: CountryLangList 
  48102.      bool getLanguageListEngNat(mapString &Languages) 
  48103.  
  48104.      Get a map of all possible languages, their native description in 
  48105.      alphabetical order by english description, returned in in vecString 
  48106.      &Languages.  LCP: CountryLangListEngNat 
  48107.  
  48108.   Delete a country 
  48109.      bool deleteFromDesc() 
  48110.  
  48111.      Delete the country that uses the currently set description.  LCP: 
  48112.      CountryDelete 
  48113.  
  48114.   Set data members 
  48115.      bool setAll(mapString &FieldValues) 
  48116.  
  48117.      Sets all the data members of a topic using the mapString which is passed 
  48118.      to it.  Only the fields present in the mapString are updated, the other 
  48119.      fields are untouched.  LCP: CountryUpdate 
  48120.      bool setDesc(const string &DescSetting) 
  48121.  
  48122.      Set the short description 
  48123.      bool setDescLong(const string &DescLongSetting) 
  48124.  
  48125.      Set the long description 
  48126.      bool setDescNative(const string &DescNativeSetting) 
  48127.  
  48128.      Set the native language description 
  48129.      bool setNetCode(const string &NetCodeSetting) 
  48130.  
  48131.      Set the internet code for this country 
  48132.      bool erase() 
  48133.  
  48134.      Sets all the data members to empty 
  48135.  
  48136.   Get data members 
  48137.      bool getAll(mapString &FieldValues) 
  48138.  
  48139.      Return a mapString of all the data members of this topic. The key is the 
  48140.      variable name.  LCP: CountryAttribs 
  48141.      string getDesc() 
  48142.  
  48143.      Get the short description 
  48144.      string getDescLong() 
  48145.  
  48146.      Get the long description 
  48147.      string getDescNative() 
  48148.  
  48149.      Get the native language description 
  48150.      string getNetCode() 
  48151.  
  48152.      Get the internet code for this country 
  48153.  
  48154.  
  48155. ΓòÉΓòÉΓòÉ <hidden> ╨╗array element assignment ΓòÉΓòÉΓòÉ
  48156.  
  48157.  
  48158. lyris_Country Class 
  48159.  
  48160.      class lyris_Country 
  48161.  
  48162.      For determining what countries exist, and what languages are spoken & 
  48163.      preferred in each country 
  48164.  
  48165.      Defined in: COUNTRY.H 
  48166.  
  48167.   Create a new country 
  48168.  
  48169.       bool createNew() 
  48170.  
  48171.      Creates a new country/language table row.  LCP: CountryCreate 
  48172.      bool updateDatabase() 
  48173.  
  48174.      Save the current country with the data members that have changed.  LCP: 
  48175.      CountryUpdate 
  48176.      bool VerifyFields() 
  48177.  
  48178.      Verify that all required fields are filled in. 
  48179.  
  48180.   Retrieve data from the database 
  48181.      bool fetchAllCountries(vecString &AllCountries) 
  48182.  
  48183.      Fetch a list of all countries.  LCP: CountryAll 
  48184.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48185.  
  48186.      Fetch a paired list of countries and their native language descriptions, 
  48187.      sorted by english description.  LCP: CountryEngNat 
  48188.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48189.  
  48190.      Fetch a paired list of native language country descriptions, and the 
  48191.      english name of the country. 
  48192.      bool retrieveFromNetCode() 
  48193.  
  48194.      Determine the country that uses the currently set NetCode.  Fills all the 
  48195.      other country attributes with values. LCP: CountryAttNetCode 
  48196.      bool retrieveFromDesc() 
  48197.  
  48198.      Determine the country that uses the currently set description.  Fills all 
  48199.      the other country attributes with values.  LCP: CountryAttribs 
  48200.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48201.  
  48202.      Determine the primary language of the current country.  "Desc" must be 
  48203.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48204.      CountryPrimLang 
  48205.      bool getAllLanguages(vecString &Languages) 
  48206.  
  48207.      Determine all the languages used by the current country.  "Desc" must be 
  48208.      already set.  The result is returned in priority order (highest priority 
  48209.      first) in vecString &Languages.  LCP: CountryLanguages 
  48210.      bool getLanguageList(vecString &Languages) 
  48211.  
  48212.      Get a list of all possible languages, in alphabetical order, returned in 
  48213.      vecString &Languages.  LCP: CountryLangList 
  48214.      bool getLanguageListEngNat(mapString &Languages) 
  48215.  
  48216.      Get a map of all possible languages, their native description in 
  48217.      alphabetical order by english description, returned in in vecString 
  48218.      &Languages.  LCP: CountryLangListEngNat 
  48219.  
  48220.   Delete a country 
  48221.      bool deleteFromDesc() 
  48222.  
  48223.      Delete the country that uses the currently set description.  LCP: 
  48224.      CountryDelete 
  48225.  
  48226.   Set data members 
  48227.      bool setAll(mapString &FieldValues) 
  48228.  
  48229.      Sets all the data members of a topic using the mapString which is passed 
  48230.      to it.  Only the fields present in the mapString are updated, the other 
  48231.      fields are untouched.  LCP: CountryUpdate 
  48232.      bool setDesc(const string &DescSetting) 
  48233.  
  48234.      Set the short description 
  48235.      bool setDescLong(const string &DescLongSetting) 
  48236.  
  48237.      Set the long description 
  48238.      bool setDescNative(const string &DescNativeSetting) 
  48239.  
  48240.      Set the native language description 
  48241.      bool setNetCode(const string &NetCodeSetting) 
  48242.  
  48243.      Set the internet code for this country 
  48244.      bool erase() 
  48245.  
  48246.      Sets all the data members to empty 
  48247.  
  48248.   Get data members 
  48249.      bool getAll(mapString &FieldValues) 
  48250.  
  48251.      Return a mapString of all the data members of this topic. The key is the 
  48252.      variable name.  LCP: CountryAttribs 
  48253.      string getDesc() 
  48254.  
  48255.      Get the short description 
  48256.      string getDescLong() 
  48257.  
  48258.      Get the long description 
  48259.      string getDescNative() 
  48260.  
  48261.      Get the native language description 
  48262.      string getNetCode() 
  48263.  
  48264.      Get the internet code for this country 
  48265.  
  48266.  
  48267. ΓòÉΓòÉΓòÉ <hidden> ╨╝mapLongArray ΓòÉΓòÉΓòÉ
  48268.  
  48269.  
  48270. lyris_Country Class 
  48271.  
  48272.      class lyris_Country 
  48273.  
  48274.      For determining what countries exist, and what languages are spoken & 
  48275.      preferred in each country 
  48276.  
  48277.      Defined in: COUNTRY.H 
  48278.  
  48279.   Create a new country 
  48280.  
  48281.       bool createNew() 
  48282.  
  48283.      Creates a new country/language table row.  LCP: CountryCreate 
  48284.      bool updateDatabase() 
  48285.  
  48286.      Save the current country with the data members that have changed.  LCP: 
  48287.      CountryUpdate 
  48288.      bool VerifyFields() 
  48289.  
  48290.      Verify that all required fields are filled in. 
  48291.  
  48292.   Retrieve data from the database 
  48293.      bool fetchAllCountries(vecString &AllCountries) 
  48294.  
  48295.      Fetch a list of all countries.  LCP: CountryAll 
  48296.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48297.  
  48298.      Fetch a paired list of countries and their native language descriptions, 
  48299.      sorted by english description.  LCP: CountryEngNat 
  48300.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48301.  
  48302.      Fetch a paired list of native language country descriptions, and the 
  48303.      english name of the country. 
  48304.      bool retrieveFromNetCode() 
  48305.  
  48306.      Determine the country that uses the currently set NetCode.  Fills all the 
  48307.      other country attributes with values. LCP: CountryAttNetCode 
  48308.      bool retrieveFromDesc() 
  48309.  
  48310.      Determine the country that uses the currently set description.  Fills all 
  48311.      the other country attributes with values.  LCP: CountryAttribs 
  48312.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48313.  
  48314.      Determine the primary language of the current country.  "Desc" must be 
  48315.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48316.      CountryPrimLang 
  48317.      bool getAllLanguages(vecString &Languages) 
  48318.  
  48319.      Determine all the languages used by the current country.  "Desc" must be 
  48320.      already set.  The result is returned in priority order (highest priority 
  48321.      first) in vecString &Languages.  LCP: CountryLanguages 
  48322.      bool getLanguageList(vecString &Languages) 
  48323.  
  48324.      Get a list of all possible languages, in alphabetical order, returned in 
  48325.      vecString &Languages.  LCP: CountryLangList 
  48326.      bool getLanguageListEngNat(mapString &Languages) 
  48327.  
  48328.      Get a map of all possible languages, their native description in 
  48329.      alphabetical order by english description, returned in in vecString 
  48330.      &Languages.  LCP: CountryLangListEngNat 
  48331.  
  48332.   Delete a country 
  48333.      bool deleteFromDesc() 
  48334.  
  48335.      Delete the country that uses the currently set description.  LCP: 
  48336.      CountryDelete 
  48337.  
  48338.   Set data members 
  48339.      bool setAll(mapString &FieldValues) 
  48340.  
  48341.      Sets all the data members of a topic using the mapString which is passed 
  48342.      to it.  Only the fields present in the mapString are updated, the other 
  48343.      fields are untouched.  LCP: CountryUpdate 
  48344.      bool setDesc(const string &DescSetting) 
  48345.  
  48346.      Set the short description 
  48347.      bool setDescLong(const string &DescLongSetting) 
  48348.  
  48349.      Set the long description 
  48350.      bool setDescNative(const string &DescNativeSetting) 
  48351.  
  48352.      Set the native language description 
  48353.      bool setNetCode(const string &NetCodeSetting) 
  48354.  
  48355.      Set the internet code for this country 
  48356.      bool erase() 
  48357.  
  48358.      Sets all the data members to empty 
  48359.  
  48360.   Get data members 
  48361.      bool getAll(mapString &FieldValues) 
  48362.  
  48363.      Return a mapString of all the data members of this topic. The key is the 
  48364.      variable name.  LCP: CountryAttribs 
  48365.      string getDesc() 
  48366.  
  48367.      Get the short description 
  48368.      string getDescLong() 
  48369.  
  48370.      Get the long description 
  48371.      string getDescNative() 
  48372.  
  48373.      Get the native language description 
  48374.      string getNetCode() 
  48375.  
  48376.      Get the internet code for this country 
  48377.  
  48378.  
  48379. ΓòÉΓòÉΓòÉ <hidden> ╨╜mapSearchResults ΓòÉΓòÉΓòÉ
  48380.  
  48381.  
  48382. lyris_Country Class 
  48383.  
  48384.      class lyris_Country 
  48385.  
  48386.      For determining what countries exist, and what languages are spoken & 
  48387.      preferred in each country 
  48388.  
  48389.      Defined in: COUNTRY.H 
  48390.  
  48391.   Create a new country 
  48392.  
  48393.       bool createNew() 
  48394.  
  48395.      Creates a new country/language table row.  LCP: CountryCreate 
  48396.      bool updateDatabase() 
  48397.  
  48398.      Save the current country with the data members that have changed.  LCP: 
  48399.      CountryUpdate 
  48400.      bool VerifyFields() 
  48401.  
  48402.      Verify that all required fields are filled in. 
  48403.  
  48404.   Retrieve data from the database 
  48405.      bool fetchAllCountries(vecString &AllCountries) 
  48406.  
  48407.      Fetch a list of all countries.  LCP: CountryAll 
  48408.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48409.  
  48410.      Fetch a paired list of countries and their native language descriptions, 
  48411.      sorted by english description.  LCP: CountryEngNat 
  48412.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48413.  
  48414.      Fetch a paired list of native language country descriptions, and the 
  48415.      english name of the country. 
  48416.      bool retrieveFromNetCode() 
  48417.  
  48418.      Determine the country that uses the currently set NetCode.  Fills all the 
  48419.      other country attributes with values. LCP: CountryAttNetCode 
  48420.      bool retrieveFromDesc() 
  48421.  
  48422.      Determine the country that uses the currently set description.  Fills all 
  48423.      the other country attributes with values.  LCP: CountryAttribs 
  48424.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48425.  
  48426.      Determine the primary language of the current country.  "Desc" must be 
  48427.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48428.      CountryPrimLang 
  48429.      bool getAllLanguages(vecString &Languages) 
  48430.  
  48431.      Determine all the languages used by the current country.  "Desc" must be 
  48432.      already set.  The result is returned in priority order (highest priority 
  48433.      first) in vecString &Languages.  LCP: CountryLanguages 
  48434.      bool getLanguageList(vecString &Languages) 
  48435.  
  48436.      Get a list of all possible languages, in alphabetical order, returned in 
  48437.      vecString &Languages.  LCP: CountryLangList 
  48438.      bool getLanguageListEngNat(mapString &Languages) 
  48439.  
  48440.      Get a map of all possible languages, their native description in 
  48441.      alphabetical order by english description, returned in in vecString 
  48442.      &Languages.  LCP: CountryLangListEngNat 
  48443.  
  48444.   Delete a country 
  48445.      bool deleteFromDesc() 
  48446.  
  48447.      Delete the country that uses the currently set description.  LCP: 
  48448.      CountryDelete 
  48449.  
  48450.   Set data members 
  48451.      bool setAll(mapString &FieldValues) 
  48452.  
  48453.      Sets all the data members of a topic using the mapString which is passed 
  48454.      to it.  Only the fields present in the mapString are updated, the other 
  48455.      fields are untouched.  LCP: CountryUpdate 
  48456.      bool setDesc(const string &DescSetting) 
  48457.  
  48458.      Set the short description 
  48459.      bool setDescLong(const string &DescLongSetting) 
  48460.  
  48461.      Set the long description 
  48462.      bool setDescNative(const string &DescNativeSetting) 
  48463.  
  48464.      Set the native language description 
  48465.      bool setNetCode(const string &NetCodeSetting) 
  48466.  
  48467.      Set the internet code for this country 
  48468.      bool erase() 
  48469.  
  48470.      Sets all the data members to empty 
  48471.  
  48472.   Get data members 
  48473.      bool getAll(mapString &FieldValues) 
  48474.  
  48475.      Return a mapString of all the data members of this topic. The key is the 
  48476.      variable name.  LCP: CountryAttribs 
  48477.      string getDesc() 
  48478.  
  48479.      Get the short description 
  48480.      string getDescLong() 
  48481.  
  48482.      Get the long description 
  48483.      string getDescNative() 
  48484.  
  48485.      Get the native language description 
  48486.      string getNetCode() 
  48487.  
  48488.      Get the internet code for this country 
  48489.  
  48490.  
  48491. ΓòÉΓòÉΓòÉ <hidden> ╨╛mapStringArray ΓòÉΓòÉΓòÉ
  48492.  
  48493.  
  48494. lyris_Country Class 
  48495.  
  48496.      class lyris_Country 
  48497.  
  48498.      For determining what countries exist, and what languages are spoken & 
  48499.      preferred in each country 
  48500.  
  48501.      Defined in: COUNTRY.H 
  48502.  
  48503.   Create a new country 
  48504.  
  48505.       bool createNew() 
  48506.  
  48507.      Creates a new country/language table row.  LCP: CountryCreate 
  48508.      bool updateDatabase() 
  48509.  
  48510.      Save the current country with the data members that have changed.  LCP: 
  48511.      CountryUpdate 
  48512.      bool VerifyFields() 
  48513.  
  48514.      Verify that all required fields are filled in. 
  48515.  
  48516.   Retrieve data from the database 
  48517.      bool fetchAllCountries(vecString &AllCountries) 
  48518.  
  48519.      Fetch a list of all countries.  LCP: CountryAll 
  48520.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48521.  
  48522.      Fetch a paired list of countries and their native language descriptions, 
  48523.      sorted by english description.  LCP: CountryEngNat 
  48524.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48525.  
  48526.      Fetch a paired list of native language country descriptions, and the 
  48527.      english name of the country. 
  48528.      bool retrieveFromNetCode() 
  48529.  
  48530.      Determine the country that uses the currently set NetCode.  Fills all the 
  48531.      other country attributes with values. LCP: CountryAttNetCode 
  48532.      bool retrieveFromDesc() 
  48533.  
  48534.      Determine the country that uses the currently set description.  Fills all 
  48535.      the other country attributes with values.  LCP: CountryAttribs 
  48536.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48537.  
  48538.      Determine the primary language of the current country.  "Desc" must be 
  48539.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48540.      CountryPrimLang 
  48541.      bool getAllLanguages(vecString &Languages) 
  48542.  
  48543.      Determine all the languages used by the current country.  "Desc" must be 
  48544.      already set.  The result is returned in priority order (highest priority 
  48545.      first) in vecString &Languages.  LCP: CountryLanguages 
  48546.      bool getLanguageList(vecString &Languages) 
  48547.  
  48548.      Get a list of all possible languages, in alphabetical order, returned in 
  48549.      vecString &Languages.  LCP: CountryLangList 
  48550.      bool getLanguageListEngNat(mapString &Languages) 
  48551.  
  48552.      Get a map of all possible languages, their native description in 
  48553.      alphabetical order by english description, returned in in vecString 
  48554.      &Languages.  LCP: CountryLangListEngNat 
  48555.  
  48556.   Delete a country 
  48557.      bool deleteFromDesc() 
  48558.  
  48559.      Delete the country that uses the currently set description.  LCP: 
  48560.      CountryDelete 
  48561.  
  48562.   Set data members 
  48563.      bool setAll(mapString &FieldValues) 
  48564.  
  48565.      Sets all the data members of a topic using the mapString which is passed 
  48566.      to it.  Only the fields present in the mapString are updated, the other 
  48567.      fields are untouched.  LCP: CountryUpdate 
  48568.      bool setDesc(const string &DescSetting) 
  48569.  
  48570.      Set the short description 
  48571.      bool setDescLong(const string &DescLongSetting) 
  48572.  
  48573.      Set the long description 
  48574.      bool setDescNative(const string &DescNativeSetting) 
  48575.  
  48576.      Set the native language description 
  48577.      bool setNetCode(const string &NetCodeSetting) 
  48578.  
  48579.      Set the internet code for this country 
  48580.      bool erase() 
  48581.  
  48582.      Sets all the data members to empty 
  48583.  
  48584.   Get data members 
  48585.      bool getAll(mapString &FieldValues) 
  48586.  
  48587.      Return a mapString of all the data members of this topic. The key is the 
  48588.      variable name.  LCP: CountryAttribs 
  48589.      string getDesc() 
  48590.  
  48591.      Get the short description 
  48592.      string getDescLong() 
  48593.  
  48594.      Get the long description 
  48595.      string getDescNative() 
  48596.  
  48597.      Get the native language description 
  48598.      string getNetCode() 
  48599.  
  48600.      Get the internet code for this country 
  48601.  
  48602.  
  48603. ΓòÉΓòÉΓòÉ <hidden> ╨┐mapTable ΓòÉΓòÉΓòÉ
  48604.  
  48605.  
  48606. lyris_Country Class 
  48607.  
  48608.      class lyris_Country 
  48609.  
  48610.      For determining what countries exist, and what languages are spoken & 
  48611.      preferred in each country 
  48612.  
  48613.      Defined in: COUNTRY.H 
  48614.  
  48615.   Create a new country 
  48616.  
  48617.       bool createNew() 
  48618.  
  48619.      Creates a new country/language table row.  LCP: CountryCreate 
  48620.      bool updateDatabase() 
  48621.  
  48622.      Save the current country with the data members that have changed.  LCP: 
  48623.      CountryUpdate 
  48624.      bool VerifyFields() 
  48625.  
  48626.      Verify that all required fields are filled in. 
  48627.  
  48628.   Retrieve data from the database 
  48629.      bool fetchAllCountries(vecString &AllCountries) 
  48630.  
  48631.      Fetch a list of all countries.  LCP: CountryAll 
  48632.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48633.  
  48634.      Fetch a paired list of countries and their native language descriptions, 
  48635.      sorted by english description.  LCP: CountryEngNat 
  48636.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48637.  
  48638.      Fetch a paired list of native language country descriptions, and the 
  48639.      english name of the country. 
  48640.      bool retrieveFromNetCode() 
  48641.  
  48642.      Determine the country that uses the currently set NetCode.  Fills all the 
  48643.      other country attributes with values. LCP: CountryAttNetCode 
  48644.      bool retrieveFromDesc() 
  48645.  
  48646.      Determine the country that uses the currently set description.  Fills all 
  48647.      the other country attributes with values.  LCP: CountryAttribs 
  48648.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48649.  
  48650.      Determine the primary language of the current country.  "Desc" must be 
  48651.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48652.      CountryPrimLang 
  48653.      bool getAllLanguages(vecString &Languages) 
  48654.  
  48655.      Determine all the languages used by the current country.  "Desc" must be 
  48656.      already set.  The result is returned in priority order (highest priority 
  48657.      first) in vecString &Languages.  LCP: CountryLanguages 
  48658.      bool getLanguageList(vecString &Languages) 
  48659.  
  48660.      Get a list of all possible languages, in alphabetical order, returned in 
  48661.      vecString &Languages.  LCP: CountryLangList 
  48662.      bool getLanguageListEngNat(mapString &Languages) 
  48663.  
  48664.      Get a map of all possible languages, their native description in 
  48665.      alphabetical order by english description, returned in in vecString 
  48666.      &Languages.  LCP: CountryLangListEngNat 
  48667.  
  48668.   Delete a country 
  48669.      bool deleteFromDesc() 
  48670.  
  48671.      Delete the country that uses the currently set description.  LCP: 
  48672.      CountryDelete 
  48673.  
  48674.   Set data members 
  48675.      bool setAll(mapString &FieldValues) 
  48676.  
  48677.      Sets all the data members of a topic using the mapString which is passed 
  48678.      to it.  Only the fields present in the mapString are updated, the other 
  48679.      fields are untouched.  LCP: CountryUpdate 
  48680.      bool setDesc(const string &DescSetting) 
  48681.  
  48682.      Set the short description 
  48683.      bool setDescLong(const string &DescLongSetting) 
  48684.  
  48685.      Set the long description 
  48686.      bool setDescNative(const string &DescNativeSetting) 
  48687.  
  48688.      Set the native language description 
  48689.      bool setNetCode(const string &NetCodeSetting) 
  48690.  
  48691.      Set the internet code for this country 
  48692.      bool erase() 
  48693.  
  48694.      Sets all the data members to empty 
  48695.  
  48696.   Get data members 
  48697.      bool getAll(mapString &FieldValues) 
  48698.  
  48699.      Return a mapString of all the data members of this topic. The key is the 
  48700.      variable name.  LCP: CountryAttribs 
  48701.      string getDesc() 
  48702.  
  48703.      Get the short description 
  48704.      string getDescLong() 
  48705.  
  48706.      Get the long description 
  48707.      string getDescNative() 
  48708.  
  48709.      Get the native language description 
  48710.      string getNetCode() 
  48711.  
  48712.      Get the internet code for this country 
  48713.  
  48714.  
  48715. ΓòÉΓòÉΓòÉ <hidden> ΓûæmapTimeString ΓòÉΓòÉΓòÉ
  48716.  
  48717.  
  48718. lyris_Country Class 
  48719.  
  48720.      class lyris_Country 
  48721.  
  48722.      For determining what countries exist, and what languages are spoken & 
  48723.      preferred in each country 
  48724.  
  48725.      Defined in: COUNTRY.H 
  48726.  
  48727.   Create a new country 
  48728.  
  48729.       bool createNew() 
  48730.  
  48731.      Creates a new country/language table row.  LCP: CountryCreate 
  48732.      bool updateDatabase() 
  48733.  
  48734.      Save the current country with the data members that have changed.  LCP: 
  48735.      CountryUpdate 
  48736.      bool VerifyFields() 
  48737.  
  48738.      Verify that all required fields are filled in. 
  48739.  
  48740.   Retrieve data from the database 
  48741.      bool fetchAllCountries(vecString &AllCountries) 
  48742.  
  48743.      Fetch a list of all countries.  LCP: CountryAll 
  48744.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48745.  
  48746.      Fetch a paired list of countries and their native language descriptions, 
  48747.      sorted by english description.  LCP: CountryEngNat 
  48748.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48749.  
  48750.      Fetch a paired list of native language country descriptions, and the 
  48751.      english name of the country. 
  48752.      bool retrieveFromNetCode() 
  48753.  
  48754.      Determine the country that uses the currently set NetCode.  Fills all the 
  48755.      other country attributes with values. LCP: CountryAttNetCode 
  48756.      bool retrieveFromDesc() 
  48757.  
  48758.      Determine the country that uses the currently set description.  Fills all 
  48759.      the other country attributes with values.  LCP: CountryAttribs 
  48760.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48761.  
  48762.      Determine the primary language of the current country.  "Desc" must be 
  48763.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48764.      CountryPrimLang 
  48765.      bool getAllLanguages(vecString &Languages) 
  48766.  
  48767.      Determine all the languages used by the current country.  "Desc" must be 
  48768.      already set.  The result is returned in priority order (highest priority 
  48769.      first) in vecString &Languages.  LCP: CountryLanguages 
  48770.      bool getLanguageList(vecString &Languages) 
  48771.  
  48772.      Get a list of all possible languages, in alphabetical order, returned in 
  48773.      vecString &Languages.  LCP: CountryLangList 
  48774.      bool getLanguageListEngNat(mapString &Languages) 
  48775.  
  48776.      Get a map of all possible languages, their native description in 
  48777.      alphabetical order by english description, returned in in vecString 
  48778.      &Languages.  LCP: CountryLangListEngNat 
  48779.  
  48780.   Delete a country 
  48781.      bool deleteFromDesc() 
  48782.  
  48783.      Delete the country that uses the currently set description.  LCP: 
  48784.      CountryDelete 
  48785.  
  48786.   Set data members 
  48787.      bool setAll(mapString &FieldValues) 
  48788.  
  48789.      Sets all the data members of a topic using the mapString which is passed 
  48790.      to it.  Only the fields present in the mapString are updated, the other 
  48791.      fields are untouched.  LCP: CountryUpdate 
  48792.      bool setDesc(const string &DescSetting) 
  48793.  
  48794.      Set the short description 
  48795.      bool setDescLong(const string &DescLongSetting) 
  48796.  
  48797.      Set the long description 
  48798.      bool setDescNative(const string &DescNativeSetting) 
  48799.  
  48800.      Set the native language description 
  48801.      bool setNetCode(const string &NetCodeSetting) 
  48802.  
  48803.      Set the internet code for this country 
  48804.      bool erase() 
  48805.  
  48806.      Sets all the data members to empty 
  48807.  
  48808.   Get data members 
  48809.      bool getAll(mapString &FieldValues) 
  48810.  
  48811.      Return a mapString of all the data members of this topic. The key is the 
  48812.      variable name.  LCP: CountryAttribs 
  48813.      string getDesc() 
  48814.  
  48815.      Get the short description 
  48816.      string getDescLong() 
  48817.  
  48818.      Get the long description 
  48819.      string getDescNative() 
  48820.  
  48821.      Get the native language description 
  48822.      string getNetCode() 
  48823.  
  48824.      Get the internet code for this country 
  48825.  
  48826.  
  48827. ΓòÉΓòÉΓòÉ <hidden> ΓûÆmultimapString ΓòÉΓòÉΓòÉ
  48828.  
  48829.  
  48830. lyris_Country Class 
  48831.  
  48832.      class lyris_Country 
  48833.  
  48834.      For determining what countries exist, and what languages are spoken & 
  48835.      preferred in each country 
  48836.  
  48837.      Defined in: COUNTRY.H 
  48838.  
  48839.   Create a new country 
  48840.  
  48841.       bool createNew() 
  48842.  
  48843.      Creates a new country/language table row.  LCP: CountryCreate 
  48844.      bool updateDatabase() 
  48845.  
  48846.      Save the current country with the data members that have changed.  LCP: 
  48847.      CountryUpdate 
  48848.      bool VerifyFields() 
  48849.  
  48850.      Verify that all required fields are filled in. 
  48851.  
  48852.   Retrieve data from the database 
  48853.      bool fetchAllCountries(vecString &AllCountries) 
  48854.  
  48855.      Fetch a list of all countries.  LCP: CountryAll 
  48856.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48857.  
  48858.      Fetch a paired list of countries and their native language descriptions, 
  48859.      sorted by english description.  LCP: CountryEngNat 
  48860.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48861.  
  48862.      Fetch a paired list of native language country descriptions, and the 
  48863.      english name of the country. 
  48864.      bool retrieveFromNetCode() 
  48865.  
  48866.      Determine the country that uses the currently set NetCode.  Fills all the 
  48867.      other country attributes with values. LCP: CountryAttNetCode 
  48868.      bool retrieveFromDesc() 
  48869.  
  48870.      Determine the country that uses the currently set description.  Fills all 
  48871.      the other country attributes with values.  LCP: CountryAttribs 
  48872.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48873.  
  48874.      Determine the primary language of the current country.  "Desc" must be 
  48875.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48876.      CountryPrimLang 
  48877.      bool getAllLanguages(vecString &Languages) 
  48878.  
  48879.      Determine all the languages used by the current country.  "Desc" must be 
  48880.      already set.  The result is returned in priority order (highest priority 
  48881.      first) in vecString &Languages.  LCP: CountryLanguages 
  48882.      bool getLanguageList(vecString &Languages) 
  48883.  
  48884.      Get a list of all possible languages, in alphabetical order, returned in 
  48885.      vecString &Languages.  LCP: CountryLangList 
  48886.      bool getLanguageListEngNat(mapString &Languages) 
  48887.  
  48888.      Get a map of all possible languages, their native description in 
  48889.      alphabetical order by english description, returned in in vecString 
  48890.      &Languages.  LCP: CountryLangListEngNat 
  48891.  
  48892.   Delete a country 
  48893.      bool deleteFromDesc() 
  48894.  
  48895.      Delete the country that uses the currently set description.  LCP: 
  48896.      CountryDelete 
  48897.  
  48898.   Set data members 
  48899.      bool setAll(mapString &FieldValues) 
  48900.  
  48901.      Sets all the data members of a topic using the mapString which is passed 
  48902.      to it.  Only the fields present in the mapString are updated, the other 
  48903.      fields are untouched.  LCP: CountryUpdate 
  48904.      bool setDesc(const string &DescSetting) 
  48905.  
  48906.      Set the short description 
  48907.      bool setDescLong(const string &DescLongSetting) 
  48908.  
  48909.      Set the long description 
  48910.      bool setDescNative(const string &DescNativeSetting) 
  48911.  
  48912.      Set the native language description 
  48913.      bool setNetCode(const string &NetCodeSetting) 
  48914.  
  48915.      Set the internet code for this country 
  48916.      bool erase() 
  48917.  
  48918.      Sets all the data members to empty 
  48919.  
  48920.   Get data members 
  48921.      bool getAll(mapString &FieldValues) 
  48922.  
  48923.      Return a mapString of all the data members of this topic. The key is the 
  48924.      variable name.  LCP: CountryAttribs 
  48925.      string getDesc() 
  48926.  
  48927.      Get the short description 
  48928.      string getDescLong() 
  48929.  
  48930.      Get the long description 
  48931.      string getDescNative() 
  48932.  
  48933.      Get the native language description 
  48934.      string getNetCode() 
  48935.  
  48936.      Get the internet code for this country 
  48937.  
  48938.  
  48939. ΓòÉΓòÉΓòÉ <hidden> ΓûôstringConst ΓòÉΓòÉΓòÉ
  48940.  
  48941.  
  48942. lyris_Country Class 
  48943.  
  48944.      class lyris_Country 
  48945.  
  48946.      For determining what countries exist, and what languages are spoken & 
  48947.      preferred in each country 
  48948.  
  48949.      Defined in: COUNTRY.H 
  48950.  
  48951.   Create a new country 
  48952.  
  48953.       bool createNew() 
  48954.  
  48955.      Creates a new country/language table row.  LCP: CountryCreate 
  48956.      bool updateDatabase() 
  48957.  
  48958.      Save the current country with the data members that have changed.  LCP: 
  48959.      CountryUpdate 
  48960.      bool VerifyFields() 
  48961.  
  48962.      Verify that all required fields are filled in. 
  48963.  
  48964.   Retrieve data from the database 
  48965.      bool fetchAllCountries(vecString &AllCountries) 
  48966.  
  48967.      Fetch a list of all countries.  LCP: CountryAll 
  48968.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  48969.  
  48970.      Fetch a paired list of countries and their native language descriptions, 
  48971.      sorted by english description.  LCP: CountryEngNat 
  48972.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  48973.  
  48974.      Fetch a paired list of native language country descriptions, and the 
  48975.      english name of the country. 
  48976.      bool retrieveFromNetCode() 
  48977.  
  48978.      Determine the country that uses the currently set NetCode.  Fills all the 
  48979.      other country attributes with values. LCP: CountryAttNetCode 
  48980.      bool retrieveFromDesc() 
  48981.  
  48982.      Determine the country that uses the currently set description.  Fills all 
  48983.      the other country attributes with values.  LCP: CountryAttribs 
  48984.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  48985.  
  48986.      Determine the primary language of the current country.  "Desc" must be 
  48987.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  48988.      CountryPrimLang 
  48989.      bool getAllLanguages(vecString &Languages) 
  48990.  
  48991.      Determine all the languages used by the current country.  "Desc" must be 
  48992.      already set.  The result is returned in priority order (highest priority 
  48993.      first) in vecString &Languages.  LCP: CountryLanguages 
  48994.      bool getLanguageList(vecString &Languages) 
  48995.  
  48996.      Get a list of all possible languages, in alphabetical order, returned in 
  48997.      vecString &Languages.  LCP: CountryLangList 
  48998.      bool getLanguageListEngNat(mapString &Languages) 
  48999.  
  49000.      Get a map of all possible languages, their native description in 
  49001.      alphabetical order by english description, returned in in vecString 
  49002.      &Languages.  LCP: CountryLangListEngNat 
  49003.  
  49004.   Delete a country 
  49005.      bool deleteFromDesc() 
  49006.  
  49007.      Delete the country that uses the currently set description.  LCP: 
  49008.      CountryDelete 
  49009.  
  49010.   Set data members 
  49011.      bool setAll(mapString &FieldValues) 
  49012.  
  49013.      Sets all the data members of a topic using the mapString which is passed 
  49014.      to it.  Only the fields present in the mapString are updated, the other 
  49015.      fields are untouched.  LCP: CountryUpdate 
  49016.      bool setDesc(const string &DescSetting) 
  49017.  
  49018.      Set the short description 
  49019.      bool setDescLong(const string &DescLongSetting) 
  49020.  
  49021.      Set the long description 
  49022.      bool setDescNative(const string &DescNativeSetting) 
  49023.  
  49024.      Set the native language description 
  49025.      bool setNetCode(const string &NetCodeSetting) 
  49026.  
  49027.      Set the internet code for this country 
  49028.      bool erase() 
  49029.  
  49030.      Sets all the data members to empty 
  49031.  
  49032.   Get data members 
  49033.      bool getAll(mapString &FieldValues) 
  49034.  
  49035.      Return a mapString of all the data members of this topic. The key is the 
  49036.      variable name.  LCP: CountryAttribs 
  49037.      string getDesc() 
  49038.  
  49039.      Get the short description 
  49040.      string getDescLong() 
  49041.  
  49042.      Get the long description 
  49043.      string getDescNative() 
  49044.  
  49045.      Get the native language description 
  49046.      string getNetCode() 
  49047.  
  49048.      Get the internet code for this country 
  49049.  
  49050.  
  49051. ΓòÉΓòÉΓòÉ <hidden> ΓöévecString ΓòÉΓòÉΓòÉ
  49052.  
  49053.  
  49054. lyris_Country Class 
  49055.  
  49056.      class lyris_Country 
  49057.  
  49058.      For determining what countries exist, and what languages are spoken & 
  49059.      preferred in each country 
  49060.  
  49061.      Defined in: COUNTRY.H 
  49062.  
  49063.   Create a new country 
  49064.  
  49065.       bool createNew() 
  49066.  
  49067.      Creates a new country/language table row.  LCP: CountryCreate 
  49068.      bool updateDatabase() 
  49069.  
  49070.      Save the current country with the data members that have changed.  LCP: 
  49071.      CountryUpdate 
  49072.      bool VerifyFields() 
  49073.  
  49074.      Verify that all required fields are filled in. 
  49075.  
  49076.   Retrieve data from the database 
  49077.      bool fetchAllCountries(vecString &AllCountries) 
  49078.  
  49079.      Fetch a list of all countries.  LCP: CountryAll 
  49080.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49081.  
  49082.      Fetch a paired list of countries and their native language descriptions, 
  49083.      sorted by english description.  LCP: CountryEngNat 
  49084.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49085.  
  49086.      Fetch a paired list of native language country descriptions, and the 
  49087.      english name of the country. 
  49088.      bool retrieveFromNetCode() 
  49089.  
  49090.      Determine the country that uses the currently set NetCode.  Fills all the 
  49091.      other country attributes with values. LCP: CountryAttNetCode 
  49092.      bool retrieveFromDesc() 
  49093.  
  49094.      Determine the country that uses the currently set description.  Fills all 
  49095.      the other country attributes with values.  LCP: CountryAttribs 
  49096.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49097.  
  49098.      Determine the primary language of the current country.  "Desc" must be 
  49099.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49100.      CountryPrimLang 
  49101.      bool getAllLanguages(vecString &Languages) 
  49102.  
  49103.      Determine all the languages used by the current country.  "Desc" must be 
  49104.      already set.  The result is returned in priority order (highest priority 
  49105.      first) in vecString &Languages.  LCP: CountryLanguages 
  49106.      bool getLanguageList(vecString &Languages) 
  49107.  
  49108.      Get a list of all possible languages, in alphabetical order, returned in 
  49109.      vecString &Languages.  LCP: CountryLangList 
  49110.      bool getLanguageListEngNat(mapString &Languages) 
  49111.  
  49112.      Get a map of all possible languages, their native description in 
  49113.      alphabetical order by english description, returned in in vecString 
  49114.      &Languages.  LCP: CountryLangListEngNat 
  49115.  
  49116.   Delete a country 
  49117.      bool deleteFromDesc() 
  49118.  
  49119.      Delete the country that uses the currently set description.  LCP: 
  49120.      CountryDelete 
  49121.  
  49122.   Set data members 
  49123.      bool setAll(mapString &FieldValues) 
  49124.  
  49125.      Sets all the data members of a topic using the mapString which is passed 
  49126.      to it.  Only the fields present in the mapString are updated, the other 
  49127.      fields are untouched.  LCP: CountryUpdate 
  49128.      bool setDesc(const string &DescSetting) 
  49129.  
  49130.      Set the short description 
  49131.      bool setDescLong(const string &DescLongSetting) 
  49132.  
  49133.      Set the long description 
  49134.      bool setDescNative(const string &DescNativeSetting) 
  49135.  
  49136.      Set the native language description 
  49137.      bool setNetCode(const string &NetCodeSetting) 
  49138.  
  49139.      Set the internet code for this country 
  49140.      bool erase() 
  49141.  
  49142.      Sets all the data members to empty 
  49143.  
  49144.   Get data members 
  49145.      bool getAll(mapString &FieldValues) 
  49146.  
  49147.      Return a mapString of all the data members of this topic. The key is the 
  49148.      variable name.  LCP: CountryAttribs 
  49149.      string getDesc() 
  49150.  
  49151.      Get the short description 
  49152.      string getDescLong() 
  49153.  
  49154.      Get the long description 
  49155.      string getDescNative() 
  49156.  
  49157.      Get the native language description 
  49158.      string getNetCode() 
  49159.  
  49160.      Get the internet code for this country 
  49161.  
  49162.  
  49163. ΓòÉΓòÉΓòÉ <hidden> ΓöñsetString ΓòÉΓòÉΓòÉ
  49164.  
  49165.  
  49166. lyris_Country Class 
  49167.  
  49168.      class lyris_Country 
  49169.  
  49170.      For determining what countries exist, and what languages are spoken & 
  49171.      preferred in each country 
  49172.  
  49173.      Defined in: COUNTRY.H 
  49174.  
  49175.   Create a new country 
  49176.  
  49177.       bool createNew() 
  49178.  
  49179.      Creates a new country/language table row.  LCP: CountryCreate 
  49180.      bool updateDatabase() 
  49181.  
  49182.      Save the current country with the data members that have changed.  LCP: 
  49183.      CountryUpdate 
  49184.      bool VerifyFields() 
  49185.  
  49186.      Verify that all required fields are filled in. 
  49187.  
  49188.   Retrieve data from the database 
  49189.      bool fetchAllCountries(vecString &AllCountries) 
  49190.  
  49191.      Fetch a list of all countries.  LCP: CountryAll 
  49192.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49193.  
  49194.      Fetch a paired list of countries and their native language descriptions, 
  49195.      sorted by english description.  LCP: CountryEngNat 
  49196.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49197.  
  49198.      Fetch a paired list of native language country descriptions, and the 
  49199.      english name of the country. 
  49200.      bool retrieveFromNetCode() 
  49201.  
  49202.      Determine the country that uses the currently set NetCode.  Fills all the 
  49203.      other country attributes with values. LCP: CountryAttNetCode 
  49204.      bool retrieveFromDesc() 
  49205.  
  49206.      Determine the country that uses the currently set description.  Fills all 
  49207.      the other country attributes with values.  LCP: CountryAttribs 
  49208.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49209.  
  49210.      Determine the primary language of the current country.  "Desc" must be 
  49211.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49212.      CountryPrimLang 
  49213.      bool getAllLanguages(vecString &Languages) 
  49214.  
  49215.      Determine all the languages used by the current country.  "Desc" must be 
  49216.      already set.  The result is returned in priority order (highest priority 
  49217.      first) in vecString &Languages.  LCP: CountryLanguages 
  49218.      bool getLanguageList(vecString &Languages) 
  49219.  
  49220.      Get a list of all possible languages, in alphabetical order, returned in 
  49221.      vecString &Languages.  LCP: CountryLangList 
  49222.      bool getLanguageListEngNat(mapString &Languages) 
  49223.  
  49224.      Get a map of all possible languages, their native description in 
  49225.      alphabetical order by english description, returned in in vecString 
  49226.      &Languages.  LCP: CountryLangListEngNat 
  49227.  
  49228.   Delete a country 
  49229.      bool deleteFromDesc() 
  49230.  
  49231.      Delete the country that uses the currently set description.  LCP: 
  49232.      CountryDelete 
  49233.  
  49234.   Set data members 
  49235.      bool setAll(mapString &FieldValues) 
  49236.  
  49237.      Sets all the data members of a topic using the mapString which is passed 
  49238.      to it.  Only the fields present in the mapString are updated, the other 
  49239.      fields are untouched.  LCP: CountryUpdate 
  49240.      bool setDesc(const string &DescSetting) 
  49241.  
  49242.      Set the short description 
  49243.      bool setDescLong(const string &DescLongSetting) 
  49244.  
  49245.      Set the long description 
  49246.      bool setDescNative(const string &DescNativeSetting) 
  49247.  
  49248.      Set the native language description 
  49249.      bool setNetCode(const string &NetCodeSetting) 
  49250.  
  49251.      Set the internet code for this country 
  49252.      bool erase() 
  49253.  
  49254.      Sets all the data members to empty 
  49255.  
  49256.   Get data members 
  49257.      bool getAll(mapString &FieldValues) 
  49258.  
  49259.      Return a mapString of all the data members of this topic. The key is the 
  49260.      variable name.  LCP: CountryAttribs 
  49261.      string getDesc() 
  49262.  
  49263.      Get the short description 
  49264.      string getDescLong() 
  49265.  
  49266.      Get the long description 
  49267.      string getDescNative() 
  49268.  
  49269.      Get the native language description 
  49270.      string getNetCode() 
  49271.  
  49272.      Get the internet code for this country 
  49273.  
  49274.  
  49275. ΓòÉΓòÉΓòÉ <hidden> ΓòíMsgInfoMap ΓòÉΓòÉΓòÉ
  49276.  
  49277.  
  49278. lyris_Country Class 
  49279.  
  49280.      class lyris_Country 
  49281.  
  49282.      For determining what countries exist, and what languages are spoken & 
  49283.      preferred in each country 
  49284.  
  49285.      Defined in: COUNTRY.H 
  49286.  
  49287.   Create a new country 
  49288.  
  49289.       bool createNew() 
  49290.  
  49291.      Creates a new country/language table row.  LCP: CountryCreate 
  49292.      bool updateDatabase() 
  49293.  
  49294.      Save the current country with the data members that have changed.  LCP: 
  49295.      CountryUpdate 
  49296.      bool VerifyFields() 
  49297.  
  49298.      Verify that all required fields are filled in. 
  49299.  
  49300.   Retrieve data from the database 
  49301.      bool fetchAllCountries(vecString &AllCountries) 
  49302.  
  49303.      Fetch a list of all countries.  LCP: CountryAll 
  49304.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49305.  
  49306.      Fetch a paired list of countries and their native language descriptions, 
  49307.      sorted by english description.  LCP: CountryEngNat 
  49308.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49309.  
  49310.      Fetch a paired list of native language country descriptions, and the 
  49311.      english name of the country. 
  49312.      bool retrieveFromNetCode() 
  49313.  
  49314.      Determine the country that uses the currently set NetCode.  Fills all the 
  49315.      other country attributes with values. LCP: CountryAttNetCode 
  49316.      bool retrieveFromDesc() 
  49317.  
  49318.      Determine the country that uses the currently set description.  Fills all 
  49319.      the other country attributes with values.  LCP: CountryAttribs 
  49320.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49321.  
  49322.      Determine the primary language of the current country.  "Desc" must be 
  49323.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49324.      CountryPrimLang 
  49325.      bool getAllLanguages(vecString &Languages) 
  49326.  
  49327.      Determine all the languages used by the current country.  "Desc" must be 
  49328.      already set.  The result is returned in priority order (highest priority 
  49329.      first) in vecString &Languages.  LCP: CountryLanguages 
  49330.      bool getLanguageList(vecString &Languages) 
  49331.  
  49332.      Get a list of all possible languages, in alphabetical order, returned in 
  49333.      vecString &Languages.  LCP: CountryLangList 
  49334.      bool getLanguageListEngNat(mapString &Languages) 
  49335.  
  49336.      Get a map of all possible languages, their native description in 
  49337.      alphabetical order by english description, returned in in vecString 
  49338.      &Languages.  LCP: CountryLangListEngNat 
  49339.  
  49340.   Delete a country 
  49341.      bool deleteFromDesc() 
  49342.  
  49343.      Delete the country that uses the currently set description.  LCP: 
  49344.      CountryDelete 
  49345.  
  49346.   Set data members 
  49347.      bool setAll(mapString &FieldValues) 
  49348.  
  49349.      Sets all the data members of a topic using the mapString which is passed 
  49350.      to it.  Only the fields present in the mapString are updated, the other 
  49351.      fields are untouched.  LCP: CountryUpdate 
  49352.      bool setDesc(const string &DescSetting) 
  49353.  
  49354.      Set the short description 
  49355.      bool setDescLong(const string &DescLongSetting) 
  49356.  
  49357.      Set the long description 
  49358.      bool setDescNative(const string &DescNativeSetting) 
  49359.  
  49360.      Set the native language description 
  49361.      bool setNetCode(const string &NetCodeSetting) 
  49362.  
  49363.      Set the internet code for this country 
  49364.      bool erase() 
  49365.  
  49366.      Sets all the data members to empty 
  49367.  
  49368.   Get data members 
  49369.      bool getAll(mapString &FieldValues) 
  49370.  
  49371.      Return a mapString of all the data members of this topic. The key is the 
  49372.      variable name.  LCP: CountryAttribs 
  49373.      string getDesc() 
  49374.  
  49375.      Get the short description 
  49376.      string getDescLong() 
  49377.  
  49378.      Get the long description 
  49379.      string getDescNative() 
  49380.  
  49381.      Get the native language description 
  49382.      string getNetCode() 
  49383.  
  49384.      Get the internet code for this country 
  49385.  
  49386.  
  49387. ΓòÉΓòÉΓòÉ <hidden> ΓòómapTableFields ΓòÉΓòÉΓòÉ
  49388.  
  49389.  
  49390. lyris_Country Class 
  49391.  
  49392.      class lyris_Country 
  49393.  
  49394.      For determining what countries exist, and what languages are spoken & 
  49395.      preferred in each country 
  49396.  
  49397.      Defined in: COUNTRY.H 
  49398.  
  49399.   Create a new country 
  49400.  
  49401.       bool createNew() 
  49402.  
  49403.      Creates a new country/language table row.  LCP: CountryCreate 
  49404.      bool updateDatabase() 
  49405.  
  49406.      Save the current country with the data members that have changed.  LCP: 
  49407.      CountryUpdate 
  49408.      bool VerifyFields() 
  49409.  
  49410.      Verify that all required fields are filled in. 
  49411.  
  49412.   Retrieve data from the database 
  49413.      bool fetchAllCountries(vecString &AllCountries) 
  49414.  
  49415.      Fetch a list of all countries.  LCP: CountryAll 
  49416.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49417.  
  49418.      Fetch a paired list of countries and their native language descriptions, 
  49419.      sorted by english description.  LCP: CountryEngNat 
  49420.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49421.  
  49422.      Fetch a paired list of native language country descriptions, and the 
  49423.      english name of the country. 
  49424.      bool retrieveFromNetCode() 
  49425.  
  49426.      Determine the country that uses the currently set NetCode.  Fills all the 
  49427.      other country attributes with values. LCP: CountryAttNetCode 
  49428.      bool retrieveFromDesc() 
  49429.  
  49430.      Determine the country that uses the currently set description.  Fills all 
  49431.      the other country attributes with values.  LCP: CountryAttribs 
  49432.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49433.  
  49434.      Determine the primary language of the current country.  "Desc" must be 
  49435.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49436.      CountryPrimLang 
  49437.      bool getAllLanguages(vecString &Languages) 
  49438.  
  49439.      Determine all the languages used by the current country.  "Desc" must be 
  49440.      already set.  The result is returned in priority order (highest priority 
  49441.      first) in vecString &Languages.  LCP: CountryLanguages 
  49442.      bool getLanguageList(vecString &Languages) 
  49443.  
  49444.      Get a list of all possible languages, in alphabetical order, returned in 
  49445.      vecString &Languages.  LCP: CountryLangList 
  49446.      bool getLanguageListEngNat(mapString &Languages) 
  49447.  
  49448.      Get a map of all possible languages, their native description in 
  49449.      alphabetical order by english description, returned in in vecString 
  49450.      &Languages.  LCP: CountryLangListEngNat 
  49451.  
  49452.   Delete a country 
  49453.      bool deleteFromDesc() 
  49454.  
  49455.      Delete the country that uses the currently set description.  LCP: 
  49456.      CountryDelete 
  49457.  
  49458.   Set data members 
  49459.      bool setAll(mapString &FieldValues) 
  49460.  
  49461.      Sets all the data members of a topic using the mapString which is passed 
  49462.      to it.  Only the fields present in the mapString are updated, the other 
  49463.      fields are untouched.  LCP: CountryUpdate 
  49464.      bool setDesc(const string &DescSetting) 
  49465.  
  49466.      Set the short description 
  49467.      bool setDescLong(const string &DescLongSetting) 
  49468.  
  49469.      Set the long description 
  49470.      bool setDescNative(const string &DescNativeSetting) 
  49471.  
  49472.      Set the native language description 
  49473.      bool setNetCode(const string &NetCodeSetting) 
  49474.  
  49475.      Set the internet code for this country 
  49476.      bool erase() 
  49477.  
  49478.      Sets all the data members to empty 
  49479.  
  49480.   Get data members 
  49481.      bool getAll(mapString &FieldValues) 
  49482.  
  49483.      Return a mapString of all the data members of this topic. The key is the 
  49484.      variable name.  LCP: CountryAttribs 
  49485.      string getDesc() 
  49486.  
  49487.      Get the short description 
  49488.      string getDescLong() 
  49489.  
  49490.      Get the long description 
  49491.      string getDescNative() 
  49492.  
  49493.      Get the native language description 
  49494.      string getNetCode() 
  49495.  
  49496.      Get the internet code for this country 
  49497.  
  49498.  
  49499. ΓòÉΓòÉΓòÉ <hidden> ΓòûmapStringLong ΓòÉΓòÉΓòÉ
  49500.  
  49501.  
  49502. lyris_Country Class 
  49503.  
  49504.      class lyris_Country 
  49505.  
  49506.      For determining what countries exist, and what languages are spoken & 
  49507.      preferred in each country 
  49508.  
  49509.      Defined in: COUNTRY.H 
  49510.  
  49511.   Create a new country 
  49512.  
  49513.       bool createNew() 
  49514.  
  49515.      Creates a new country/language table row.  LCP: CountryCreate 
  49516.      bool updateDatabase() 
  49517.  
  49518.      Save the current country with the data members that have changed.  LCP: 
  49519.      CountryUpdate 
  49520.      bool VerifyFields() 
  49521.  
  49522.      Verify that all required fields are filled in. 
  49523.  
  49524.   Retrieve data from the database 
  49525.      bool fetchAllCountries(vecString &AllCountries) 
  49526.  
  49527.      Fetch a list of all countries.  LCP: CountryAll 
  49528.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49529.  
  49530.      Fetch a paired list of countries and their native language descriptions, 
  49531.      sorted by english description.  LCP: CountryEngNat 
  49532.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49533.  
  49534.      Fetch a paired list of native language country descriptions, and the 
  49535.      english name of the country. 
  49536.      bool retrieveFromNetCode() 
  49537.  
  49538.      Determine the country that uses the currently set NetCode.  Fills all the 
  49539.      other country attributes with values. LCP: CountryAttNetCode 
  49540.      bool retrieveFromDesc() 
  49541.  
  49542.      Determine the country that uses the currently set description.  Fills all 
  49543.      the other country attributes with values.  LCP: CountryAttribs 
  49544.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49545.  
  49546.      Determine the primary language of the current country.  "Desc" must be 
  49547.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49548.      CountryPrimLang 
  49549.      bool getAllLanguages(vecString &Languages) 
  49550.  
  49551.      Determine all the languages used by the current country.  "Desc" must be 
  49552.      already set.  The result is returned in priority order (highest priority 
  49553.      first) in vecString &Languages.  LCP: CountryLanguages 
  49554.      bool getLanguageList(vecString &Languages) 
  49555.  
  49556.      Get a list of all possible languages, in alphabetical order, returned in 
  49557.      vecString &Languages.  LCP: CountryLangList 
  49558.      bool getLanguageListEngNat(mapString &Languages) 
  49559.  
  49560.      Get a map of all possible languages, their native description in 
  49561.      alphabetical order by english description, returned in in vecString 
  49562.      &Languages.  LCP: CountryLangListEngNat 
  49563.  
  49564.   Delete a country 
  49565.      bool deleteFromDesc() 
  49566.  
  49567.      Delete the country that uses the currently set description.  LCP: 
  49568.      CountryDelete 
  49569.  
  49570.   Set data members 
  49571.      bool setAll(mapString &FieldValues) 
  49572.  
  49573.      Sets all the data members of a topic using the mapString which is passed 
  49574.      to it.  Only the fields present in the mapString are updated, the other 
  49575.      fields are untouched.  LCP: CountryUpdate 
  49576.      bool setDesc(const string &DescSetting) 
  49577.  
  49578.      Set the short description 
  49579.      bool setDescLong(const string &DescLongSetting) 
  49580.  
  49581.      Set the long description 
  49582.      bool setDescNative(const string &DescNativeSetting) 
  49583.  
  49584.      Set the native language description 
  49585.      bool setNetCode(const string &NetCodeSetting) 
  49586.  
  49587.      Set the internet code for this country 
  49588.      bool erase() 
  49589.  
  49590.      Sets all the data members to empty 
  49591.  
  49592.   Get data members 
  49593.      bool getAll(mapString &FieldValues) 
  49594.  
  49595.      Return a mapString of all the data members of this topic. The key is the 
  49596.      variable name.  LCP: CountryAttribs 
  49597.      string getDesc() 
  49598.  
  49599.      Get the short description 
  49600.      string getDescLong() 
  49601.  
  49602.      Get the long description 
  49603.      string getDescNative() 
  49604.  
  49605.      Get the native language description 
  49606.      string getNetCode() 
  49607.  
  49608.      Get the internet code for this country 
  49609.  
  49610.  
  49611. ΓòÉΓòÉΓòÉ <hidden> ΓòòmapString ΓòÉΓòÉΓòÉ
  49612.  
  49613.  
  49614. lyris_Country Class 
  49615.  
  49616.      class lyris_Country 
  49617.  
  49618.      For determining what countries exist, and what languages are spoken & 
  49619.      preferred in each country 
  49620.  
  49621.      Defined in: COUNTRY.H 
  49622.  
  49623.   Create a new country 
  49624.  
  49625.       bool createNew() 
  49626.  
  49627.      Creates a new country/language table row.  LCP: CountryCreate 
  49628.      bool updateDatabase() 
  49629.  
  49630.      Save the current country with the data members that have changed.  LCP: 
  49631.      CountryUpdate 
  49632.      bool VerifyFields() 
  49633.  
  49634.      Verify that all required fields are filled in. 
  49635.  
  49636.   Retrieve data from the database 
  49637.      bool fetchAllCountries(vecString &AllCountries) 
  49638.  
  49639.      Fetch a list of all countries.  LCP: CountryAll 
  49640.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49641.  
  49642.      Fetch a paired list of countries and their native language descriptions, 
  49643.      sorted by english description.  LCP: CountryEngNat 
  49644.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49645.  
  49646.      Fetch a paired list of native language country descriptions, and the 
  49647.      english name of the country. 
  49648.      bool retrieveFromNetCode() 
  49649.  
  49650.      Determine the country that uses the currently set NetCode.  Fills all the 
  49651.      other country attributes with values. LCP: CountryAttNetCode 
  49652.      bool retrieveFromDesc() 
  49653.  
  49654.      Determine the country that uses the currently set description.  Fills all 
  49655.      the other country attributes with values.  LCP: CountryAttribs 
  49656.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49657.  
  49658.      Determine the primary language of the current country.  "Desc" must be 
  49659.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49660.      CountryPrimLang 
  49661.      bool getAllLanguages(vecString &Languages) 
  49662.  
  49663.      Determine all the languages used by the current country.  "Desc" must be 
  49664.      already set.  The result is returned in priority order (highest priority 
  49665.      first) in vecString &Languages.  LCP: CountryLanguages 
  49666.      bool getLanguageList(vecString &Languages) 
  49667.  
  49668.      Get a list of all possible languages, in alphabetical order, returned in 
  49669.      vecString &Languages.  LCP: CountryLangList 
  49670.      bool getLanguageListEngNat(mapString &Languages) 
  49671.  
  49672.      Get a map of all possible languages, their native description in 
  49673.      alphabetical order by english description, returned in in vecString 
  49674.      &Languages.  LCP: CountryLangListEngNat 
  49675.  
  49676.   Delete a country 
  49677.      bool deleteFromDesc() 
  49678.  
  49679.      Delete the country that uses the currently set description.  LCP: 
  49680.      CountryDelete 
  49681.  
  49682.   Set data members 
  49683.      bool setAll(mapString &FieldValues) 
  49684.  
  49685.      Sets all the data members of a topic using the mapString which is passed 
  49686.      to it.  Only the fields present in the mapString are updated, the other 
  49687.      fields are untouched.  LCP: CountryUpdate 
  49688.      bool setDesc(const string &DescSetting) 
  49689.  
  49690.      Set the short description 
  49691.      bool setDescLong(const string &DescLongSetting) 
  49692.  
  49693.      Set the long description 
  49694.      bool setDescNative(const string &DescNativeSetting) 
  49695.  
  49696.      Set the native language description 
  49697.      bool setNetCode(const string &NetCodeSetting) 
  49698.  
  49699.      Set the internet code for this country 
  49700.      bool erase() 
  49701.  
  49702.      Sets all the data members to empty 
  49703.  
  49704.   Get data members 
  49705.      bool getAll(mapString &FieldValues) 
  49706.  
  49707.      Return a mapString of all the data members of this topic. The key is the 
  49708.      variable name.  LCP: CountryAttribs 
  49709.      string getDesc() 
  49710.  
  49711.      Get the short description 
  49712.      string getDescLong() 
  49713.  
  49714.      Get the long description 
  49715.      string getDescNative() 
  49716.  
  49717.      Get the native language description 
  49718.      string getNetCode() 
  49719.  
  49720.      Get the internet code for this country 
  49721.  
  49722.  
  49723. ΓòÉΓòÉΓòÉ <hidden> ΓòúmapLongMap ΓòÉΓòÉΓòÉ
  49724.  
  49725.  
  49726. lyris_Country Class 
  49727.  
  49728.      class lyris_Country 
  49729.  
  49730.      For determining what countries exist, and what languages are spoken & 
  49731.      preferred in each country 
  49732.  
  49733.      Defined in: COUNTRY.H 
  49734.  
  49735.   Create a new country 
  49736.  
  49737.       bool createNew() 
  49738.  
  49739.      Creates a new country/language table row.  LCP: CountryCreate 
  49740.      bool updateDatabase() 
  49741.  
  49742.      Save the current country with the data members that have changed.  LCP: 
  49743.      CountryUpdate 
  49744.      bool VerifyFields() 
  49745.  
  49746.      Verify that all required fields are filled in. 
  49747.  
  49748.   Retrieve data from the database 
  49749.      bool fetchAllCountries(vecString &AllCountries) 
  49750.  
  49751.      Fetch a list of all countries.  LCP: CountryAll 
  49752.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49753.  
  49754.      Fetch a paired list of countries and their native language descriptions, 
  49755.      sorted by english description.  LCP: CountryEngNat 
  49756.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49757.  
  49758.      Fetch a paired list of native language country descriptions, and the 
  49759.      english name of the country. 
  49760.      bool retrieveFromNetCode() 
  49761.  
  49762.      Determine the country that uses the currently set NetCode.  Fills all the 
  49763.      other country attributes with values. LCP: CountryAttNetCode 
  49764.      bool retrieveFromDesc() 
  49765.  
  49766.      Determine the country that uses the currently set description.  Fills all 
  49767.      the other country attributes with values.  LCP: CountryAttribs 
  49768.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49769.  
  49770.      Determine the primary language of the current country.  "Desc" must be 
  49771.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49772.      CountryPrimLang 
  49773.      bool getAllLanguages(vecString &Languages) 
  49774.  
  49775.      Determine all the languages used by the current country.  "Desc" must be 
  49776.      already set.  The result is returned in priority order (highest priority 
  49777.      first) in vecString &Languages.  LCP: CountryLanguages 
  49778.      bool getLanguageList(vecString &Languages) 
  49779.  
  49780.      Get a list of all possible languages, in alphabetical order, returned in 
  49781.      vecString &Languages.  LCP: CountryLangList 
  49782.      bool getLanguageListEngNat(mapString &Languages) 
  49783.  
  49784.      Get a map of all possible languages, their native description in 
  49785.      alphabetical order by english description, returned in in vecString 
  49786.      &Languages.  LCP: CountryLangListEngNat 
  49787.  
  49788.   Delete a country 
  49789.      bool deleteFromDesc() 
  49790.  
  49791.      Delete the country that uses the currently set description.  LCP: 
  49792.      CountryDelete 
  49793.  
  49794.   Set data members 
  49795.      bool setAll(mapString &FieldValues) 
  49796.  
  49797.      Sets all the data members of a topic using the mapString which is passed 
  49798.      to it.  Only the fields present in the mapString are updated, the other 
  49799.      fields are untouched.  LCP: CountryUpdate 
  49800.      bool setDesc(const string &DescSetting) 
  49801.  
  49802.      Set the short description 
  49803.      bool setDescLong(const string &DescLongSetting) 
  49804.  
  49805.      Set the long description 
  49806.      bool setDescNative(const string &DescNativeSetting) 
  49807.  
  49808.      Set the native language description 
  49809.      bool setNetCode(const string &NetCodeSetting) 
  49810.  
  49811.      Set the internet code for this country 
  49812.      bool erase() 
  49813.  
  49814.      Sets all the data members to empty 
  49815.  
  49816.   Get data members 
  49817.      bool getAll(mapString &FieldValues) 
  49818.  
  49819.      Return a mapString of all the data members of this topic. The key is the 
  49820.      variable name.  LCP: CountryAttribs 
  49821.      string getDesc() 
  49822.  
  49823.      Get the short description 
  49824.      string getDescLong() 
  49825.  
  49826.      Get the long description 
  49827.      string getDescNative() 
  49828.  
  49829.      Get the native language description 
  49830.      string getNetCode() 
  49831.  
  49832.      Get the internet code for this country 
  49833.  
  49834.  
  49835. ΓòÉΓòÉΓòÉ <hidden> ΓòæmapDirty ΓòÉΓòÉΓòÉ
  49836.  
  49837.  
  49838. lyris_Country Class 
  49839.  
  49840.      class lyris_Country 
  49841.  
  49842.      For determining what countries exist, and what languages are spoken & 
  49843.      preferred in each country 
  49844.  
  49845.      Defined in: COUNTRY.H 
  49846.  
  49847.   Create a new country 
  49848.  
  49849.       bool createNew() 
  49850.  
  49851.      Creates a new country/language table row.  LCP: CountryCreate 
  49852.      bool updateDatabase() 
  49853.  
  49854.      Save the current country with the data members that have changed.  LCP: 
  49855.      CountryUpdate 
  49856.      bool VerifyFields() 
  49857.  
  49858.      Verify that all required fields are filled in. 
  49859.  
  49860.   Retrieve data from the database 
  49861.      bool fetchAllCountries(vecString &AllCountries) 
  49862.  
  49863.      Fetch a list of all countries.  LCP: CountryAll 
  49864.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49865.  
  49866.      Fetch a paired list of countries and their native language descriptions, 
  49867.      sorted by english description.  LCP: CountryEngNat 
  49868.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49869.  
  49870.      Fetch a paired list of native language country descriptions, and the 
  49871.      english name of the country. 
  49872.      bool retrieveFromNetCode() 
  49873.  
  49874.      Determine the country that uses the currently set NetCode.  Fills all the 
  49875.      other country attributes with values. LCP: CountryAttNetCode 
  49876.      bool retrieveFromDesc() 
  49877.  
  49878.      Determine the country that uses the currently set description.  Fills all 
  49879.      the other country attributes with values.  LCP: CountryAttribs 
  49880.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49881.  
  49882.      Determine the primary language of the current country.  "Desc" must be 
  49883.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49884.      CountryPrimLang 
  49885.      bool getAllLanguages(vecString &Languages) 
  49886.  
  49887.      Determine all the languages used by the current country.  "Desc" must be 
  49888.      already set.  The result is returned in priority order (highest priority 
  49889.      first) in vecString &Languages.  LCP: CountryLanguages 
  49890.      bool getLanguageList(vecString &Languages) 
  49891.  
  49892.      Get a list of all possible languages, in alphabetical order, returned in 
  49893.      vecString &Languages.  LCP: CountryLangList 
  49894.      bool getLanguageListEngNat(mapString &Languages) 
  49895.  
  49896.      Get a map of all possible languages, their native description in 
  49897.      alphabetical order by english description, returned in in vecString 
  49898.      &Languages.  LCP: CountryLangListEngNat 
  49899.  
  49900.   Delete a country 
  49901.      bool deleteFromDesc() 
  49902.  
  49903.      Delete the country that uses the currently set description.  LCP: 
  49904.      CountryDelete 
  49905.  
  49906.   Set data members 
  49907.      bool setAll(mapString &FieldValues) 
  49908.  
  49909.      Sets all the data members of a topic using the mapString which is passed 
  49910.      to it.  Only the fields present in the mapString are updated, the other 
  49911.      fields are untouched.  LCP: CountryUpdate 
  49912.      bool setDesc(const string &DescSetting) 
  49913.  
  49914.      Set the short description 
  49915.      bool setDescLong(const string &DescLongSetting) 
  49916.  
  49917.      Set the long description 
  49918.      bool setDescNative(const string &DescNativeSetting) 
  49919.  
  49920.      Set the native language description 
  49921.      bool setNetCode(const string &NetCodeSetting) 
  49922.  
  49923.      Set the internet code for this country 
  49924.      bool erase() 
  49925.  
  49926.      Sets all the data members to empty 
  49927.  
  49928.   Get data members 
  49929.      bool getAll(mapString &FieldValues) 
  49930.  
  49931.      Return a mapString of all the data members of this topic. The key is the 
  49932.      variable name.  LCP: CountryAttribs 
  49933.      string getDesc() 
  49934.  
  49935.      Get the short description 
  49936.      string getDescLong() 
  49937.  
  49938.      Get the long description 
  49939.      string getDescNative() 
  49940.  
  49941.      Get the native language description 
  49942.      string getNetCode() 
  49943.  
  49944.      Get the internet code for this country 
  49945.  
  49946.  
  49947. ΓòÉΓòÉΓòÉ <hidden> ΓòùdequeString ΓòÉΓòÉΓòÉ
  49948.  
  49949.  
  49950. lyris_Country Class 
  49951.  
  49952.      class lyris_Country 
  49953.  
  49954.      For determining what countries exist, and what languages are spoken & 
  49955.      preferred in each country 
  49956.  
  49957.      Defined in: COUNTRY.H 
  49958.  
  49959.   Create a new country 
  49960.  
  49961.       bool createNew() 
  49962.  
  49963.      Creates a new country/language table row.  LCP: CountryCreate 
  49964.      bool updateDatabase() 
  49965.  
  49966.      Save the current country with the data members that have changed.  LCP: 
  49967.      CountryUpdate 
  49968.      bool VerifyFields() 
  49969.  
  49970.      Verify that all required fields are filled in. 
  49971.  
  49972.   Retrieve data from the database 
  49973.      bool fetchAllCountries(vecString &AllCountries) 
  49974.  
  49975.      Fetch a list of all countries.  LCP: CountryAll 
  49976.      bool fetchAllCountriesAndDescriptions(mapString &CountriesAndDescriptions) 
  49977.  
  49978.      Fetch a paired list of countries and their native language descriptions, 
  49979.      sorted by english description.  LCP: CountryEngNat 
  49980.      bool fetchAllDescriptionsAndCountries(mapString &DescriptionsAndCountries) 
  49981.  
  49982.      Fetch a paired list of native language country descriptions, and the 
  49983.      english name of the country. 
  49984.      bool retrieveFromNetCode() 
  49985.  
  49986.      Determine the country that uses the currently set NetCode.  Fills all the 
  49987.      other country attributes with values. LCP: CountryAttNetCode 
  49988.      bool retrieveFromDesc() 
  49989.  
  49990.      Determine the country that uses the currently set description.  Fills all 
  49991.      the other country attributes with values.  LCP: CountryAttribs 
  49992.      bool getPrimaryLanguage(string &PrimaryLanguage) 
  49993.  
  49994.      Determine the primary language of the current country.  "Desc" must be 
  49995.      already set.  The result is returned in the string &PrimaryLanguage.  LCP: 
  49996.      CountryPrimLang 
  49997.      bool getAllLanguages(vecString &Languages) 
  49998.  
  49999.      Determine all the languages used by the current country.  "Desc" must be 
  50000.      already set.  The result is returned in priority order (highest priority 
  50001.      first) in vecString &Languages.  LCP: CountryLanguages 
  50002.      bool getLanguageList(vecString &Languages) 
  50003.  
  50004.      Get a list of all possible languages, in alphabetical order, returned in 
  50005.      vecString &Languages.  LCP: CountryLangList 
  50006.      bool getLanguageListEngNat(mapString &Languages) 
  50007.  
  50008.      Get a map of all possible languages, their native description in 
  50009.      alphabetical order by english description, returned in in vecString 
  50010.      &Languages.  LCP: CountryLangListEngNat 
  50011.  
  50012.   Delete a country 
  50013.      bool deleteFromDesc() 
  50014.  
  50015.      Delete the country that uses the currently set description.  LCP: 
  50016.      CountryDelete 
  50017.  
  50018.   Set data members 
  50019.      bool setAll(mapString &FieldValues) 
  50020.  
  50021.      Sets all the data members of a topic using the mapString which is passed 
  50022.      to it.  Only the fields present in the mapString are updated, the other 
  50023.      fields are untouched.  LCP: CountryUpdate 
  50024.      bool setDesc(const string &DescSetting) 
  50025.  
  50026.      Set the short description 
  50027.      bool setDescLong(const string &DescLongSetting) 
  50028.  
  50029.      Set the long description 
  50030.      bool setDescNative(const string &DescNativeSetting) 
  50031.  
  50032.      Set the native language description 
  50033.      bool setNetCode(const string &NetCodeSetting) 
  50034.  
  50035.      Set the internet code for this country 
  50036.      bool erase() 
  50037.  
  50038.      Sets all the data members to empty 
  50039.  
  50040.   Get data members 
  50041.      bool getAll(mapString &FieldValues) 
  50042.  
  50043.      Return a mapString of all the data members of this topic. The key is the 
  50044.      variable name.  LCP: CountryAttribs 
  50045.      string getDesc() 
  50046.  
  50047.      Get the short description 
  50048.      string getDescLong() 
  50049.  
  50050.      Get the long description 
  50051.      string getDescNative() 
  50052.  
  50053.      Get the native language description 
  50054.      string getNetCode() 
  50055.  
  50056.      Get the internet code for this country