本文整理汇总了C++中Driver::IesimaInterfazDe方法的典型用法代码示例。如果您正苦于以下问题:C++ Driver::IesimaInterfazDe方法的具体用法?C++ Driver::IesimaInterfazDe怎么用?C++ Driver::IesimaInterfazDe使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Driver
的用法示例。
在下文中一共展示了Driver::IesimaInterfazDe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: test_dcnet_ejemplo
void test_dcnet_ejemplo() {
Conj<Interfaz> ConjuntoIc1;
Conj<Interfaz> ConjuntoIc2;
Conj<Interfaz> ConjuntoIc3;
ConjuntoIc1.Agregar(1);
ConjuntoIc1.Agregar(2);
ConjuntoIc1.Agregar(3);
ConjuntoIc2.Agregar(1);
ConjuntoIc2.Agregar(2);
ConjuntoIc2.Agregar(3);
ConjuntoIc3.Agregar(1);
ConjuntoIc3.Agregar(2);
Computadora c1 = "dc.uba.ar";
Computadora c2 = "uba.ar";
Computadora c3 = "dm.uba.ar";
Driver dcnet;
dcnet.AgregarComputadora(c1, ConjuntoIc1);
dcnet.AgregarComputadora(c2, ConjuntoIc2);
dcnet.AgregarComputadora(c3, ConjuntoIc3);
// ejemplo - Indexado en 0
Interfaz i1 = dcnet.IesimaInterfazDe(c1, 0);
Interfaz i2 = dcnet.IesimaInterfazDe(c2, 2);
dcnet.Conectar(c1, i1, c2, i2);
dcnet.CrearPaquete(c1, c2, 3);
dcnet.AvanzarSegundo();
ASSERT_EQ(dcnet.laQueMasEnvio(), c1);
}