Ignore:
Timestamp:
10/04/16 18:20:50 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/TableTraverse.h

    r2343 r3106  
    4343    // <p>If <src>visit()</src> throws an exception, the iteration stops and
    4444    // <src>finish()</src> will not be called.</p>
    45     virtual casa::Bool visit(casa::Bool isFirst, casa::uInt recordNo,
    46                              casa::uInt nCols,
     45    virtual casacore::Bool visit(casacore::Bool isFirst, casacore::uInt recordNo,
     46                             casacore::uInt nCols,
    4747                             void const *const colValues[]) = 0;
    4848
     
    5555  public:
    5656    virtual ~TypeManager() {}
    57     virtual casa::BaseCompare *getComparator() const = 0;
     57    virtual casacore::BaseCompare *getComparator() const = 0;
    5858    virtual size_t sizeOf() const = 0;
    5959    virtual void *allocArray(size_t size) const = 0;
     
    6262
    6363  // This template is applicable to the type which can be applied to
    64   // <src>casa::ObjCompare&lt;T&gt;</src>.
     64  // <src>casacore::ObjCompare&lt;T&gt;</src>.
    6565  template<class T> class TypeManagerImpl: public TypeManager {
    6666  public:
    6767    TypeManagerImpl(){}
    68     virtual casa::BaseCompare *getComparator() const {
    69       static casa::ObjCompare<T> comparator;
     68    virtual casacore::BaseCompare *getComparator() const {
     69      static casacore::ObjCompare<T> comparator;
    7070      return &comparator;
    7171    }
     
    100100  // for each column. <src>columnNames[0]</src> is a primary sort key and
    101101  // <src>columnNames[1]</src> is a secondary sort key, ...</p>
    102   void traverseTable(const casa::Table &table,
     102  void traverseTable(const casacore::Table &table,
    103103                     const char *const columnNames[],
    104104                     const TypeManager *const typeManagers[],
    105105                     TableVisitor *visitor,
    106                      casa::Bool doSort = casa::True);
     106                     casacore::Bool doSort = casacore::True);
    107107
    108108}
Note: See TracChangeset for help on using the changeset viewer.