Revert D8932114: [sonar] Add state tracking plumbing
Differential Revision: D8932114 Original commit changeset: fb03babfe92b fbshipit-source-id: a6a372a4115d69b5419a8c9924b333e7c163497b
This commit is contained in:
committed by
Facebook Github Bot
parent
e82fd6371d
commit
410e6d14c8
@@ -1,25 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the LICENSE
|
||||
* file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
class SonarState;
|
||||
|
||||
class SonarStep {
|
||||
public:
|
||||
void complete();
|
||||
SonarStep(std::string name, SonarState* state);
|
||||
~SonarStep();
|
||||
|
||||
private:
|
||||
std::string name;
|
||||
bool isCompleted = false;
|
||||
SonarState* state;
|
||||
};
|
||||
Reference in New Issue
Block a user