15#include "cal3d/global.h"
16#include "cal3d/refcounted.h"
17#include "cal3d/refptr.h"
33 int getCoreSubmeshCount();
34 std::vector<CalCoreSubmesh *>& getVectorCoreSubmesh();
36 void scale(
float factor);
37 void setFilename(
const std::string& filename);
38 const std::string& getFilename(
void);
39 void setName(
const std::string& name);
40 const std::string& getName(
void);
43 std::vector<CalCoreSubmesh *> m_vectorCoreSubmesh;
45 std::string m_filename;
Definition: coremesh.h:24
Definition: coresubmesh.h:23
Derive from RefCounted to make your class have reference-counted lifetime semantics.
Definition: refcounted.h:29
A container-safe smart pointer used for refcounted classes.
Definition: refptr.h:11