summaryrefslogtreecommitdiffstats
path: root/courgette/disassembler.h
blob: bef1a905cb3f5b22c25c6cb7ae0bb4f921206e98 (plain)
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
30
31
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COURGETTE_DISASSEMBLER_H_
#define COURGETTE_DISASSEMBLER_H_

#include "base/basictypes.h"

namespace courgette {

class AssemblyProgram;
class PEInfo;

class Disassembler {
 public:
  virtual ~Disassembler() {}

  // Disassembles the item passed to the factory method into the output
  // parameter 'program'.
  virtual bool Disassemble(AssemblyProgram* program) = 0;

 protected:
  Disassembler() {}

 private:
  DISALLOW_COPY_AND_ASSIGN(Disassembler);
};

}  // namespace courgette
#endif  // COURGETTE_DISASSEMBLER_H_