📄 cppdemo.mco
字号:
// simple schema to demonstrate C++ interface
declare database cppdemo;
struct Dimensions
{
float width, length, height;
};
class Part
{
string type;
string name;
float price;
unsigned<4> code;
Dimensions dim;
hash< code > ByCode [ 10000 ];
tree< type, name > ByType; // ordered by type, name
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -