mirror of
https://github.com/cmosher01/Epple-II.git
synced 2025-01-23 08:30:01 +00:00
37 lines
608 B
C++
37 lines
608 B
C++
/*
|
|
* File: TransNetwork.h
|
|
* Author: cmosher
|
|
*
|
|
* Created on December 11, 2013, 10:44 AM
|
|
*/
|
|
|
|
#ifndef TRANSNETWORK_H
|
|
#define TRANSNETWORK_H
|
|
|
|
#include <istream>
|
|
#include <set>
|
|
#include <memory>
|
|
|
|
class TransCache;
|
|
class SegmentCache;
|
|
class Common;
|
|
class Trans;
|
|
|
|
class TransNetwork final {
|
|
public:
|
|
|
|
TransNetwork(std::istream& readFromHere, SegmentCache& segs, TransCache& transes);
|
|
|
|
private:
|
|
|
|
TransNetwork(const TransNetwork&) = delete;
|
|
TransNetwork& operator=(const TransNetwork&) = delete;
|
|
|
|
SegmentCache& segs;
|
|
TransCache& transes;
|
|
|
|
friend Common;
|
|
};
|
|
|
|
#endif /* TRANSNETWORK_H */
|