blob: 7558d60cbb59e6ce87c1fcd276da92e0ec5c27a3 [file] [log] [blame]
#include <iostream>
#include <cmMod.hpp>
using namespace std;
int main(void) {
cmModClass obj("Hello");
cout << obj.getStr() << endl;
cout << obj.getOther() << endl;
return 0;
}