mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2025-04-18 18:37:14 +00:00
22 lines
347 B
C++
22 lines
347 B
C++
/*
|
|
* File: setpSeg.h
|
|
* Author: Christopher
|
|
*
|
|
* Created on December 15, 2013, 12:16 AM
|
|
*/
|
|
|
|
#ifndef SETPSEG_H
|
|
#define SETPSEG_H
|
|
|
|
#include "ptr_less.h"
|
|
#include <set>
|
|
#include <utility>
|
|
|
|
class Segment;
|
|
|
|
typedef std::set<Segment*,ptr_less<Segment>> SegmentSet;
|
|
typedef std::set<std::pair<Segment*, bool>> PinSettings;
|
|
|
|
#endif /* SETPSEG_H */
|
|
|