rt.mco
来自「eXtremeDB数据库在Linux平台下的使用源码。内含多个示例程序」· MCO 代码 · 共 26 行
MCO
26 行
/************************************************************ * * * Copyright (c) 2001-2007 McObject LLC. All Right Reserved.* * * ************************************************************//* * Routing Table demonstration */#define uint4 unsigned<4>#define uint2 unsigned<2>#define uint1 unsigned<1>declare database rtdb;class Route{ vector<boolean> dest; uint4 gateway; uint4 interf; uint2 metric; unique patricia <dest> byDest;};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?