/********************************************************************** 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 OldStyleCommandType; // Map from parameter name to the value of the parameter // to do: use hash typedef std::map ParamValueMap; typedef std::map ParamBoolMap; // Map from parameter name to a suitable Validator // to do: use hash typedef std::map> ValidatorMap; // Map from command name to type // to do: use hash typedef std::map> CommandMap; #endif /* End of include guard: __COMMANDMISC__ */