Mercurial > hg > orthanc-stone
view Applications/Commands/ICommand.h @ 523:aa00a49444c6 am-touch-events
fix
author | amazy |
---|---|
date | Tue, 12 Mar 2019 15:02:05 +0100 |
parents | ce49eae4c887 |
children |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2019 Osimis S.A., Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include <json/json.h> // TODO: must be reworked completely (check trello) namespace OrthancStone { class ICommand // TODO noncopyable { protected: std::string name_; ICommand(const std::string& name) : name_(name) {} public: virtual ~ICommand() {} virtual void Execute() = 0; // virtual void Configure(const Json::Value& arguments) = 0; const std::string& GetName() const { return name_; } }; template <typename TCommand> class BaseCommand : public ICommand { protected: BaseCommand(const std::string& name) : ICommand(name) {} public: static ICommand* Create() { return new TCommand(); } virtual void Configure(const Json::Value& arguments) { } }; class NoopCommand : public BaseCommand<NoopCommand> { public: NoopCommand() : BaseCommand("noop") {} virtual void Execute() {} }; class GenericNoArgCommand : public BaseCommand<GenericNoArgCommand> { public: GenericNoArgCommand(const std::string& name) : BaseCommand(name) {} virtual void Execute() {} // TODO currently not used but this is not nice at all ! }; class GenericOneStringArgCommand : public BaseCommand<GenericOneStringArgCommand> { std::string argument_; public: GenericOneStringArgCommand(const std::string& name, const std::string& argument) : BaseCommand(name) {} const std::string& GetArgument() const {return argument_;} virtual void Execute() {} // TODO currently not used but this is not nice at all ! }; }