mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
14 lines
210 B
C++
14 lines
210 B
C++
/*
|
|
graph spacer Implementation
|
|
Copyright (c)2013 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#include "gspacer.h"
|
|
|
|
gSpacer::gSpacer(int space)
|
|
:Layer(NoChannel)
|
|
{
|
|
m_space=space;
|
|
}
|