-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLoopSeqInfo.cpp
53 lines (41 loc) · 865 Bytes
/
LoopSeqInfo.cpp
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// LoopSeqInfo.cpp: implementation of the LoopSeqInfo class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "LoopSeqInfo.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
/**
* LoopSequenceInfo Class
*
* Has no supporing functions yet.
* Most of the work is done in the header file
*
* Functions to manipulate the LoopSequenceInfo
* should be created here when required.
*
*/
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
/**
* LoopSequenceInfo constructor
*
* does nothing
*
*/
LoopSeqInfo::LoopSeqInfo()
{
}
/**
* LoopSequenceInfo destructor
*
* does nothing
*
*/
LoopSeqInfo::~LoopSeqInfo()
{
}