https://github.com/sueda/eol-cloth
Revision 28fad2e07ec31f0dfd2c681878904e707f6715d5 authored by Shinjiro Sueda on 11 September 2018, 15:17:28 UTC, committed by GitHub on 11 September 2018, 15:17:28 UTC
1 parent 3c3ef84
Tip revision: 28fad2e07ec31f0dfd2c681878904e707f6715d5 authored by Shinjiro Sueda on 11 September 2018, 15:17:28 UTC
Create LICENSE
Create LICENSE
Tip revision: 28fad2e
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 ...