00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00016
00017
00018
00020 template<typename elem_type, typename derived>
00021 struct BaseCube
00022 {
00023 arma_inline const derived& get_ref() const;
00024
00025 inline void print(const std::string extra_text = "") const;
00026 inline void print(std::ostream& user_stream, const std::string extra_text = "") const;
00027
00028 inline void raw_print(const std::string extra_text = "") const;
00029 inline void raw_print(std::ostream& user_stream, const std::string extra_text = "") const;
00030 };
00031
00032
00033