DNA Calib 1.1
Project brief
Command.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "dnacalib/Defs.h"
7
8namespace dnac {
9
11
16 public:
17 virtual ~Command();
18 virtual void run(DNACalibDNAReader* output) = 0;
19
20};
21
22} // namespace dnac
Command is an abstract class whose implementations are expected to modify the DNA provided in the run...
Definition: Command.h:15
virtual void run(DNACalibDNAReader *output)=0
virtual ~Command()
Definition: DNACalibDNAReader.h:12
#define DNACAPI
Definition: dnacalib/Defs.h:26
Definition: Command.h:8