- Timestamp:
- 02/17/06 16:09:04 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDAttr.h
r717 r833 37 37 38 38 #include "SDLog.h" 39 #include "S DDefs.h"39 #include "STDefs.h" 40 40 41 41 template<class T> class casa::Vector; -
trunk/src/SDFITSImageWriter.cc
r717 r833 58 58 #include <tables/Tables/ArrayColumn.h> 59 59 60 #include "S DDefs.h"60 #include "STDefs.h" 61 61 #include "SDContainer.h" 62 62 #include "SDMemTable.h" -
trunk/src/SDPol.cc
r683 r833 31 31 32 32 #include "SDPol.h" 33 #include "S DDefs.h"33 #include "STDefs.h" 34 34 35 35 #include <casa/Arrays/Array.h> -
trunk/src/SDPol2.cc
r469 r833 31 31 32 32 #include "SDPol.h" 33 #include "S DDefs.h"33 #include "STDefs.h" 34 34 35 35 #include <casa/Arrays/Array.h> -
trunk/src/SDWriterWrapper.h
r444 r833 1 1 //#--------------------------------------------------------------------------- 2 //# S DWriterWrapper.h: Wrapper classes to use CountedPtr2 //# STWriterWrapper.h: Wrapper classes to use CountedPtr 3 3 //#--------------------------------------------------------------------------- 4 4 //# Copyright (C) 2004 … … 35 35 #include <string> 36 36 37 #include "S DWriter.h"37 #include "STWriter.h" 38 38 39 39 namespace asap { … … 41 41 class SDMemTableWrapper; 42 42 43 class S DWriterWrapper : public SDWriter {43 class STWriterWrapper : public STWriter { 44 44 public: 45 S DWriterWrapper(const string &format = "SDFITS") : SDWriter(format) {;}45 STWriterWrapper(const string &format = "SDFITS") : STWriter(format) {;} 46 46 47 47 casa::Int write(const SDMemTableWrapper &table, const string &filename, bool toStokes) { 48 return S DWriter::write(table.getCP(), filename, toStokes);48 return STWriter::write(table.getCP(), filename, toStokes); 49 49 } 50 50 };
Note:
See TracChangeset
for help on using the changeset viewer.