Sequencer.hh (6859:5de565c4b7bd) Sequencer.hh (6862:3d308cbd1657)
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
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
66std::ostream& operator<<(std::ostream& out, const SequencerRequest& obj);
67
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 ---
68class Sequencer : public Consumer, public RubyPort {
69public:
70 // Constructors
71 Sequencer(const string & name);
72 void init(const vector<string> & argv);
73
74 // Destructor
75 ~Sequencer();

--- 80 unchanged lines hidden ---