TVecLogic.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef TABLES_TVECLOGIC_H
00029 #define TABLES_TVECLOGIC_H
00030
00031
00032 #include <casacore/casa/aips.h>
00033
00034 namespace casacore {
00035
00036
00037 template<class T> class TabVecRep;
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 template<class T>
00064 Bool tabVecReptvLE (const TabVecRep<T>& left, const TabVecRep<T>& right);
00065 template<class T>
00066 Bool tabVecReptvLT (const TabVecRep<T>& left, const TabVecRep<T>& right);
00067 template<class T>
00068 Bool tabVecReptvGE (const TabVecRep<T>& left, const TabVecRep<T>& right);
00069 template<class T>
00070 Bool tabVecReptvGT (const TabVecRep<T>& left, const TabVecRep<T>& right);
00071 template<class T>
00072 Bool tabVecReptvEQ (const TabVecRep<T>& left, const TabVecRep<T>& right);
00073 template<class T>
00074 Bool tabVecReptvNE (const TabVecRep<T>& left, const TabVecRep<T>& right);
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098 template<class T>
00099 Bool tabVecRepvalrLE (const TabVecRep<T>& left, const T& right);
00100 template<class T>
00101 Bool tabVecRepvallLE (const T& left, const TabVecRep<T>& right);
00102 template<class T>
00103 Bool tabVecRepvalrLT (const TabVecRep<T>& left, const T& right);
00104 template<class T>
00105 Bool tabVecRepvallLT (const T& left, const TabVecRep<T>& right);
00106 template<class T>
00107 Bool tabVecRepvalrGE (const TabVecRep<T>& left, const T& right);
00108 template<class T>
00109 Bool tabVecRepvallGE (const T& left, const TabVecRep<T>& right);
00110 template<class T>
00111 Bool tabVecRepvalrGT (const TabVecRep<T>& left, const T& right);
00112 template<class T>
00113 Bool tabVecRepvallGT (const T& left, const TabVecRep<T>& right);
00114 template<class T>
00115 Bool tabVecRepvalrEQ (const TabVecRep<T>& left, const T& right);
00116 template<class T>
00117 Bool tabVecRepvallEQ (const T& left, const TabVecRep<T>& right);
00118 template<class T>
00119 Bool tabVecRepvalrNE (const TabVecRep<T>& left, const T& right);
00120 template<class T>
00121 Bool tabVecRepvallNE (const T& left, const TabVecRep<T>& right);
00122
00123
00124
00125
00126 }
00127
00128 #ifndef CASACORE_NO_AUTO_TEMPLATES
00129 #include <casacore/tables/Tables/TVecLogic.tcc>
00130 #endif //# CASACORE_NO_AUTO_TEMPLATES
00131 #endif