17 lines
212 B
C++
17 lines
212 B
C++
|
//
|
||
|
// Created by versustune on 14.06.20.
|
||
|
//
|
||
|
|
||
|
#include "VeNoState.h"
|
||
|
|
||
|
VeNoState::VeNoState (std::string pid)
|
||
|
{
|
||
|
m_pid = pid;
|
||
|
}
|
||
|
|
||
|
VeNoState::~VeNoState ()
|
||
|
{
|
||
|
delete configScreen;
|
||
|
configScreen = nullptr;
|
||
|
}
|