mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
13 lines
184 B
C++
13 lines
184 B
C++
|
#include <latan/IOObject.hpp>
|
||
|
#include <latan/includes.hpp>
|
||
|
|
||
|
using namespace Latan;
|
||
|
|
||
|
IOObject::~IOObject(void)
|
||
|
{}
|
||
|
|
||
|
IOTypes::Type IOObject::IOType(void)
|
||
|
{
|
||
|
return IOTypes::NoType;
|
||
|
}
|