https://github.com/sueda/eol-cloth
Revision a6d03813fc8cd8b58edc6b3cef6b2f732f4d9d36 authored by Nick Weidner on 07 September 2018, 18:25:33 UTC, committed by Nick Weidner on 07 September 2018, 18:25:33 UTC
1 parent 09335f4
Tip revision: a6d03813fc8cd8b58edc6b3cef6b2f732f4d9d36 authored by Nick Weidner on 07 September 2018, 18:25:33 UTC
Point fix
Point fix
Tip revision: a6d0381
Brenderable.h
/*
* @author: Gustavo Lopez 10-21-17
*
* @version: 1.0
*/
#pragma once
#include <string>
#include <fstream>
#include <vector>
#include <memory>
#include "BrenderManager.h"
class Brenderable
{
public:
Brenderable() {};
virtual ~Brenderable() {}
virtual int getBrenderCount() const { return 1; }
virtual std::vector<std::string> getBrenderNames() const { return std::vector<std::string>(1, ""); }
virtual void exportBrender(std::vector< std::shared_ptr< std::ofstream > > outfiles) const = 0;
private:
};
Computing file changes ...