00001
00010 #ifndef BS_TRANS_MULTIPLIERS_HPP_
00011 #define BS_TRANS_MULTIPLIERS_HPP_
00012
00013 namespace blue_sky
00014 {
00015
00016 template <typename strategy_t>
00017 struct trans_multipliers_calc
00018 {
00019
00020
00021
00022
00023
00024
00025
00026 trans_multipliers_calc ()
00027 {
00028 }
00029
00030 void apply ()
00031 {
00032 BS_ASSERT (false && "NOT IMPL YET");
00033 }
00034 void unapply ()
00035 {
00036 BS_ASSERT (false && "NOT IMPL YET");
00037 }
00038
00039 private:
00040
00041
00042
00043 };
00044
00045 }
00046
00047 #endif // #ifndef BS_RANS_MULTIPLIERS_HPP_
00048