Path: blob/master/libmeteor/include/ameteor/disassembler/arguments.hpp
2 views
// Meteor - A Nintendo Gameboy Advance emulator1// Copyright (C) 2009-2011 Philippe Daouadi2//3// This program is free software: you can redistribute it and/or modify4// it under the terms of the GNU General Public License as published by5// the Free Software Foundation, either version 3 of the License, or6// (at your option) any later version.7//8// This program is distributed in the hope that it will be useful,9// but WITHOUT ANY WARRANTY; without even the implied warranty of10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// GNU General Public License for more details.12//13// You should have received a copy of the GNU General Public License14// along with this program. If not, see <http://www.gnu.org/licenses/>.1516#ifndef __ARGUMENTS_H__17#define __ARGUMENTS_H__1819#include "argument.hpp"2021#include <vector>2223namespace AMeteor24{25namespace Disassembler26{27class Arguments28{29public :30~Arguments ();3132void Clear ();3334void AddArgument(const Argument& arg)35{36m_args.push_back(arg.Clone());37}3839std::string GetString () const;4041private :42std::vector<Argument*> m_args;43};44}45}4647#endif484950