10 lines
123 B
C++
10 lines
123 B
C++
#pragma once
|
|
#include "Variable.h"
|
|
namespace MbD {
|
|
class IndependentVariable :
|
|
public Variable
|
|
{
|
|
};
|
|
}
|
|
|