Skip to content
Snippets Groups Projects
Commit 68c0bd4a authored by Guillaume Borrut's avatar Guillaume Borrut
Browse files

ENH: Modify Getters/Setters for NDBI functor

parent f4b07b4d
No related branches found
No related tags found
No related merge requests found
......@@ -63,22 +63,22 @@ public:
virtual ~TM4AndTM5IndexBase() {};
/// Set TM4 Index
void SetTM4Index(unsigned int channel)
void SetIndex1(unsigned int channel)
{
m_TM4Index = channel;
}
/// Get TM4 Index
unsigned int GetTM4Index()
unsigned int GetIndex1()
{
return m_TM4Index;
}
/// Set TM5 Index
void SetTM5Index(unsigned int channel)
void SetIndex2(unsigned int channel)
{
m_TM5Index = channel;
}
/// Get TM5 Index
unsigned int GetTM5Index()
unsigned int GetIndex2()
{
return m_TM5Index;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment