/********************************************************************** Audacity - A Digital Audio Editor Copyright 1999-2009 Audacity Team License: GPL v2 - see LICENSE.txt Dan Horgan ******************************************************************//** \file CommandMisc \brief Some typedefs which are used in various Command-related files *//*******************************************************************/ #ifndef __COMMANDMISC__ #define __COMMANDMISC__ #include #include #include #include "Validators.h" class CommandType; // Map from parameter name to the value of the parameter typedef std::map ParamValueMap; // Map from parameter name to a suitable Validator typedef std::map ValidatorMap; // Map from command name to type typedef std::map CommandMap; #endif /* End of include guard: __COMMANDMISC__ */