1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/General/IAtlasExporter.h
2005-03-22 13:54:37 +00:00

14 lines
271 B
C++

#ifndef IATLASEXPORTER_H__
#define IATLASEXPORTER_H__
class AtObj;
class IAtlasExporter // and also importer, but I can't think of a nice concise name
{
public:
virtual void Import(AtObj& in)=0;
virtual AtObj Export()=0;
};
#endif // IATLASEXPORTER_H__