00001 /* 00002 This file is part of hugin. 00003 00004 hugin is free software: you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published by 00006 the Free Software Foundation, either version 2 of the License, or 00007 (at your option) any later version. 00008 00009 hugin is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU General Public License for more details. 00013 00014 You should have received a copy of the GNU General Public License 00015 along with hugin. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00017 00025 #ifndef VARIABLEREF_H_ 00026 #define VARIABLEREF_H_ 00027 00028 #include "MakefileItem.h" 00029 00030 namespace makefile 00031 { 00032 class Variable; 00033 00039 class MAKEIMPEX VariableRef : public MakefileItem 00040 { 00041 Variable& variable; 00042 VariableRef(const VariableRef&); // no implicite copies! 00043 public: 00044 VariableRef(Variable& var) 00045 : variable(var) 00046 { 00047 // TODO Auto-generated constructor stub 00048 00049 } 00050 virtual ~VariableRef() 00051 { 00052 // TODO Auto-generated destructor stub 00053 } 00054 00055 virtual string toString(); 00056 00057 }; 00058 00059 } 00060 00061 #endif /* VARIABLEREF_H_ */
1.3.9.1