00001 // OSB library ************************************************ -*- C++ -*- 00009 /* 00010 AUTHOR(S): Vipul Gupta (vg) 00011 00012 RCS information 00013 $Name: OSB_060808 $ 00014 $Revision: 1.22 $ 00015 00016 License 00017 OSB rating and billing library for communication networks 00018 Copyright (C) 2004, 2005, 2006 OSB systems 00019 00020 This file may be distributed and/or modify under the terms of the 00021 GNU General Public License (GPL) as published by the Free Software 00022 Foundation which is provided in the file LICENSE.GPL included in the 00023 packaging of this file. 00024 00025 The file is distributed in the hope that it will be useful, but WITHOUT 00026 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00027 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00028 for more details. 00029 00030 Holders of a OSB Commercial License may use this file under the terms 00031 and conditions of this commercial license. 00032 */ 00033 #ifndef _ROUNDRULEGW_H_ 00034 #define _ROUNDRULEGW_H_ 00035 00036 // ************************************************************************ 00037 // Included header files 00038 // + standard includes 00039 00040 // + local headers 00041 00042 // ************************************************************************ 00043 // class declarations 00044 namespace OSB_LIB { 00045 class RoundRuleList; 00046 } 00047 00048 namespace OSB_DB { 00049 class Session; 00050 } 00051 00052 // ************************************************************************ 00053 // namespace extensions 00054 namespace OSB_DB { 00055 00059 class RoundRuleGw { 00061 RoundRuleGw(const RoundRuleGw& rhs); 00063 RoundRuleGw& operator=(const RoundRuleGw& rhs); 00064 public: 00066 RoundRuleGw() {} 00067 00080 long fetch( 00081 const Session& session, 00082 OSB_LIB::RoundRuleList& roundRuleList 00083 ); 00084 }; // class RoundRuleGw 00085 } // namespace OSB_DB 00086 #endif // #ifndef _ROUNDRULEGW_H_ 00087 00088