Revert inadvertent commit.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21200 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2007-10-25 13:38:42 +00:00
parent 68a49e1960
commit 8f2a8c7267
2 changed files with 0 additions and 51 deletions

View File

@ -48,27 +48,6 @@ using std::ostream;
using support::ExceptionMessage;
using support::WarningException;
ICPInfo::ICPInfo(std::string const & s, bool b)
: paramName(s), optional(b)
{}
void ICPList::addParam(std::string const & s, bool b) {
plist_.push_back(ICPInfo(s, b));
}
bool ICPList::hasParam(std::string const & s) {
PList::const_iterator it = begin();
PList::const_iterator et = end();
for (; it != et; ++it) {
if (it->paramName == s)
return true;
}
return false;
}
InsetCommandParams::InsetCommandParams(InsetCode code)
: insetCode_(code), preview_(false)
{

View File

@ -38,36 +38,6 @@ struct CommandInfo {
bool const * optional;
};
///
struct ICPInfo {
///
ICPInfo(std::string const & s, bool b);
/// Parameter name.
std::string paramName;
/// Whether it is optional.
bool optional;
};
///
typedef std::list<ICPInfo> PList;
///
class ICPList {
public:
///
PList::const_iterator begin() { return plist_.begin(); }
///
PList::const_iterator end() { return plist_.end(); }
///
void clear() { plist_.clear(); }
///
void addParam(std::string const & s, bool b = false);
///
bool hasParam(std::string const & s);
private:
///
PList plist_;
};
class InsetCommandParams {
public: