00001 00002 #ifndef IIR_BREAK_ELEMENT_HH 00003 #define IIR_BREAK_ELEMENT_HH 00004 00005 // Copyright (c) 2003 The University of Cincinnati. 00006 // All rights reserved. 00007 00008 // UC MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE 00009 // SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 00010 // IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, 00011 // OR NON-INFRINGEMENT. UC SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY 00012 // LICENSEE AS A RESULT OF USING, RESULT OF USING, MODIFYING OR 00013 // DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. 00014 00015 // By using or copying this Software, Licensee agrees to abide by the 00016 // intellectual property laws, and all other applicable laws of the U.S., 00017 // and the terms of this license. 00018 00019 // You may modify, distribute, and use the software contained in this 00020 // package under the terms of the "GNU LIBRARY GENERAL PUBLIC LICENSE" 00021 // version 2, June 1991. A copy of this license agreement can be found in 00022 // the file "LGPL", distributed with this archive. 00023 00024 // Author: Harish Venkataramani venkath@ececs.uc.edu 00025 00026 //--------------------------------------------------------------------------- 00027 00028 #include "IIR_Tuple.hh" 00029 #include "IRBasicDataTypes.hh" 00030 00031 class IIR_Name; 00032 00036 class IIR_BreakElement : public virtual IIR_Tuple { 00037 00038 public: 00042 virtual void set_quantity_name(IIR_Name* quantity_name) = 0; 00043 virtual IIR_Name* get_quantity_name() = 0; 00044 00048 virtual void set_expression(IIR* value) = 0; 00049 virtual IIR* get_expression() = 0; 00050 00053 virtual void set_selector_quantity_name(IIR_Name* quantity_name) = 0; 00054 virtual IIR_Name* get_selector_quantity_name() = 0; 00055 00056 protected: 00057 }; 00058 #endif
1.4.6