Source Code (Use browser search to find items of interest.)

Class Index

kpresenter'Command (./koffice/kpresenter/command.h:29)

class Command
{
public:
    Command( QString _name );
    virtual ~Command()
    {; }

    virtual void execute() = 0;
    virtual void unexecute() = 0;

    virtual QString getName()
    { return name; }

protected:
    Command() : name()
    {; }

    QString name;

};

kpresenter'Command::Command() (./koffice/kpresenter/command.cc:27)

Command::Command( QString _name )
    : name( _name )
{
}