Deleted Added
sdiff udiff text old ( 6859:5de565c4b7bd ) new ( 6862:3d308cbd1657 )
full compact
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 49 unchanged lines hidden (view full) ---

58 int64_t id;
59 Time issue_time;
60
61 SequencerRequest(const RubyRequest & _ruby_request, int64_t _id, Time _issue_time)
62 : ruby_request(_ruby_request), id(_id), issue_time(_issue_time)
63 {}
64};
65
66class Sequencer : public Consumer, public RubyPort {
67public:
68 // Constructors
69 Sequencer(const string & name);
70 void init(const vector<string> & argv);
71
72 // Destructor
73 ~Sequencer();

--- 80 unchanged lines hidden ---