Changeset 2822 in Sophya for trunk/SophyaLib/HiStats


Ignore:
Timestamp:
Oct 12, 2005, 3:07:03 PM (20 years ago)
Author:
ansari
Message:

Declaration friend pour gestionnaire FITS FitsHandler<DataTable> dans basedtable.h datatable.h - Reza 12/10/2005

Location:
trunk/SophyaLib/HiStats
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/HiStats/basedtable.h

    r2808 r2822  
    1818
    1919namespace SOPHYA {
     20
     21//  Forward class declaration for Fits handler
     22template <class T>  class FitsHandler;
     23
    2024//! Interface definition for classes handling data in a table.
    2125class BaseDataTable : public AnyDataObj , public NTupleInterface {
     
    160164  //  Pour la gestion de persistance PPF
    161165  friend class ObjFileIO<BaseDataTable> ;
     166  // pour fichiers FITS
     167  friend class FitsHandler<BaseDataTable>;
    162168 
    163169protected:
  • trunk/SophyaLib/HiStats/datatable.h

    r2808 r2822  
    1414
    1515//  Forward class declaration for Fits handler
    16 class FITS_DataTable;
     16template <class T>  class FitsHandler;
    1717
    1818//! An implementation of BaseDataTable with data (columns) stored in memory.
     
    3434  friend class ObjFileIO<BaseDataTable> ;
    3535  // pour fichiers FITS
    36   friend class FITS_DataTable;
    37  
     36  friend class FitsHandler<BaseDataTable>;
     37
    3838  //! Reset the table content and structure
    3939  virtual void Clear();
Note: See TracChangeset for help on using the changeset viewer.