mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2024-10-31 16:05:31 +00:00
19 lines
285 B
C
19 lines
285 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>
|
||
|
class Segment;
|
||
|
|
||
|
typedef std::set<Segment*,ptr_less<Segment>> setpSeg;
|
||
|
|
||
|
#endif /* SETPSEG_H */
|
||
|
|