Commit b3f8f6bd authored by Powers, Sarah's avatar Powers, Sarah
Browse files

Initial stub of noiseAwareTransformation.hpp

parent fa6b920d
Loading
Loading
Loading
Loading
Loading
+27 −1
Original line number Diff line number Diff line
#header file
 No newline at end of file
#ifndef QCOR_IR_TRANSFORM_NOISE_HPP_
#define QCOR_IR_TRANSFORM_NOISE_HPP_

#include "IRTransformation.hpp"

//#include <thread>

using namespace xacc;

/*
namespace xacc {
    namespace quantum {
        class NoiseAwareTransform;
    }
}
*/

namespace qcor {
namespace transformations {
    class NoiseAwareTransform : public IRTransformation {
        public:
          std::shared_ptr<IR> transform(std::shared_ptr<IR> ir) transform;
    }
}
}

#endif
 No newline at end of file