1 //
2 // This file is part of the SDTS++ toolkit, written by the U.S.
3 // Geological Survey.  It is experimental software, written to support
4 // USGS research and cartographic data production.
5 //
6 // SDTS++ is public domain software.  It may be freely copied,
7 // distributed, and modified.  The USGS welcomes user feedback, but makes
8 // no committment to any level of support for this code.  See the SDTS
9 // web site at http://mcmcweb.er.usgs.gov/sdts for more information,
10 // including points of contact.
11 //
12 // $Id: sl_String.cpp,v 1.2 2002/11/24 22:07:44 mcoletti Exp $
13 
14 #include "sl_String.h"
15 
16 
17 static const char* ident_ =
18   "$Id: sl_String.cpp,v 1.2 2002/11/24 22:07:44 mcoletti Exp $";
19 
20 
21 using namespace std;
22 
23 
24 //
25 // sl_String
26 //
27 
28 static std::string const string_object_code = "LS";
29 
30 
31 std::string const &
objectCode() const32 sl_String::objectCode() const
33 {
34    return string_object_code;
35 } // sl_::objectCode()
36