|
Teuchos - Trilinos Tools Package Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Teuchos: Common Tools Package 00005 // Copyright (2004) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // This library is free software; you can redistribute it and/or modify 00011 // it under the terms of the GNU Lesser General Public License as 00012 // published by the Free Software Foundation; either version 2.1 of the 00013 // License, or (at your option) any later version. 00014 // 00015 // This library is distributed in the hope that it will be useful, but 00016 // WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 // Lesser General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU Lesser General Public 00021 // License along with this library; if not, write to the Free Software 00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00023 // USA 00024 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00025 // 00026 // *********************************************************************** 00027 // @HEADER 00028 00029 #ifndef TEUCHOS_STANDARD_COMPOSITION_MACROS_HPP 00030 #define TEUCHOS_STANDARD_COMPOSITION_MACROS_HPP 00031 00036 #include "Teuchos_RCP.hpp" 00037 00064 #define STANDARD_COMPOSITION_MEMBERS( TYPE, NAME ) \ 00065 void set_ ## NAME (const Teuchos::RCP< TYPE >& NAME ## _in ) \ 00066 { NAME ## _ = NAME ## _in ; } \ 00067 Teuchos::RCP< TYPE > get_ ## NAME() const \ 00068 { return NAME ## _; } \ 00069 TYPE& NAME() \ 00070 { return *NAME ## _; } \ 00071 const TYPE& NAME() const \ 00072 { return *NAME ## _; } \ 00073 private: \ 00074 Teuchos::RCP< TYPE > NAME ## _; \ 00075 public: \ 00076 typedef Teuchos::RCP< TYPE > NAME ## _ptr_t 00077 00104 #define STANDARD_NONCONST_COMPOSITION_MEMBERS( TYPE, NAME ) \ 00105 void set_ ## NAME ( const Teuchos::RCP< TYPE >& NAME ## _in ) \ 00106 { NAME ## _ = NAME ## _in ; } \ 00107 Teuchos::RCP< TYPE > get_ ## NAME() const \ 00108 { return NAME ## _; } \ 00109 TYPE& NAME() const \ 00110 { return *NAME ## _; } \ 00111 private: \ 00112 Teuchos::RCP< TYPE > NAME ## _; \ 00113 public: \ 00114 typedef Teuchos::RCP< TYPE > NAME ## _ptr_t 00115 00143 #define STANDARD_CONST_COMPOSITION_MEMBERS( TYPE, NAME ) \ 00144 public: \ 00145 void set_ ## NAME ( const Teuchos::RCP< const TYPE >& NAME ## _in ) \ 00146 { NAME ## _ = NAME ## _in ; } \ 00147 Teuchos::RCP< const TYPE > get_ ## NAME() const \ 00148 { return NAME ## _; } \ 00149 const TYPE& NAME() const \ 00150 { return *NAME ## _; } \ 00151 private: \ 00152 Teuchos::RCP< const TYPE > NAME ## _; \ 00153 public: \ 00154 typedef Teuchos::RCP< const TYPE > NAME ## _ptr_t 00155 00156 #endif // TEUCHOS_STANDARD_COMPOSITION_MACROS_HPP
1.7.4