#ifndef CWORKSPACEMODEL_H_
#define CWORKSPACEMODEL_H_
#include <stdlib.h>
#include <string>
#include <vector>
using namespace std;
#include "CAnimationModel.h"
class CWorkSpaceModel
{
public:
CWorkSpaceModel();
~CWorkSpaceModel();
private:
string name;
vector<CAnimationModel> v;
};
#endif /* CWORKSPACEMODEL_H_ */