-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathACEplus_Edge.H
More file actions
27 lines (23 loc) · 794 Bytes
/
ACEplus_Edge.H
File metadata and controls
27 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/****************************************************************
ACEplus_Edge.H
Copyright (C)2017 William H. Majoros (martiandna@gmail.com).
This is OPEN SOURCE SOFTWARE governed by the Gnu General Public
License (GPL) version 3, as described at www.opensource.org.
****************************************************************/
#ifndef INCL_ACEplus_Edge_H
#define INCL_ACEplus_Edge_H
#include <iostream>
#include "LightEdge.H"
#include "StructureChange.H"
using namespace std;
using namespace BOOM;
class ACEplus_Edge : public LightEdge {
public:
ACEplus_Edge(const String &substrate,ContentType,LightVertex *,LightVertex *,
int begin,int end,Strand,int ID);
StructureChange &getChange();
virtual void printOn(ostream &);
protected:
StructureChange change;
};
#endif