Net/net.cpp

26 lines
323 B
C++
Raw Normal View History

2019-01-12 18:25:36 +00:00
//
// net.cpp
// Net
//
// Created by 胡一兵 on 2019/1/13.
// Copyright © 2019年 Bakantu. All rights reserved.
//
2019-01-13 12:48:58 +00:00
#include "net.h"
#include "cpart.h"
2019-01-12 18:25:36 +00:00
int main(void){
2019-01-13 12:48:58 +00:00
CPart ncp("process");
ncp.setArgsType({0,0}, {0});
ncp.addArgsInt(2);
ncp.addArgsInt(5);
ncp.Run();
2019-01-12 18:25:36 +00:00
return 0;
}