Skip to content
Snippets Groups Projects
Commit 9a791d12 authored by Irene Y Zhang's avatar Irene Y Zhang
Browse files

fixing a bug in IR code, still need to add tests

parent 1c800461
No related branches found
No related tags found
No related merge requests found
......@@ -21,17 +21,17 @@
namespace replication {
namespace ir {
class IRAppReplica : public AppReplica
class IRAppReplica
{
public:
IRAppReplica() { };
virtual ~IRAppReplica() { };
// Invoke inconsistent operation, no return value
virtual void ExecInconsistentUpcall(const string &str1);
virtual void ExecInconsistentUpcall(const string &str1) { };
// Invoke consensus operation
virtual void ExecConsensusUpcall(const string &str1, string &str2);
virtual void ExecConsensusUpcall(const string &str1, string &str2) { };
// Invoke unreplicated operation
virtual void UnloggedUpcall(const string &str1, string &str2);
virtual void UnloggedUpcall(const string &str1, string &str2) { };
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment