Search found 1 match

by robin.algayres
Thu Aug 18, 2016 3:05 pm
Forum: Issues, bugs, etc.
Topic: Problem with Object having a CCLib attribute
Replies: 0
Views: 5053

Problem with Object having a CCLib attribute

Hello,

I am trying to make a simple program with CCLib which does not seem to work. Here is my very simple code :

#include "SimpleCloud.h"
class test
{
public:

CCLib::SimpleCloud simpleCloudObject;
test() {};
test(const CCLib::SimpleCloud & sco) : simpleCloudObject(sco) {};
~test ...