3 #include "ManagedObject.h"
6 namespace NetOceanDirect {
7 public enum class BusType {
22 int get() {
return id; }
23 void set(
int val) {
id = val; }
26 property String ^Name {
27 String^ get() {
return name; }
28 void set(String ^n) { name = n; }
32 bool get() {
return in_use; }
33 void set(
bool val) { in_use = val; }
36 property BusType Btype {
37 BusType get() {
return type; }
38 void set(BusType bt) { type = bt; }
51 property int SpectrumLen {
52 int get() {
return spectrumLength; }
53 void set(
int val) { spectrumLength = val; }
57 int id, port, spectrumLength;