Changeset 35


Ignore:
Timestamp:
07/07/04 18:40:49 (20 years ago)
Author:
mmarquar
Message:

Added scope std:: to string.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDWriter.cc

    r28 r35  
    5151
    5252SDWriter::SDWriter(
    53         const string &format = "SDFITS")
     53        const std::string &format = "SDFITS")
    5454{
    5555  cFormat = format;
     
    7676
    7777Int SDWriter::setFormat(
    78         const string &format = "SDFITS")
     78        const std::string &format = "SDFITS")
    7979{
    8080  if (format != cFormat) {
     
    9999Int SDWriter::write(
    100100        const CountedPtr<SDMemTable> table,
    101         const string &filename)
     101        const std::string &filename)
    102102{
    103103  // Extract the header from the table.
  • trunk/src/SDWriter.h

    r28 r35  
    5454
    5555private:
    56   string     cFormat;
     56  std::string     cFormat;
    5757  PKSwriter *cWriter;
    5858};
Note: See TracChangeset for help on using the changeset viewer.