class ArgList
{
	private:
		vector<string*> _args;

	public:
//		ArgList();

		/* append a string list of args to the arg list */
		void append(const char* str);
		const string& get(int arg) const;
		int size() const;

		/* get back a string containing all the args */
		string getArgString();
		~ArgList();
};


syntax highlighted by Code2HTML, v. 0.9.1