File: Tool.h

package info (click to toggle)
pbcopper 2.3.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,996 kB
  • sloc: ansic: 164,688; cpp: 53,414; sh: 184; makefile: 22
file content (29 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef PBCOPPER_CLI_v2_TOOL_H
#define PBCOPPER_CLI_v2_TOOL_H

#include <pbcopper/PbcopperConfig.h>

#include <pbcopper/cli2/Interface.h>
#include <pbcopper/cli2/ResultsHandler.h>

namespace PacBio {
namespace CLI_v2 {

enum class ToolVisibility
{
    VISIBLE,
    HIDDEN
};

struct Tool
{
    std::string name;
    Interface interface;
    ResultsHandler runner;
    ToolVisibility visibility = ToolVisibility::VISIBLE;
};

}  // namespace CLI_v2
}  // namespace PacBio

#endif  // PBCOPPER_CLI_v2_TOOL_H