19 lines
453 B
C++
19 lines
453 B
C++
|
#include "GPUFontAtlasLayerCombo.h"
|
||
|
|
||
|
namespace ofxVariableLab {
|
||
|
|
||
|
void GPUFontAtlasLayerCombo::setup(const ComboIdentifier & identifier){
|
||
|
}
|
||
|
void GPUFontAtlasLayerCombo::update(){
|
||
|
}
|
||
|
void GPUFontAtlasLayerCombo::careForChild(shared_ptr <Layer> layer){
|
||
|
}
|
||
|
const ComboIdentifier & GPUFontAtlasLayerCombo::getIdentifier() const {
|
||
|
return identifier;
|
||
|
}
|
||
|
const vector <shared_ptr <GPUFontLayer> > & GPUFontAtlasLayerCombo::getLayers(){
|
||
|
return layers;
|
||
|
}
|
||
|
|
||
|
}
|