Files
seer/tests/hellodaitem/hellodaitem.cpp
T

19 lines
258 B
C++
Raw Normal View History

2021-09-05 11:58:58 -05:00
#include "DaItem.h"
#include <iostream>
void function1 (DaItem& item) {
std::cout << item.name() << std::endl;
}
int main (int argc, char** argv) {
DaItem item("TEST", 100, DT::IntegerType, 1000, 2.0);
function1(item);
return argc;
}